Opened 14 years ago
Last modified 13 years ago
#7645 closed Bug
IE9: Lists not deleted properly using backspace — at Initial Version
Reported by: | James Cunningham | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Lists | Version: | 3.0 |
Keywords: | IE WebKit IBM | Cc: | Damian, Satya Minnekanti, Teresa Monahan |
Description
Steps to reproduce the defect:
- Open the Ajax sample in IE9.
- Paste the following code into WYSIWYG mode
<ol> <li> item 1</li> <li> item 2 <ol> <li> item 3</li> <li> item 4</li> <li> item 5</li> </ol> </li> </ol>
- Switch back to source mode.
- Select all of the list items with the mouse & click backspace.
Expected: Nothing remains in the editor.
Actual: The list is not fully deleted (see screenshot) & the following code still remains in the editor:
<ol> <li> <ol> <li> </li> </ol> </li> </ol>