gecko/layout/tables/crashtests/368166-1.xhtml
jruderman@hmc.edu 8f9c09a87a Add crashtests
2007-12-16 21:41:10 -08:00

22 lines
314 B
HTML

<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>