mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
483 B
HTML
28 lines
483 B
HTML
|
<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>
|