﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5827	[ContentEditable] List creation across read only blocks is broken	Frederico Caldeira Knabben	Garry Yao	" 1. Load the following HTML:

{{{
<p>Para 1</p>
<p contenteditable=""false"">Non Editable</p>
<p>Para 2</p>
}}}

 2. Hit CTRL+A to select all.

 3. Hi the list button.

'''Current results:'''

{{{
<ul>
	<li>
		Para 2</li>
	<li>
		Para 1</li>
</ul>
<p contenteditable=""false"">
	Non Editable</p>
}}}

'''Expected results:'''

{{{
<ul>
	<li>
		Para 1</li>
</ul>
<p contenteditable=""false"">
	Non Editable</p>
<ul>
	<li>
		Para 2</li>
</ul>
}}}


This one is related to the [http://svn.fckeditor.net/CKEditor/branches/features/contenteditable contenteditable feature branch]."	Bug	closed	Normal	CKEditor 3.4	General		fixed	Confirmed Review?	
