gecko/layout/tables/crashtests/403249-1.html
jruderman@hmc.edu 41cbcd52e7 Add crashtests
2007-12-16 22:37:33 -08: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>