diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/table-dom/appendRowsExpand1.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/table-dom/appendRowsExpand1.html b/layout/reftests/table-dom/appendRowsExpand1.html new file mode 100644 index 0000000000..ae712596af --- /dev/null +++ b/layout/reftests/table-dom/appendRowsExpand1.html @@ -0,0 +1,31 @@ +<HEAD> +<SCRIPT src=tableDom.js> +</SCRIPT> +<SCRIPT> + +function doIt() { + var tbody = document.getElementsByTagName("TBODY")[0]; + var row = document.createElement("TR", null); + appendCell(row, 1, 1); + appendCell(row, 1, 1); + tbody.appendChild(row); + row = document.createElement("TR", null); + appendCell(row, 1, 1); + appendCell(row, 1, 1); + tbody.appendChild(row); +} +</SCRIPT> +</HEAD> +<BODY onload="doIt()"> +<table bgcolor=orange border> + <tr> + <td>c11</td><td>c12</td> + </tr> +</table> +</BODY></HTML> + + + + + + |