Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / dom / insertCols3.html
blob59be8789508b628d689eef318eeda9de553e0bbd
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 var refCol = document.getElementsByTagName("COL")[2];
8 var col = document.createElement("COL", null);
9 col.width = 150;
10 refCol.parentNode.insertBefore(col, refCol);
12 </SCRIPT>
13 </HEAD>
14 <BODY onload="doIt()">
15 The 2 tables should look the same
16 <table bgcolor=orange border>
17 <col width=50>
18 <col width=100>
19 <col width=200>
20 <tr>
21 <td>50</td><td>100</td><td>150</td><td>200</td>
22 </tr>
23 </table>
25 <BR>
26 <table bgcolor=orange border>
27 <col width=50>
28 <col width=100>
29 <col width=150>
30 <col width=200>
31 <tr>
32 <td>50</td><td>100</td><td>150</td><td>200</td>
33 </tr>
34 </table>
35 </BODY></HTML>