Mypal/layout/reftests/dom/appendmultiple.html
2019-03-11 13:26:37 +03:00

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>