Opened 12 years ago

Last modified 11 years ago

#9151 closed Bug

Outdent RLT list item results in item wrapped in Div or P — at Version 4

Reported by: Jakub Ś Owned by:
Priority: Normal Milestone:
Component: Core : Lists Version: 3.6.3
Keywords: Cc:

Description (last modified by Jakub Ś)

I have found this problem while reproducing #9123

  1. Load the following editor content:
          <ol>
          	<li>
          		foo
          		<ol>
          			<li dir="rtl">
          				^bar</li>
          			<li>
          				baz</li>
          		</ol>
          	</li>
          </ol>
    
  2. Press the Outdent (Decrease Indent) button:

Result: Please note that there is P wrapping "bar" element. In DIV and BR mode this is changed to DIV.

<ol>
	<li>
		foo</li>
	<li dir="rtl">
		<p dir="rtl">
			^bar</p>
		<ol>
			<li>
				baz</li>
		</ol>
	</li>
</ol>

Reproducible in IE6-9 and Firefox from CKEditor 3.6.3 rev. [7419].

Change History (4)

comment:1 Changed 12 years ago by Jakub Ś

Status: newconfirmed

comment:2 Changed 12 years ago by Wiktor Walc

Component: GeneralCore : Lists

comment:3 Changed 11 years ago by Jakub Ś

#10564 is also caused by [7419]

comment:4 Changed 11 years ago by Jakub Ś

Description: modified (diff)
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