mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08: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
27
layout/reftests/table-dom/appendCol1.html
Normal file
27
layout/reftests/table-dom/appendCol1.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<HEAD>
|
||||
<SCRIPT src=tableDom.js>
|
||||
</SCRIPT>
|
||||
<SCRIPT>
|
||||
|
||||
function doIt() {
|
||||
var table = document.getElementsByTagName("TABLE")[0];
|
||||
var col = document.createElement("COL", null);
|
||||
col.width = 200;
|
||||
table.appendChild(col);
|
||||
}
|
||||
</SCRIPT>
|
||||
</HEAD>
|
||||
<BODY onload="doIt()">
|
||||
<table bgcolor=orange border>
|
||||
<col>
|
||||
<tr>
|
||||
<td>c11</td><td>c12</td>
|
||||
</tr>
|
||||
</table>
|
||||
</BODY></HTML>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue