summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_sri_import_elem_nopreload.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_script_module_sri_import_elem_nopreload.mjs')
-rw-r--r--dom/base/test/file_script_module_sri_import_elem_nopreload.mjs19
1 files changed, 19 insertions, 0 deletions
diff --git a/dom/base/test/file_script_module_sri_import_elem_nopreload.mjs b/dom/base/test/file_script_module_sri_import_elem_nopreload.mjs
new file mode 100644
index 0000000000..beb7c4fa45
--- /dev/null
+++ b/dom/base/test/file_script_module_sri_import_elem_nopreload.mjs
@@ -0,0 +1,19 @@
+import { f } from "./file_script_module_sri_import_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_import_elem_nopreload_imported.mjs"
+);
+script.setAttribute(
+ "integrity",
+ "sha384-3XSIfAj4/GALfWzL3T89+t3eaLIY59g8IWz1qq59xKnEW3aGd4cz7XvdcYqoK2+J"
+);
+document.body.appendChild(script);
+
+window.dispatchEvent(new Event("test_evaluated"));