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