Opened 14 years ago
Closed 14 years ago
#5836 closed Bug (fixed)
[ContentEditable] Wrong inline styles result when selection start with readonly element
Reported by: | Garry Yao | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.4 |
Component: | Core : Styles | Version: | |
Keywords: | Confirmed | Cc: |
Description
- 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>
- 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 contenteditable feature branch.
Change History (2)
comment:1 Changed 14 years ago by
Keywords: | Review? added |
---|---|
Owner: | set to Garry Yao |
Status: | new → assigned |
comment:2 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | review → closed |
Changes are committed with [5605].