Opened 12 years ago

Last modified 12 years ago

#9123 confirmed Bug

outdent RLT list item with subsequent LTR item

Reported by: Garry Yao Owned by:
Priority: Normal Milestone:
Component: Core : Lists Version: 3.3
Keywords: Cc:

Description

  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 button
  • Actual:
    <ol>
    	<li>
    		foo</li>
    	<li dir="rtl">
    		bar
    		<ol>
    			<li>
    				baz</li>
    		</ol>
    	</li>
    </ol>
    
  • Expected:
    <ol>
    	<li>
    		foo</li>
    	<li dir="rtl">
    		bar
    		<ol>
    			<li dir="ltr">
    				baz</li>
    		</ol>
    	</li>
    </ol>
    

Change History (2)

comment:1 Changed 12 years ago by Garry Yao

Not a recent regression.

comment:2 Changed 12 years ago by Jakub Ś

Status: newconfirmed
Version: 3.3

Reproducible in all browsers from CKEditor 3.3.

Additinally IE and FF wrap "bar" in P or DIV (even in BR mode!) - #9151

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