summaryrefslogtreecommitdiffstats
path: root/layout/reftests/dom/inserttoparentandchild-2.html
blob: cdd0ccdc4a1b3b769f01c4d98a92b68dc208c00d (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
45
46
47
<html class="reftest-wait">
<head>

<script>
function boom()
{
  document.body.offsetHeight;

  var eightdiv = document.getElementById("eight");
  var parent = eightdiv.parentNode;

  for (var i = 6; i <= 7; i++) {
    var newdiv = document.createElement("div");
    newdiv.appendChild(document.createTextNode(i));
    parent.insertBefore(newdiv, eightdiv);
  }

  var fivedeediv = document.getElementById("fivedee");
  parent = fivedeediv.parentNode;

  var newdiv = document.createElement("div");
  newdiv.appendChild(document.createTextNode("5b"));
  parent.insertBefore(newdiv, fivedeediv);

  newdiv = document.createElement("div");
  newdiv.appendChild(document.createTextNode("5c"));
  parent.insertBefore(newdiv, fivedeediv);

  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="five">
  <div>5a</div>
  <div id="fivedee">5d</div>
</div>
<div id="eight">8</div>
<div>9</div>
</body>
</html>