Opened 14 years ago

Closed 14 years ago

#5827 closed Bug (fixed)

[ContentEditable] List creation across read only blocks is broken

Reported by: Frederico Caldeira Knabben Owned by: Garry Yao
Priority: Normal Milestone: CKEditor 3.4
Component: General Version:
Keywords: Confirmed Review? Cc:

Description

  1. Load the following HTML:
<p>Para 1</p>
<p contenteditable="false">Non Editable</p>
<p>Para 2</p>
  1. Hit CTRL+A to select all.
  1. Hi the list button.

Current results:

<ul>
	<li>
		Para 2</li>
	<li>
		Para 1</li>
</ul>
<p contenteditable="false">
	Non Editable</p>

Expected results:

<ul>
	<li>
		Para 1</li>
</ul>
<p contenteditable="false">
	Non Editable</p>
<ul>
	<li>
		Para 2</li>
</ul>

This one is related to the contenteditable feature branch.

Change History (2)

comment:1 Changed 14 years ago by Garry Yao

Keywords: Confirmed Review? added
Owner: set to Garry Yao
Status: newassigned

Changes are committed with [5596].

comment:2 Changed 14 years ago by Frederico Caldeira Knabben

Resolution: fixed
Status: assignedclosed

WFM now. Code review will be done all in a row on the branch.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy