summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-dom/insertCellsZeroColspan.html
blob: ddbfcc83093df47680b785037c0d4bab856ff94b (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" 
"http://www.w3.org/TR/REC-html40/strict.dtd">
<HEAD>

</HEAD>
<BODY>
<table bgcolor=orange border>
<tr>
  <td>c11</td><td>c12</td><td>c13</td><td>c14</td>
</tr>
 <tr>
  <td id="c21">c21</td>
 </tr>
</table>

<script>
document.body.offsetWidth;

c21 = document.getElementById("c21");

td = document.createElement("td");
td.setAttribute("colspan", "0");
td.appendChild(document.createTextNode("X1"));

c21.parentNode.insertBefore(td, c21.nextSibling);
</script>

</BODY></HTML>