Ticket #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
Note: See
TracTickets for help on using
tickets.

Changes are committed with [5605].