summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-dom/insertCellsExpandZeroRowspan.html
blob: f30f7013b727d4743e9caa2f9132fe1338fe4214 (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
32
33
34
35
36
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" 
"http://www.w3.org/TR/REC-html40/strict.dtd">

<HEAD>
<SCRIPT src=tableDom.js>
</SCRIPT>
<SCRIPT>

function doIt() {
  insertCellAt(0, 1, 1, 1);
  insertCellAt(0, 1, 1, 1);
  insertCellAt(1, 1, 1, 1);
  insertCellAt(1, 1, 1, 1);
}
</SCRIPT>  
</HEAD>
<BODY onload="doIt()">
<table bgcolor=orange border>
 <tr>
  <td>c11</td><td rowspan ="0">c12</td>
 </tr>
 <tr>
  <td>c21</td>
 </tr>
 <tr>
  <td>c31</td>
 </tr>

</table>
</BODY></HTML>