Index: LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html |
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html b/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html |
deleted file mode 100644 |
index ea862139bdbc1627f62d53f96327c4fe6ef0a53a..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html |
+++ /dev/null |
@@ -1,14 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-</head> |
-<body onload="debug('load');finishJSTest();"> |
-Checks that async scripts fire onbeforeload immediately and that it is cancellable. |
-<div id="console"></div> |
-<script>var jsTestIsAsync = true;</script> |
-<script src="resources/shouldnotexecute.js" onbeforeload="debug('cancelled onbeforeload async'); return false;" async></script> |
-<script src="resources/async.js" onbeforeload="debug('onbeforeload async'); return true;" async></script> |
-<script src="data:text/javascript," onbeforeload="debug('onbeforeload external'); return true;"></script> |
-</body> |
-</html> |