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