﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5836	[ContentEditable] Wrong inline styles result when selection start with readonly element	Garry Yao	Garry Yao	" 1. Load the following HTML and apply the following selection, without putting cursor into the editor:

{{{
<p>Para [1</p>
<p contenteditable=""false"">Non] Editable</p>
<p>Para 2</p>
}}}

 2. Apply 'Bold' command.
'''Current results:'''
{{{
<p>
	Para <strong>1</strong></p>
<p contenteditable=""false"">
	<span>Non Editable</span></p>
<p>
	<strong>Para 2</strong></p>
}}}

'''Expected results:'''
{{{

<p>
	Para <strong>1</strong></p>
<p contenteditable=""false"">
	<span>Non Editable</span></p>
<p>
	Para 2</p>
}}}
Reproduced on the [http://svn.fckeditor.net/CKEditor/branches/features/contenteditable contenteditable feature branch]."	Bug	closed	Normal	CKEditor 3.4	Core : Styles		fixed	Confirmed	
