OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../../resources/js-test.js"></script> | 4 <script src="../../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <script> | 7 <script> |
8 description("This test should trigger exceptions on HTMLTableElement, an
d verify that the messages are reasonably helpful."); | 8 description("This test should trigger exceptions on HTMLTableElement, an
d verify that the messages are reasonably helpful."); |
9 | 9 |
10 var t = document.createElement('table'); | 10 var t = document.createElement('table'); |
11 | 11 |
12 // TODO(foolip): Setting caption/tHead/tFoot to null should not throw | 12 // TODO(foolip): Setting caption/tHead to null should not throw |
13 // an exception, it should just remove the old caption/thead/tfoot. | 13 // an exception, it should just remove the old caption/thead. |
14 shouldThrow("t.caption = null"); | 14 shouldThrow("t.caption = null"); |
15 shouldThrow("t.caption = document.body"); | 15 shouldThrow("t.caption = document.body"); |
16 | 16 |
17 shouldThrow("t.tHead = null"); | 17 shouldThrow("t.tHead = null"); |
18 shouldThrow("t.tHead = document.body"); | 18 shouldThrow("t.tHead = document.body"); |
19 | 19 |
20 shouldThrow("t.tFoot = null"); | 20 shouldBe("t.createTFoot()", "t.tFoot"); |
| 21 shouldBeNonNull("t.tFoot"); |
| 22 shouldNotThrow("t.tFoot = null"); |
| 23 shouldBeNull("t.tFoot"); |
21 shouldThrow("t.tFoot = document.body"); | 24 shouldThrow("t.tFoot = document.body"); |
22 | 25 |
23 shouldThrow("t.insertRow(-2)"); | 26 shouldThrow("t.insertRow(-2)"); |
24 shouldThrow("t.insertRow(1)"); | 27 shouldThrow("t.insertRow(1)"); |
25 | 28 |
26 t.insertRow(); | 29 t.insertRow(); |
27 | 30 |
28 shouldThrow("t.deleteRow(-2)"); | 31 shouldThrow("t.deleteRow(-2)"); |
29 shouldThrow("t.deleteRow(2)"); | 32 shouldThrow("t.deleteRow(2)"); |
30 shouldThrow("t.deleteRow()"); | 33 shouldThrow("t.deleteRow()"); |
31 </script> | 34 </script> |
32 </body> | 35 </body> |
33 </html> | 36 </html> |
OLD | NEW |