Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / dom / appendCells1.html
blobcd3a4a67174b92380fc333159b2fa42659bc9041
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 appendCellAt(0, 1, 1);
9 appendCellAt(2, 1, 1);
10 appendCellAt(2, 1, 1);
12 </SCRIPT>
13 </HEAD>
14 <BODY onload="doIt()">
15 The 2 tables should look the same
16 <table bgcolor=orange border>
17 <tr>
18 <td>c11</td><td>c12</td>
19 </tr>
20 </table>
21 <BR>
22 <table bgcolor=orange border>
23 <tr>
24 <td>c11</td><td>c12</td><td>X1</td>
25 </tr>
26 </table>
27 <BR>
28 The 2 tables should look the same
29 <table bgcolor=orange border>
30 <tr>
31 <td>c11</td><td>c12</td>
32 </tr>
33 </table>
34 <BR>
35 <table bgcolor=orange border>
36 <tr>
37 <td>c11</td><td>c12</td><td>X2</td><td>X3</td>
38 </tr>
39 </table>
40 </BODY></HTML>