﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6329	indent on list is not appropriate	yiminghe		"1.type three sentence
2.outdent above line more than 3 times
3.click ul button to make above <p> to ul,li
4.inside the second li,click indent button

expected:
see attachment expected.png

actual :
see attachment 5.png

my solution:

pass li's attribute to its children,
in list/plugin.js line 122:


{{{
for ( i = 0 ; i < item.contents.length ; i++ )
						currentListItem.append( item.contents[i].clone( true, true ) );
}}}

change to

{{{
for ( i = 0 ; i < item.contents.length ; i++ ){
						var ic=item.contents[i].clone( true, true );
                        if(currentListItem.type == CKEDITOR.NODE_DOCUMENT_FRAGMENT){
                            item.element.copyAttributes(ic);
                        }
                        currentListItem.append(ic);
                    }
}}}

"	Bug	new	Normal		General				
