diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/dom/insertparentandchild.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/dom/insertparentandchild.html')
-rw-r--r-- | layout/reftests/dom/insertparentandchild.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/layout/reftests/dom/insertparentandchild.html b/layout/reftests/dom/insertparentandchild.html new file mode 100644 index 0000000000..b5d5b8236c --- /dev/null +++ b/layout/reftests/dom/insertparentandchild.html @@ -0,0 +1,44 @@ +<html class="reftest-wait"> +<head> + +<script> +function boom() +{ + document.body.offsetHeight; + + var sixdiv = document.getElementById("six"); + var parent = sixdiv.parentNode; + + var newdiv = document.createElement("div"); + var childdiv = document.createElement("div"); + childdiv.appendChild(document.createTextNode("5c")); + newdiv.appendChild(childdiv); + childdiv = document.createElement("div"); + childdiv.appendChild(document.createTextNode("5d")); + newdiv.appendChild(childdiv); + parent.insertBefore(newdiv, sixdiv); + + childdiv = document.createElement("div"); + childdiv.appendChild(document.createTextNode("5b")); + newdiv.insertBefore(childdiv, newdiv.firstChild); + childdiv = document.createElement("div"); + childdiv.appendChild(document.createTextNode("5a")); + newdiv.insertBefore(childdiv, newdiv.firstChild); + + document.body.offsetHeight; + document.documentElement.className = ""; +} +</script> + +</head> +<body onload="boom();"> +<div>1</div> +<div>2</div> +<div>3</div> +<div>4</div> +<div id="six">6</div> +<div>7</div> +<div>8</div> +<div>9</div> +</body> +</html> |