Bug 1890793: Assert CallArgs::newTarget is not gray. r=spidermonkey-reviewers,sfink...
[gecko.git] / dom / smil / crashtests / 588287-1.svg
blobcc35cf6b46be229b2927f2406646547209764f25
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
3 <script>
5 function boom()
7 var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate");
8 animate.setAttributeNS(null, "begin", "0.5s");
9 document.documentElement.appendChild(animate);
11 setTimeout(function() {
12 var g = document.createElement("g");
13 var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
14 g.appendChild(svg);
15 document.documentElement.appendChild(g);
16 svg.appendChild(animate);
17 document.documentElement.removeAttribute("class");
18 }, 400);
21 window.addEventListener("load", function() { setTimeout(boom, 200) }, false);
23 </script>
24 </svg>