| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| setup({allow_uncaught_exception : true}); |
| const t_parse = async_test("Import maps shouldn't be parsed as scripts"); |
| const t_evaluate = async_test("Import maps shouldn't be executed as scripts"); |
| const t_external = async_test( |
| "External import maps shouldn't be executed as scripts"); |
| const errorHandler = event => { |
| t_parse.unreached_func("An import map is parsed as a classic script")(); |
| window.addEventListener("error", errorHandler, {once: true}); |
| <!-- This import map causes a parse error when parsed as a classic script. --> |
| <script type="importmap"> |
| // Remove error handler, because the following import map can causes parse |
| window.removeEventListener("error", errorHandler); |
| <script type="importmap"> |
| t_evaluate.unreached_func("An import map is evaluated")(); |
| <script type="importmap" src="data:text/javascript,t_external.unreached_func('An external import map is evaluated')();"></script> |