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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/import-subgraph-404.html

Issue 2860993002: [ES6 modules] ModuleMap::GetFetchedModuleScript to return nullptr when entry not found / "fetching" (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
kouhei (in TOK) 2017/05/04 16:23:27 W/ this CL applied, this test should not crash, bu
2 <script src="/resources/testharness.js"></script>
3 <script src="/resources/testharnessreport.js"></script>
4 <script type="module">
5 import { delayedLoaded } from "./resources/delayed-modulescript.py";
kouhei (in TOK) 2017/05/04 16:23:27 Wether delayed-modulescript.py would succeed to in
6 import { A } from "./404.js";
7 window.loadSuccess = delayedLoaded;
8 </script>
kouhei (in TOK) 2017/05/04 16:23:27 if we write <script type=module> import "./resourc
9 <script type="module">
10 test(function () {
11 assert_equals(window.loadSuccess, undefined, "module tree w/ its sub graph 4 04 should fail to load");
12 }, "Import a module graph w/ sub-graph 404.");
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698