Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>html-script-module-compilation-error-2</title> | |
| 5 <script src="/resources/testharness.js"></script> | |
| 6 <script src="/resources/testharnessreport.js"></script> | |
| 7 </head> | |
| 8 <body> | |
| 9 <h1>html-script-module-compilation-error-2</h1> | |
| 10 <script> | |
| 11 | |
| 12 setup({allow_uncaught_exception: true}); | |
| 13 | |
| 14 var log = []; | |
| 15 | |
| 16 window.addEventListener("error", ev => log.push(ev.error)); | |
| 17 | |
| 18 var test_load = async_test("test_load"); | |
| 19 window.addEventListener("load", test_load.step_func_done(ev => { | |
| 20 assert_equals(log.length, 2); | |
|
domenic
2017/04/28 20:12:02
Should be 5
neis
2017/05/02 13:51:59
Done.
| |
| 21 assert_true(log[0] instanceof SyntaxError); | |
| 22 assert_true(log.every(exn => exn === log[0])); | |
| 23 })); | |
| 24 | |
| 25 </script> | |
| 26 <script type="module" src="./syntaxerror-nested.js"></script> | |
| 27 <script type="module" src="./syntaxerror-nested.js"></script> | |
| 28 <script type="module" src="./syntaxerror.js"></script> | |
| 29 <script type="module" src="./syntaxerror-nested.js"></script> | |
| 30 <script type="module" src="./syntaxerror.js"></script> | |
| 31 </body> | |
| 32 </html> | |
| OLD | NEW |