Bug 1878930 - s/RawBuffer/Span/: UniformData. r=gfx-reviewers,lsalzman
[gecko.git] / dom / html / crashtests / 464197-1.html
blob785686023edfeff0f1607275f12671cf8010cff1
1 <html class="reftest-wait">
2 <head>
3 <script type="text/javascript">
5 var i = 0;
7 function boom()
9 var s = document.createElement("span");
10 s.innerHTML = "<audio src='javascript:5'><\/audio>";
11 s.innerHTML = "";
13 if (++i < 10)
14 setTimeout(boom, 0);
15 else
16 document.documentElement.removeAttribute("class");
19 </script>
20 </head>
21 <body onload="boom();">
22 </body>
23 </html>