diff options
Diffstat (limited to 'layout/reftests/table-dom/appendCol2.html')
-rw-r--r-- | layout/reftests/table-dom/appendCol2.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/table-dom/appendCol2.html b/layout/reftests/table-dom/appendCol2.html new file mode 100644 index 0000000000..cae53697ca --- /dev/null +++ b/layout/reftests/table-dom/appendCol2.html @@ -0,0 +1,29 @@ +<HEAD> +<SCRIPT src=tableDom.js> +</SCRIPT> +<SCRIPT> + +function doIt() { + var cg = document.getElementsByTagName("COLGROUP")[0]; + var col = document.createElement("COL", null); + col.width = 200; + cg.appendChild(col); +} +</SCRIPT> +</HEAD> +<BODY onload="doIt()"> +<table bgcolor=orange border> + <colgroup> + <col> + </colgroup> + <tr> + <td>c11</td><td>c12</td> + </tr> +</table> +</BODY></HTML> + + + + + + |