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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.html

Issue 2839913002: [modules] Add simple test concerning instantiation failure. (Closed)
Patch Set: Add comment. Created 3 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..a9556b1a29e2b0a5e18d31b827dca40c6a42f059
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.html
@@ -0,0 +1,22 @@
+<!--
+This test case caught a crash bug in Chrome, due to a logic bug in the spec when
+a second <script> element tried to load a previously-failed module. As such, the
+test passes as long as nothing crashes.
+
+See https://github.com/whatwg/html/pull/2559 for background.
+-->
+
+<!DOCTYPE html>
+<html>
+<head>
+ <title>html-script-module-instantiation-error-1</title>
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+</head>
+<body>
+ <h1>html-script-module-instantiation-error-1</h1>
+ <script> setup({allow_uncaught_exception: true}) </script>
+ <script type="module" src="./instantiation-error-1.js"></script>
+ <script type="module" src="./instantiation-error-1.js"></script>
+</body>
+</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/instantiation-error-1.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698