Mypal/layout/tables/crashtests/509562-1.xhtml
2019-03-11 13:26:37 +03:00

19 lines
359 B
HTML

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