blob: f00b168b70c9e17074536d64b467b1e83add25bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!doctype html>
<html>
<head>
<script type="text/javascript">
function noop() {}
function crash() {
let div = document.querySelector("div");
let ifr = document.querySelector("iframe");
// We need a reference to the iframe's window from *before* it gets detached.
let win = ifr.contentWindow;
div.appendChild(ifr);
win.addEventListener("beforeunload", noop);
win.removeEventListener("beforeunload", noop);
}
</script>
</head>
<body onload="crash()">
<div></div>
<iframe></iframe>
</body>
</html>
|