summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_sri_dynamic_elem_nopreload.mjs
blob: 638ac3b298b1623fa78d9b245787080ba15fccea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const { f } = await import(
  "./file_script_module_sri_dynamic_elem_nopreload_imported.mjs"
);
f();

// Dynamically insert the script element in order to suppress preload.
const script = document.createElement("script");
script.id = "watchme2";
script.setAttribute("type", "module");
script.setAttribute(
  "src",
  "file_script_module_sri_dynamic_elem_nopreload_imported.mjs"
);
script.setAttribute(
  "integrity",
  "sha384-3XSIfAj4/GALfWzL3T89+t3eaLIY59g8IWz1qq59xKnEW3aGd4cz7XvdcYqoK2+J"
);
document.body.appendChild(script);

window.dispatchEvent(new Event("test_evaluated"));