Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/tables/crashtests/crashtests.list
<head>
<script>
function boom()
{
var table = document.getElementById('table');
var newTR = document.createElement('tr');
var newTD = document.createElement('td');
newTR.appendChild(newTD);
table.appendChild(newTR);
newTD.setAttribute('rowspan', 3);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<table id="table"><tr><td></td><td></td></tr></table>
</body>
</html>