Opened 16 years ago
Last modified 16 years ago
#5825 closed Bug
[ContentEditable] Read only blocks should not be "undeletable" — at Initial Version
| Reported by: | Frederico Caldeira Knabben | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.4 |
| Component: | General | Version: | |
| Keywords: | Confirmed Review? | Cc: |
Description
In some situations, the protection for read only blocks is being over exaggerated. For example
- Load the following HTML:
<p>Para 1</p> <p contenteditable="false">Non Editable</p> <p>Para 2</p>
- Hit CTRL+A to select all.
- Click the "Insert Horizontal Line" button.
Current Results:
<hr /> <p contenteditable="false"> Non Editable</p> <hr />
Expected Results:
<hr />
