summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/509562-1.xhtml
blob: ae38c4f7c8cf836f5e03f07dd7ca01ac78d33376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">

function boom()
{
  var a = document.getElementById("a");
  a.parentNode.removeChild(a);
}

</script>
</head>

<body onload="boom();">
<table style="border-collapse: collapse;">X<td id="a"/><td rowspan="0"/><tbody>Y<tr><td colspan="3"/></tr></tbody></table>
</body>

</html>