Opened 17 years ago

Closed 17 years ago

#1309 closed Bug (fixed)

New list items are wrongly merged

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

Description

Steps to Reproduce

  1. Load the following HTML:
<p>Line 1</p>
<ul>
    <li>Line 2</li>
</ul>
<p>Line 3</p>
  1. CTRL+A to select all (or mouse selecting all, even partially);
  2. Click the "Bulleted List" button.

Current Results

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

The new list items have been placed at the end of the pre-existing list.

Expected Results

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

Change History (2)

comment:1 Changed 17 years ago by Martin Kou

Owner: set to Martin Kou
Status: newassigned

comment:2 Changed 17 years ago by Martin Kou

Resolution: fixed
Status: assignedclosed

Fixed with [909].

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