Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title>html-script-module-evaluation-error-2</title> | |
| 3 | |
| 4 <script src="/resources/testharness.js"></script> | |
| 5 <script src="/resources/testharnessreport.js"></script> | |
| 6 <script> | |
| 7 setup({allow_uncaught_exception: true}); | |
| 8 | |
| 9 var log = []; | |
| 10 | |
| 11 window.addEventListener("error", ev => log.push(ev.error)); | |
| 12 | |
| 13 var test_load = async_test("test_load"); | |
| 14 window.addEventListener("load", test_load.step_func_done(ev => { | |
| 15 assert_equals(log.length, 2); | |
| 16 assert_equals(log[0], "cycle-tdz-access-a"); | |
| 17 assert_equals(log[1].constructor, ReferenceError); | |
|
domenic
2017/05/03 23:49:30
And again per the very latest changes this would r
neis
2017/05/04 13:07:53
Agreed.
| |
| 18 })); | |
| 19 | |
| 20 function unreachable() { | |
| 21 log.push("unexpected"); | |
| 22 } | |
| 23 </script> | |
| 24 <script type="module" src="cycle-tdz-access.js" async onerror="unreachable()"></ script> | |
| 25 <script type="module" src="cycle-tdz-access.js" nomodule onerror="unreachable()" ></script> | |
| 26 <script type="module" src="cycle-tdz-access.js" onerror="unreachable()"></script > | |
| OLD | NEW |