summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-dom/deleteCellsShrink1.html
blob: 901be05bb583e6025198e833af5ee6e4c0ed202b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<HEAD>
<SCRIPT src=tableDom.js>
</SCRIPT>
<SCRIPT>

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