| 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>
|
|
|