Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / dom / appendColGroup1.html
blob7d06acbf70f95df8ed3b61006e153b5a9548a4ea
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 var table = document.getElementsByTagName("TABLE")[0];
8 var cg = document.createElement("COLGROUP", null);
9 cg.width=200
10 var col = document.createElement("COL", null);
11 cg.appendChild(col);
12 col = document.createElement("COL", null);
13 cg.appendChild(col);
14 table.appendChild(cg);
16 </SCRIPT>
17 </HEAD>
18 <BODY onload="doIt()">
19 The 2 tables should look the same
20 <table bgcolor=orange border>
21 <colgroup>
22 <col width=100>
23 </colgroup>
24 <tr>
25 <td>col-100</td><td>cg-200</td><td>cg-200</td>
26 </tr>
27 </table>
28 <BR>
29 <table bgcolor=orange border>
30 <colgroup>
31 <col width=100>
32 </colgroup>
33 <colgroup width=200>
34 <col>
35 <col>
36 </colgroup>
37 <tr>
38 <td>col-100</td><td>cg-200</td><td>cg-200</td>
39 </tr>
40 </table>
41 <BR>
42 </BODY></HTML>