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

Unified Diff: LayoutTests/fast/html/imports/import-async-shared.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-shared.html
diff --git a/LayoutTests/fast/html/imports/import-async-shared.html b/LayoutTests/fast/html/imports/import-async-shared.html
deleted file mode 100644
index 11bbb17cb3f7d0779753f6b70e2774a6a9e3ae87..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/html/imports/import-async-shared.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-<link id="harness" rel="import" href="resources/async-child.html">
-</head>
-<body>
-<script>
-description("This test ensures that de-duped import can be dynamically added.");
-
-window.jsTestIsAsync = true;
-
-var linkEl = document.createElement("link");
-linkEl.setAttribute("rel", "import");
-linkEl.setAttribute("href", "resources/async-child.html");
-document.head.appendChild(linkEl);
-linkEl.onload = function(evt) {
- shouldBe("linkEl.import", "harness.import");
- finishJSTest();
-};
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698