Bug 1890793: Assert CallArgs::newTarget is not gray. r=spidermonkey-reviewers,sfink...
[gecko.git] / dom / smil / crashtests / 588287-2.svg
blob70d8e76391238a7d10d773546b1a29353bccb8c1
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.setCurrentTime(0.2);
17 svg.appendChild(animate);
18 svg.setCurrentTime(0.0); // Trigger backwards seek
19 document.documentElement.removeAttribute("class");
20 }, 400);
23 window.addEventListener("load", function() { setTimeout(boom, 200) }, false);
25 </script>
26 </svg>