Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>html-script-module-evaluation-error-1</title> | |
| 5 <script src="/resources/testharness.js"></script> | |
| 6 <script src="/resources/testharnessreport.js"></script> | |
| 7 </head> | |
| 8 <body> | |
| 9 <h1>html-script-module-evaluation-error-1</h1> | |
| 10 <script> | |
| 11 | |
| 12 setup({allow_uncaught_exception: true}); | |
| 13 | |
| 14 var log = []; | |
|
domenic
2017/04/28 20:12:03
I find it clearer to use `window.log = []` instead
| |
| 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_array_equals(log, ["throw", 666]); | |
| 21 })); | |
| 22 | |
| 23 function unreachable() { | |
| 24 log.push("unexpected"); | |
| 25 } | |
| 26 | |
| 27 </script> | |
| 28 <script type="module" src="throw.js" onerror="unreachable()"></script> | |
|
domenic
2017/04/28 20:12:02
It may be simpler to do onerror="assert_unreached(
| |
| 29 <script type="module" src="throw.js" onerror="unreachable()"></script> | |
| 30 <script type="module" src="throw.js" async onerror="unreachable()"></script> | |
| 31 <script type="module" src="throw.js" nomodule onerror="unreachable()"></scri pt> | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |