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
- Load the following HTML:
<p>Line 1</p> <ul> <li>Line 2</li> </ul> <p>Line 3</p>
- CTRL+A to select all (or mouse selecting all, even partially);
- 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
Owner: | set to Martin Kou |
---|---|
Status: | new → assigned |
comment:2 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fixed with [909].
Click here for more info about our SVN system.