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 Initial Version

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

Description

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 more 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 (0)

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