Index: LayoutTests/fast/html/imports/import-async-tree.html |
diff --git a/LayoutTests/fast/html/imports/import-async-tree.html b/LayoutTests/fast/html/imports/import-async-tree.html |
deleted file mode 100644 |
index 5fa2422a795c372dc54089714239ce00b452ea0f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/html/imports/import-async-tree.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<script> |
-description("This test ensures that script-added import lets its child blocks following scripts."); |
- |
-window.jsTestIsAsync = true; |
-window.trace = []; |
- |
-var linkEl = document.createElement("link"); |
-linkEl.setAttribute("rel", "import"); |
-linkEl.setAttribute("href", "resources/async-root.html"); |
-document.head.appendChild(linkEl); |
-linkEl.onload = function(evt) { |
- shouldBe("window.trace", "['START root', 'child1', 'child2', 'END root']"); |
- finishJSTest(); |
-}; |
- |
-</script> |
-</body> |
-</html> |