1
0
Fork 0
firefox/testing/web-platform/tests/import-maps/import-maps-base-url.sub.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

38 lines
1.2 KiB
HTML

<!DOCTYPE html>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helper.js"></script>
<script>
// baseURL will be used to create a <base> element, which will change the
// baseURL of the import map.
const baseURL = "http://{{host}}:{{ports[http][0]}}/import-maps/resources/";
const importMap = `
{
"imports": {
"bare/bare": "./log.js?pipe=sub&name=bare"
}
}
`;
promise_setup(function () {
return new Promise((resolve) => {
window.addEventListener("load", async () => {
await testStaticImport(importMap, baseURL, "bare/bare", "log:bare");
await testDynamicImport(importMap, baseURL, "bare/bare", "log:bare", "module");
await testDynamicImport(importMap, baseURL, "bare/bare", "log:bare", "text/javascript");
await testStaticImportInjectBase(importMap, baseURL, "bare/bare", "log:bare");
await testDynamicImportInjectBase(importMap, baseURL, "bare/bare", "log:bare", "module");
await testDynamicImportInjectBase(importMap, baseURL, "bare/bare", "log:bare", "text/javascript");
done();
resolve();
});
});
}, { explicit_done: true });
</script>
<body>