Opened 14 years ago
Last modified 13 years ago
#8249 closed Bug
[FF]: Problems with deleting last list item — at Initial Version
Reported by: | Jakub Ś | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.6.3 |
Component: | Core : Lists | Version: | 3.0 |
Keywords: | IBM | Cc: | satya_minnekanti@… |
Description
I have found this issue when reproducing 8248
Scenario 1
- Paste the following code:
<ol> <li> FirstListItem </li> <li> SecondListItem <ol> <li> ThirdListItem </li> <li> FourthListItem </li> <li> FifthListItem </li> </ol> </li> <li> SixthListItem </li> </ol>
- Place the cursor before "sixth item" SixthListItem and press backspace
Result: You wont be able to delete "3".
NOTE: Webkit and Opera concatenates fith item with sixth item - FifthListItemSixthListItem. IE puts sixth item in new paragraph. Not sure which behavior is correct.
Scenario 2
- The same as above
- Put the cursor behind fifth item FifthListItem and start pressing delete.
Result: When all text in sixth item gets deleted, number is deleted at the end.