summaryrefslogtreecommitdiffstats
path: root/layout/reftests/dom/insertparentandchild.html
blob: b5d5b8236c5caea47ea76ced7c17a1afe6979b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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>