Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / events / crashtests / 682637-1.html
blob6ae7336f256306774cb2ec5128f257accaddaee6
1 <!DOCTYPE html>
2 <html>
4 <head>
5 <script>
7 function boom()
9 var frame = document.getElementById("f");
10 var frameWin = frame.contentWindow;
11 frame.remove();
12 frameWin.onmouseover = function(){};
15 </script>
16 </head>
18 <body onload="boom();">
19 <iframe id="f" src="data:text/html,1"></iframe>
20 </body>
22 </html>