Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / dom / deleteColGroup2.html
blobccc4160da06e6185eb0eb3d7b14de68243e92a85
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 var table = document.getElementsByTagName("TABLE")[0];
8 var colgroup = document.getElementsByTagName("COLGROUP")[1];
9 table.removeChild(colgroup);
11 </SCRIPT>
12 </HEAD>
13 <BODY onload="doIt()">
14 The 2 tables should look the same
15 <table bgcolor=orange border>
16 <colgroup span=2 width=100></colgroup>
17 <colgroup span=2 width=200></colgroup>
18 <tr>
19 <td>100</td><td>100</td><td>auto</td><td>auto</td>
20 </tr>
21 </table>
22 <BR>
23 <table bgcolor=orange border>
24 <colgroup span=2 width=100></colgroup>
25 <tr>
26 <td>100</td><td>100</td><td>auto</td><td>auto</td>
27 </tr>
28 </table>
29 <BR>
31 </BODY></HTML>