blob: 0bead5efc600988981d4df45a60772d296a5339b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test page that blocks beforeunload. Used in tests for bug 1050638 and bug 305085</title>
</head>
<body>
This page will block beforeunload. It should still be user-closable at all times.
<script>
window.onbeforeunload = function() {
return "stop";
};
</script>
</body>
</html>
|