Ticket #9008 (closed Bug: fixed)
List order is reversed when converting list type
| Reported by: | tmonahan | Owned by: | garry.yao |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.6.4 |
| Component: | Core : Lists | Version: | 3.6.3 |
| Keywords: | IBM | Cc: | damo, satya |
Description
To Reproduce:
- Copy the following into the source view. This is just a bulleted list followed by a numbered list.
<ul> <li> item 1</li> <li> item 2</li> <li> item 3</li> <li> item 4</li> </ul> <ol> <li> Numbered list item</li> </ol>
- Switch back to wysiwyg mode and select the entire bulleted list.
- Click on the Number list toolbar icon to convert the list type.
Problem: The order of the list items is reversed. The actual result is:
item 4
item 3
item 2
item 1
Numbered list item
The result should be:
item 1
item 2
item 3
item 4
Numbered list item
This also occurs when converting from numbered lists to bulleted lists. It is a regression in 3.6.3 and seemed to be introduced with rev #7403
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

Reproducible from CKEditor 3.6.3 rev. [7403]