summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-dom/appendCells1.html
blob: c848def8133927c4da1a731e40da4465b75630c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<HEAD>
<SCRIPT src=tableDom.js>
</SCRIPT>
<SCRIPT>

function doIt() {
  appendCellAt(0, 1, 1);

  appendCellAt(1, 1, 1);
  appendCellAt(1, 1, 1);
}
</SCRIPT>  
</HEAD>
<BODY onload="doIt()">
<table bgcolor=orange border>
 <tr>
  <td>c11</td><td>c12</td>
 </tr>
</table>
<table bgcolor=orange border>
 <tr>
  <td>c11</td><td>c12</td>
 </tr>
</table>
</BODY></HTML>