summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_import_and_element_imported_1.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_script_module_import_and_element_imported_1.mjs')
-rw-r--r--dom/base/test/file_script_module_import_and_element_imported_1.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/dom/base/test/file_script_module_import_and_element_imported_1.mjs b/dom/base/test/file_script_module_import_and_element_imported_1.mjs
new file mode 100644
index 0000000000..6371cf2a4f
--- /dev/null
+++ b/dom/base/test/file_script_module_import_and_element_imported_1.mjs
@@ -0,0 +1,7 @@
+import { g } from "./file_script_module_import_and_element_imported_2.mjs";
+import { h } from "./file_script_module_import_and_element_imported_3.mjs";
+
+g();
+h();
+
+export function f() {}