﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6103	Read-only: Bug feature for inline elements	Frederico Caldeira Knabben	Frederico Caldeira Knabben	"Currently, the style system is made in a way that it will '''never''' touch read-only elements.

The above is good for block elements, but when we talk about inline elements, this is not true.

Here we have a simple TC:

 1. Load the following:

{{{
<p>
    My name is <span contenteditable=""false"">%NAME%</span>,
 I&#39;m from <span contenteditable=""false"">%CITY%</span>.</p>
}}}

 2. CTRL+A to select all.
 3. Click the Bold button.

'''Current Results:'''

{{{
<p>
	<strong>My name is </strong><span contenteditable=""false"">%NAME%</span><strong>,
 I&#39;m from </strong><span contenteditable=""false"">%CITY%</span><strong>.</strong></p>
}}}


'''Expected Results:'''

{{{
<p>
	<strong>My name is <span contenteditable=""false"">%NAME%</span>,
 I&#39;m from <span contenteditable=""false"">%CITY%</span>.</strong></p>
}}}

So, the basic ideas is that, if a read-only inline element is '''fully included in the selection''', then it get's included in the style range.

Is this assumption correct? Are there cases where this is not desired?"	Bug	closed	Normal	CKEditor 3.5	Core : Styles	3.4 Beta	fixed		Lynne Kues Damian
