Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: LayoutTests/fast/html/imports/import-async-tree.html

Issue 265453003: HTML Imports: Let dynamically-added imports sync. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Landing. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698