summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/559491.html
blob: 19126e5603854c2b5f83422eae8e4789ae821efb (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
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">

function boom()
{
  for (var i = 0; i < 200; ++i) {
    //dump(i + "\n");
    r1 = document.createElementNS("http://www.w3.org/1999/xhtml", "a");
    r1.setAttributeNS(null, "href", "404");
    r1.style.color = "green";
    r2 = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
    r2.style.color = "red";
    document.removeChild(document.documentElement);
    document.appendChild(r1);
    document.removeChild(document.documentElement);
    document.appendChild(r2);
    document.removeChild(document.documentElement);
    document.appendChild(r1);
    document.documentElement.offsetHeight;
  }
}

</script>
</head>

<body onload="boom();"></body>
</html>