diff options
Diffstat (limited to 'layout/reftests/dom/appendsingle.html')
-rw-r--r-- | layout/reftests/dom/appendsingle.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/dom/appendsingle.html b/layout/reftests/dom/appendsingle.html new file mode 100644 index 0000000000..321c60da43 --- /dev/null +++ b/layout/reftests/dom/appendsingle.html @@ -0,0 +1,27 @@ +<html class="reftest-wait"> +<head> + +<script> +function boom() +{ + document.body.offsetHeight; + + var parent = document.getElementById("body"); + + var newdiv = document.createElement("div"); + newdiv.appendChild(document.createTextNode("5")); + parent.appendChild(newdiv); + + document.body.offsetHeight; + document.documentElement.className = ""; +} +</script> + +</head> +<body id="body" onload="boom();"> +<div>1</div> +<div>2</div> +<div>3</div> +<div>4</div> +</body> +</html> |