Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / dom / appendRowsExpand1.html
blob429da5d71fe4a3c0ef91c28c110d69f2e58b6c1d
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 var tbody = document.getElementsByTagName("TBODY")[0];
8 var row = document.createElement("TR", null);
9 appendCell(row, 1, 1);
10 appendCell(row, 1, 1);
11 tbody.appendChild(row);
12 row = document.createElement("TR", null);
13 appendCell(row, 1, 1);
14 appendCell(row, 1, 1);
15 tbody.appendChild(row);
17 </SCRIPT>
18 </HEAD>
19 <BODY onload="doIt()">
20 The 2 tables should look the same
21 <table bgcolor=orange border>
22 <tr>
23 <td>c11</td><td>c12</td>
24 </tr>
25 </table>
26 <BR>
27 <table bgcolor=orange border>
28 <tr>
29 <td>c11</td><td>c12</td>
30 </tr>
31 <tr>
32 <td>X1</td><td>X2</td>
33 </tr>
34 <tr>
35 <td>X3</td><td>X4</td>
36 </tr>
37 </table>
38 <BR>
39 </BODY></HTML>