summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-dom/deleteCellsShrink2.html
blob: 0ef77ae6c22f50d5fe88e1381012891a0bb65f20 (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
<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 c12 c12 c12 c12</td><td>c13</td>
 </tr>
 <tr>
  <td>c21</td><td>c22</td><td>c23</td>
 </tr>
</table>
</BODY></HTML>