mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
529 B
HTML
29 lines
529 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.body.offsetHeight;
|
|
|
|
var lastdiv = document.getElementById("last");
|
|
var parent = lastdiv.parentNode;
|
|
|
|
for (var i = 2; i <= 4; i++) {
|
|
var newdiv = document.createElement("div");
|
|
newdiv.appendChild(document.createTextNode(i));
|
|
parent.insertBefore(newdiv, lastdiv);
|
|
}
|
|
|
|
document.body.offsetHeight;
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="boom();">
|
|
<div>1</div>
|
|
<div id="last">5</div>
|
|
</body>
|
|
</html>
|