﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9063	Font styling lost on sub-lists when the indent on the parent list is decreased	Teresa Monahan	Garry Yao	"To reproduce:
- Copy the following into the Source view of the editor:

{{{
<ul style=""font-size: 10px;"">
	<li>Level 1 - size 10
		<ul style=""font-size: 24px;"">
			<li>Level 2 - size 24</li>
		</ul>
	</li>
	<li>Level 1 - size 10</li>
</ul>

}}}
- Switch to wysiwyg mode and select the entire editor contents.
- Select 'Decrease Indent' on the toolbar. The margin of both lists will be decreased and the level 1 list will no longer be a list.
'''Expected result:''' The level 2 list should remain a list and should keep its font styling.

'''Actual result:''' The level 2 list remains as a list but its font styling is lost.

The markup after the 'Decrease Indent' action looks like:


{{{
<p>
	Level 1 - size 10</p>
<ul>
	<li>Level 2 - size 24</li>
</ul>
<p>
	Level 1 - size 10</p>

}}}


It should be:

{{{
<p>
	Level 1 - size 10</p>
<ul style=""font-size: 24px;"">
	<li>Level 2 - size 24</li>
</ul>
<p>
	Level 1 - size 10</p>
}}}
"	Bug	closed	Normal	CKEditor 3.6.4	Core : Lists	3.6.4	fixed	IBM	Damian Satya Minnekanti
