Opened 11 years ago
Closed 11 years ago
#11128 closed Bug (duplicate)
JS error on pressing Delete in a list inside a table
Reported by: | Karen Ananiev | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Lists | Version: | 4.2.2 |
Keywords: | Cc: |
Description
Add the table with the list inside:
<table border="1" cellpadding="1" cellspacing="1" style="width:500px"> <tbody> <tr> <td> <ol> <li>One</li> <li>Two</li> </ol> </td> <td>Test</td> </tr> </tbody> </table>
Move cursor to the end of the second item of the list and press Delete.
Expected: Nothing happens.
Outcome: The next cell is affected - the text of the next cell is appended to the list. JS error is occured: Uncaught TypeError: Cannot call method 'is' of null.
DUP of #10890