Opened 17 years ago

Closed 17 years ago

#1292 closed Bug (fixed)

Wrong transformation when removing list

Reported by: Frederico Caldeira Knabben Owned by:
Priority: Normal Milestone: FCKeditor 2.5 Beta
Component: Core : Lists Version: SVN (FCKeditor) - Retired
Keywords: Cc:

Description

Steps to Reproduce

  1. Load the following HTML at the source view:
<ul>
    <li>Line 1</li>
    <li>
    <h1>Line 2</h1>
    </li>
    <li>Line 3</li>
</ul>
  1. Switch to WYSIWYG;
  2. At "Line 2", remove the bullet (clicking on the toolbar button);
  3. Switch to Source.

Current Result

<ul>
    <li>Line 1</li>
</ul>
<p>
<h1>Line 2</h1>
</p>
<ul>
    <li>Line 3</li>
</ul>

Expected Result

<ul>
    <li>Line 1</li>
</ul>
<h1>Line 2</h1>
<ul>
    <li>Line 3</li>
</ul>

Change History (2)

comment:1 Changed 17 years ago by Frederico Caldeira Knabben

Component: GeneralCore : Lists

comment:2 Changed 17 years ago by Martin Kou

Resolution: fixed
Status: newclosed

Fixed with [892].

Click here for more info about our SVN system.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy