OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <script src="../../resources/run-after-layout-and-paint.js"></script> |
| 3 <script> |
| 4 if (window.testRunner) |
| 5 testRunner.dumpAsText(); |
| 6 |
| 7 runAfterLayoutAndPaint( |
| 8 function () { |
| 9 theTbody.removeChild(row1); |
| 10 theTbody.style.border = "solid 10px blue"; |
| 11 }, true /* autoNotifyDone */); |
| 12 </script> |
| 13 <table style="border-collapse: collapse"> |
| 14 <tbody id=theTbody> |
| 15 <tr id=row1><td>Some text</td></tr> |
| 16 </tbody> |
| 17 </table> |
| 18 <p>There was a crash when a row was removed and the border of a section was chan
ged without an intervening CellRecalc.</p> |
| 19 <p>No crash == pass</p> |
OLD | NEW |