summaryrefslogtreecommitdiffstats
path: root/dom/xul/crashtests/360078-1.xhtml
blob: a29087014d7b65c5642ee69fba8454e2ba530958 (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
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>

<style>
<![CDATA[
#baz { -moz-binding: url(360078-1xbl.xml#foo); }
]]>
</style>

<script>
<![CDATA[

function stuff()
{
  var baz = document.getElementById("baz");
  var count = 0;
  
  setTimeout(step, 30);
  
  function step()
  {
    ++count;
    if (count < 15) {
      baz.cloneNode(true);
      setTimeout(step, 30);
    }
    else {
      document.documentElement.removeAttribute("class");
    }
  }
  
}

]]>
</script>
</head>
<body onload="stuff()">

<hbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="baz"></hbox>

</body>
</html>