tenfourfox/layout/reftests/bugs/385607-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

17 lines
321 B
HTML

<html>
<head>
<script>
function m()
{
document.body.offsetHeight;
var div = document.getElementById("div");
var doomed = document.getElementById("doomed");
div.removeChild(doomed);
}
</script>
</head>
<body onload="m();">
<div id="div"><span>x </span><div id="doomed">y</div><span> x</span></div>
</body>
</html>