Index: sky/tests/modules/imports-can-load-404s.html |
diff --git a/sky/tests/modules/imports-can-load-404s.html b/sky/tests/modules/imports-can-load-404s.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..318e0a33ced1d25aece693359a9b0c823c34d166 |
--- /dev/null |
+++ b/sky/tests/modules/imports-can-load-404s.html |
@@ -0,0 +1,9 @@ |
+<html> |
+<link rel="import" href="resources/does-not-exist.html" as="hello" /> |
+<link rel="import" href="../resources/dump-as-text.html" /> |
+<div id="result">FAIL - Script did not execute</div> |
+<script> |
+document.getElementById("result").textContent = |
+ hello === undefined ? "PASS" : "FAIL"; |
+</script> |
+</html> |