RetroZilla/layout/html/tests/table/dom/deleteColGroup1.html

38 lines
662 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<HEAD>
<SCRIPT src=tableDom.js>
</SCRIPT>
<SCRIPT>
function doIt() {
var table = document.getElementsByTagName("TABLE")[0];
var colgroup = document.getElementsByTagName("COLGROUP")[0];
table.removeChild(colgroup);
}
</SCRIPT>
</HEAD>
<BODY onload="doIt()">
The 2 tables should look the same
<table bgcolor=orange border>
<colgroup span=2 width=100></colgroup>
<colgroup span=2 width=200></colgroup>
<tr>
<td>200</td><td>200</td><td>auto</td><td>auto</td>
</tr>
</table>
<BR>
<table bgcolor=orange border>
<colgroup span=2 width=200></colgroup>
<tr>
<td>200</td><td>200</td><td>auto</td><td>auto</td>
</tr>
</table>
<BR>
</BODY></HTML>