Opened 11 years ago
Last modified 11 years ago
#10894 confirmed Bug
IE: Unspecified error thrown when we tro to delete a row in a table containing list
Reported by: | Satya Minnekanti | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 |
Keywords: | IE9 IE10 IBM | Cc: | Teresa Monahan, Irina |
Description
To reproduce the defect:
- Open any CK sample & insert a table with default values.
- Insert a simple Numbered/Bulleted list(one list item) in one of table table cells
- Keep cursor in a different row, open Context menu and select Row - > Delete Row.
Expected Result: Corresponding row gets deleted
Actual Result: Corresponding row is deleted but a Javascript error thrown and the error is "Unspecified error"
Change History (4)
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Keywords: | IE added |
---|---|
Status: | new → confirmed |
Version: | → 3.0 |
@satya with your TC I was able to reproduce the problem in IE10 and IE9.
This issue is very similar to #10308 but the former can only be reproduced in IE10 while this one in both IEs. Anyway results are the same: Unspecified error in CKE 4.x and error 800a025e in CKE 3.x.
To reproduce:
- Insert below code into editor
<table border="1" cellpadding="1" cellspacing="1" style="width:500px"> <tbody> <tr> <td> <ul> <li>test</li> <li>test</li> </ul> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table> <p> </p>
- Click in cell before the list and select Rows->Delete Rows
Result: In CKEditor 4.x message that is thrown is SCRIPT16389: Unspecified Error and in CKE 3.x error 800a025e.
comment:3 Changed 11 years ago by
Keywords: | IE9 IE10 added; IE removed |
---|
#8394 was marked as duplicate.
TC from that ticket:
Create a bulleted list with two items. Press enter twice to get out of the list then create a table using the default table settings. Place cursor in first cell of table, right click, delete row.
<ul> <li> Item 1</li> <li> Item 2</li> </ul> <table border="1" cellpadding="1" cellspacing="1" style="width: 500px;"> <tbody> <tr> <td> <span></span></td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table> <p> </p>
After that we can't get focus back in the editor. we have to close and open editor instance again