﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9008	List order is reversed when converting list type	Teresa Monahan	Garry Yao	"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
"	Bug	closed	Normal	CKEditor 3.6.4	Core : Lists	3.6.3	fixed	IBM	Damian Satya Minnekanti
