gecko/layout/reftests/bugs/385607-1.html

17 lines
321 B
HTML
Raw Normal View History

2007-12-23 17:47:40 -08:00
<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>