Bug 1877642 - Disable browser_fullscreen-tab-close-race.js on apple_silicon !debug...
[gecko.git] / js / xpconnect / crashtests / 851418.html
blobef2a12bf976ade206f1de2a4a9d875a4166ab1be
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <meta charset="UTF-8">
5 <script>
7 function boom()
9 var frameDoc = document.getElementById("f").contentDocument;
10 var frameRoot = frameDoc.documentElement;
11 frameDoc.write("");
12 frameRoot.setAttribute("onload", "");
13 frameRoot.onload;
14 document.documentElement.removeAttribute("class");
17 </script>
18 </head>
20 <body onload="boom();">
21 <iframe id="f" srcdoc="1"></iframe>
22 </body>
23 </html>