gecko/layout/reftests/bugs/385569-1a.html
2007-12-23 17:38:11 -08:00

17 lines
279 B
HTML

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