summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/339246-1.html
blob: ddbf1ce854b530cb59a36f562d7969d00364c2d6 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>

<head>
<script>

function boom()
{
  var doomed = document.getElementById("doomed"); 
  doomed.remove();
}
  
</script>
</head>

<body onload="boom();">

<table>
  <tr style="visibility: collapse;">
    <td>td</td>
  </tr>
  <tr>
    <td id="doomed">td</td>
    <td rowspan="0" colspan="0">td</td>
  </tr>
  <tr>
    <td>td</td>
  </tr>
</table>

</body>
</html>