Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / js / xpconnect / crashtests / 761831.html
blob60fdd6d983ab1d368adcf30ec1c89907dbf3c997
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 function removeRoot() {
9 window.removeEventListener("DOMNodeRemoved", removeRoot, true);
10 document.open();
13 window.addEventListener("DOMNodeRemoved", removeRoot, true);
15 var r = document.documentElement;
16 document.removeChild(r);
19 </script>
20 </head>
22 <body onload="boom();"></body>
23 </html>