﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8087	RTL: Indenting list adds extra dir attributes to list items.	Wiktor Walc	Garry Yao	"Caused by [6928].

 1. Start with
{{{
<ul dir=""rtl"">
	<li>
		one</li>
	<li>
		two</li>
	<li>
		three</li>
	<li>
		four</li>
</ul>
}}}
 2. Select two list items in the middle (""two"" and ""three"").
 3. Press ""Increase Indent""
 4. Result:
{{{
<ul dir=""rtl"">
	<li>
		one
		<ul>
			<li dir=""rtl"">
				two</li>
			<li dir=""rtl"">
				three</li>
		</ul>
	</li>
	<li>
		four</li>
</ul>
}}}

Previously the result was:

{{{
<ul dir=""rtl"">
	<li>
		one
		<ul>
			<li>
				two</li>
			<li>
				three</li>
		</ul>
	</li>
	<li>
		four</li>
</ul>
}}}"	Bug	closed	Normal	CKEditor 3.6.2	Core : Lists	3.6.1	fixed		satya_minnekanti@…
