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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/dom/script-module-load-incomplete-no-crash.html

Issue 2886593002: [ES6 modules] ModuleTreeLinker::Instantiate shouldn't proceed on invalid context (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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/dom/script-module-load-incomplete-no-crash.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/dom/script-module-load-incomplete-no-crash.html b/third_party/WebKit/LayoutTests/http/tests/dom/script-module-load-incomplete-no-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..e12df92a218f3db7a5a3aac1112b06093858798f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/dom/script-module-load-incomplete-no-crash.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<title>Module script graph fetch in flight when document is destroyed shouldn't crash.</title>
hiroshige 2017/05/16 16:54:58 Could you add a comment that describes how this te
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<script type="module">
+import { notfound } from "./404.js";
+import { slow } from "./../../resources/slow-script.pl?delay=1000";
+</script>

Powered by Google App Engine
This is Rietveld 408576698