mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
33
layout/reftests/table-dom/insertColGroups2.html
Normal file
33
layout/reftests/table-dom/insertColGroups2.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<HEAD>
|
||||
<SCRIPT src=tableDom.js>
|
||||
</SCRIPT>
|
||||
<SCRIPT>
|
||||
|
||||
function doIt() {
|
||||
var table = document.getElementsByTagName("TABLE")[0];
|
||||
var refCg = document.getElementsByTagName("COLGROUP")[1];
|
||||
var cg = document.createElement("COLGROUP", null);
|
||||
var col = document.createElement("COL", null);
|
||||
col.width = 100;
|
||||
cg.appendChild(col);
|
||||
col = document.createElement("COL", null);
|
||||
col.width = 150;
|
||||
cg.appendChild(col);
|
||||
table.insertBefore(cg, refCg);
|
||||
}
|
||||
</SCRIPT>
|
||||
</HEAD>
|
||||
<BODY onload="doIt()">
|
||||
<table bgcolor=orange border>
|
||||
<colgroup>
|
||||
<col width=50>
|
||||
</colgroup>
|
||||
<colgroup>
|
||||
<col width=200>
|
||||
</colgroup>
|
||||
<tr>
|
||||
<td>50</td><td>100</td><td>150</td><td>200</td>
|
||||
</tr>
|
||||
</table>
|
||||
</BODY></HTML>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue