mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
23 lines
330 B
HTML
23 lines
330 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var frame = document.getElementById("f");
|
||
|
var frameWin = frame.contentWindow;
|
||
|
frame.parentNode.removeChild(frame);
|
||
|
frameWin.onmouseover = function(){};
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();">
|
||
|
<iframe id="f" src="data:text/html,1"></iframe>
|
||
|
</body>
|
||
|
|
||
|
</html>
|