summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/368166-1.xhtml
blob: 7739b20d2c647fbab118baac03159094a8d2b57a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<script>

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

</script>
</head>

<body onload="boom()">

<table><tbody><tr><td id="doomed" rowspan="3"></td></tr></tbody><div/></table>

</body>

</html>