summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-dom/insertCols5.html
blob: c06f272b21e0cc2e08ecff0a498488e464a0cf8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<HEAD>
<SCRIPT src=tableDom.js>
</SCRIPT>
<SCRIPT>

function doIt() {
  var cg = document.getElementsByTagName("COLGROUP")[0];
  var refCol = document.getElementsByTagName("COL")[1];
  var col = document.createElement("COL", null);
  col.width = 200;
  cg.insertBefore(col, refCol);
}
</SCRIPT>  
</HEAD>
<BODY onload="doIt()">
<table bgcolor=orange border>
 <colgroup>
  <col width=100>
  <col width=300>
 </colgroup>
 <tr>
  <td>100</td><td>200</td><td>300</td>
 </tr>
</table>
</BODY></HTML>