Bug 1899500 - Implement explicit resource management in Baseline compiler. r=arai
[gecko.git] / gfx / tests / crashtests / 394246-2.html
blobe5fe8c1754dccf7565b0b2a671fb033920b20659
1 <html class="reftest-wait">
2 <head>
3 <script>
4 function boom()
6 var div = document.getElementById("div");
7 div.innerHTML = div.innerHTML.slice(1);
8 setTimeout(c, 30);
11 function c()
13 div.innerHTML = div.innerHTML.slice(1);
14 document.documentElement.removeAttribute("class");
16 </script>
17 </head>
18 <body onload="boom();">
20 <div id="div">t
21 &#769;</div>
23 </body></html>