Opened 13 years ago

Closed 13 years ago

#7330 closed New Feature (fixed)

New list item should not copy the value attribute from previous list item

Reported by: Wiktor Walc Owned by: Sa'ar Zac Elias
Priority: Normal Milestone: CKEditor 3.5.3
Component: Core : Lists Version:
Keywords: Cc:

Description

Right now there is no way to set the value attribute, but after closing #7131 we will have this problem.

Steps to reproduce

  1. Start with
    <ol>
    	<li value="7">
    		Foo</li>
    </ol>
    
  2. Press enter.
  3. Result:
    <ol>
    	<li value="7">
    		Foo</li>
    	<li value="7">
    		&nbsp;</li>
    </ol>
    
  4. Expected result:
    <ol>
    	<li value="7">
    		Foo</li>
    	<li>
    		&nbsp;</li>
    </ol>
    

Attachments (1)

7330.patch (534 bytes) - added by Sa'ar Zac Elias 13 years ago.

Download all attachments as: .zip

Change History (6)

comment:1 Changed 13 years ago by Wiktor Walc

Status: newconfirmed
Type: BugNew Feature

comment:2 Changed 13 years ago by Wiktor Walc

Milestone: CKEditor 3.5.3

Changed 13 years ago by Sa'ar Zac Elias

Attachment: 7330.patch added

comment:3 Changed 13 years ago by Sa'ar Zac Elias

Owner: set to Sa'ar Zac Elias
Status: confirmedreview

comment:4 Changed 13 years ago by Frederico Caldeira Knabben

Status: reviewreview_passed

comment:5 Changed 13 years ago by Sa'ar Zac Elias

Resolution: fixed
Status: review_passedclosed

Fixed with [6552].

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