Blob Blame History Raw
<html class="reftest-wait">
<head>

<script>
function boom()
{
  document.body.offsetHeight;

  var parent = document.getElementById("body");

  for (var i = 3; i <= 5; i++) {
    var newdiv = document.createElement("div");
    newdiv.appendChild(document.createTextNode(i));
    parent.appendChild(newdiv);
  }

  document.body.offsetHeight;
  document.documentElement.className = "";
}
</script>

</head>
<body id="body" onload="boom();">
<div>1</div>
<div>2</div>
</body>
</html>