summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/quit-inside-unload.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/manual-tests/quit-inside-unload.html')
-rw-r--r--WebCore/manual-tests/quit-inside-unload.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/WebCore/manual-tests/quit-inside-unload.html b/WebCore/manual-tests/quit-inside-unload.html
deleted file mode 100644
index 23ae71d..0000000
--- a/WebCore/manual-tests/quit-inside-unload.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<script>
- var showedAlert = false;
- function handleUnload()
- {
- if (showedAlert)
- return;
-
- showedAlert = true;
- alert("Now Quit Safari. Do not dismiss this alert first.");
- }
-</script>
-<body onunload="handleUnload()">
- Close this window
-</body>