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

Side by Side 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, 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 <!--
2 This test case caught a crash bug in Chrome, due to a logic bug in the spec when
3 a second <script> element tried to load a previously-failed module. As such, the
4 test passes as long as nothing crashes.
5
6 See https://github.com/whatwg/html/pull/2559 for background.
7 -->
8
9 <!DOCTYPE html>
10 <html>
11 <head>
12 <title>html-script-module-instantiation-error-1</title>
13 <script src="/resources/testharness.js"></script>
14 <script src="/resources/testharnessreport.js"></script>
15 </head>
16 <body>
17 <h1>html-script-module-instantiation-error-1</h1>
18 <script> setup({allow_uncaught_exception: true}) </script>
19 <script type="module" src="./instantiation-error-1.js"></script>
20 <script type="module" src="./instantiation-error-1.js"></script>
21 </body>
22 </html>
OLDNEW
« 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