tenfourfox/layout/tables/crashtests/403249-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
307 B
HTML

<html>
<head>
<script>
function boom()
{
var col = document.createElement("col");
col.setAttribute('span', 2);
document.body.appendChild(col);
col.removeAttribute('span');
document.body.offsetHeight;
document.body.removeChild(col);
}
</script>
</head>
<body onload="boom();"></body>
</html>