layout/reftests/table-dom/appendRowsExpand1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <HEAD>
     2 <SCRIPT src=tableDom.js>
     3 </SCRIPT>
     4 <SCRIPT>
     6 function doIt() {
     7   var tbody = document.getElementsByTagName("TBODY")[0];
     8   var row = document.createElement("TR", null);
     9   appendCell(row, 1, 1);
    10   appendCell(row, 1, 1);
    11   tbody.appendChild(row);
    12   row = document.createElement("TR", null);
    13   appendCell(row, 1, 1);
    14   appendCell(row, 1, 1);
    15   tbody.appendChild(row);
    16 }
    17 </SCRIPT>  
    18 </HEAD>
    19 <BODY onload="doIt()">
    20 <table bgcolor=orange border>
    21  <tr>
    22   <td>c11</td><td>c12</td>
    23  </tr>
    24 </table>
    25 </BODY></HTML>

mercurial