gecko/layout/reftests/bugs/385569-1b.html

17 lines
313 B
HTML
Raw Normal View History

<html>
<head>
<script>
function m()
{
document.body.offsetHeight;
var parent = document.getElementById("parent");
parent.appendChild(document.createTextNode("i"));
}
</script>
</head>
<body onload="m();">
<div id="div" style="font-size: 180px"><span>f</span><span id="parent"></span></div>
</body>
</html>