Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/import-subgraph-404.html |
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/import-subgraph-404.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/import-subgraph-404.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..da23c161b01df79784b4cb014bcfcfed897e20f4 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/import-subgraph-404.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
|
kouhei (in TOK)
2017/05/04 16:23:27
W/ this CL applied, this test should not crash, bu
|
| +<script src="/resources/testharness.js"></script> |
| +<script src="/resources/testharnessreport.js"></script> |
| +<script type="module"> |
| +import { delayedLoaded } from "./resources/delayed-modulescript.py"; |
|
kouhei (in TOK)
2017/05/04 16:23:27
Wether delayed-modulescript.py would succeed to in
|
| +import { A } from "./404.js"; |
| +window.loadSuccess = delayedLoaded; |
| +</script> |
|
kouhei (in TOK)
2017/05/04 16:23:27
if we write <script type=module> import "./resourc
|
| +<script type="module"> |
| +test(function () { |
| + assert_equals(window.loadSuccess, undefined, "module tree w/ its sub graph 404 should fail to load"); |
| +}, "Import a module graph w/ sub-graph 404."); |
| +</script> |