﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3248	Indent problem with nested list item	Garry Yao		"=== Reproducing Procedures ===
 1. Open  the ''replace by class'' example page;
 1. Make the following content with the selection;
{{{
<ol>
	<li>
		level1</li>
	<li>
		^leve1
		<ol>
			<li>
				level2</li>
		</ol>
	</li>
</ol>
}}}
 1. Click on 'Increase Indent' command;
  * Expected Result : 
{{{
<ol>
	<li>
		level1</li>
		<ol>
			<li>
				^leve1</li>
			<li>
				level2</li>
		</ol>
</ol>
}}}
  * Actual Result: 
{{{
<ol>
	<li>
		level1
		<ol>
			<li>
				leve1
				<ol>
					<li>
						level2</li>
				</ol>
			</li>
		</ol>
	</li>
</ol>
}}}"	Bug	closed	Normal		General		invalid		
