Opened 15 years ago

Closed 15 years ago

#3248 closed Bug (invalid)

Indent problem with nested list item

Reported by: Garry Yao Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection;
    <ol>
    	<li>
    		level1</li>
    	<li>
    		^leve1
    		<ol>
    			<li>
    				level2</li>
    		</ol>
    	</li>
    </ol>
    
  3. Click on 'Increase Indent' command;
    • Expected Result :
      <ol>
      	<li>
      		level1</li>
      		<ol>
      			<li>
      				^leve1</li>
      			<li>
      				level2</li>
      		</ol>
      </ol>
      
    • Actual Result:
      <ol>
      	<li>
      		level1
      		<ol>
      			<li>
      				leve1
      				<ol>
      					<li>
      						level2</li>
      				</ol>
      			</li>
      		</ol>
      	</li>
      </ol>
      

Change History (1)

comment:1 Changed 15 years ago by Frederico Caldeira Knabben

Milestone: CKEditor 3.0
Resolution: invalid
Status: newclosed

The current behavior is correct and acceptable.

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