4 <script src=
"../../../resources/js-test.js"></script>
8 description("This test should trigger exceptions on HTMLTableRowElement, and verify that the messages are reasonably helpful.");
10 var tr
= document
.createElement('tr');
12 shouldThrow("tr.insertCell(-2)");
13 shouldThrow("tr.insertCell(1)");
17 shouldThrow("tr.deleteCell(-2)");
18 shouldThrow("tr.deleteCell(2)");
19 shouldThrow("tr.deleteCell()");