Index: LayoutTests/fast/html/imports/import-async.html |
diff --git a/LayoutTests/fast/html/imports/import-async.html b/LayoutTests/fast/html/imports/import-async.html |
deleted file mode 100644 |
index 01bac3e25237d87dcf725a4b62fad52d7a33c128..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/html/imports/import-async.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<script> |
-description("This test ensures that script-added import doesn't block scripts"); |
- |
-window.jsTestIsAsync = true; |
- |
-var importIsLoaded = false; |
-var scriptIsExecuted = false; |
- |
-var linkEl = document.createElement("link"); |
-linkEl.setAttribute("rel", "import"); |
-linkEl.setAttribute("href", "resources/async-child.html"); |
-document.head.appendChild(linkEl); |
-linkEl.onload = function(evt) { |
- debug("In onload handler - This should be called later."); |
- shouldBeTrue("importIsLoaded"); |
- shouldBeTrue("scriptIsExecuted"); |
- finishJSTest(); |
-}; |
- |
-</script> |
-<script> |
-debug("In script tag - This should be called first."); |
-shouldBeFalse("importIsLoaded"); |
-scriptIsExecuted = true; |
-</script> |
-</body> |
-</html> |