blob: a952084def394ee463290501ad7943168b028349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<head>
<title>Loading...</title>
<script>
window.onbeforeunload = function(e) { while(true); };
</script>
</head>
<body>
<p>Navigate to another page to trigger beforeunload handler.</p>
</body>
</html>
|