Bug 1890793: Assert CallArgs::newTarget is not gray. r=spidermonkey-reviewers,sfink...
[gecko.git] / dom / smil / crashtests / 849593-1.xhtml
blob95b9b2feb8572b492ef34366b4e8f38120851d72
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head class="reftest-wait">
3 <meta charset="utf-8"/>
4 <script>
5 <![CDATA[
7 function boom()
9 var a = document.getElementById('a');
10 var b = document.getElementById('b');
11 var c = document.getElementById('c');
12 var d = document.getElementById('d');
14 b.setCurrentTime(1);
16 a.appendChild(c);
17 document.body.removeChild(a);
18 b.appendChild(c);
19 document.documentElement.offsetHeight;
20 d.appendChild(a);
22 document.documentElement.removeAttribute('class');
25 ]]>
26 </script>
27 </head>
29 <body onload="setTimeout(boom, 0);">
30 <svg xmlns="http://www.w3.org/2000/svg" id="a"/>
31 <svg xmlns="http://www.w3.org/2000/svg" id="b"/>
32 <set xmlns="http://www.w3.org/2000/svg" begin="1s" id="c"><div xmlns="http://www.w3.org/1999/xhtml" id="d"></div></set>
33 </body>
34 </html>