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

17 lines
279 B
HTML
Raw Normal View History

<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>