summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_element_and_import.mjs
blob: 1c10b2b300681b5bca6209988d9f66d3d6f279ad (plain)
1
2
3
4
5
6
7
8
9
import { f } from "./file_script_module_element_and_import_imported_1.mjs";
import { g } from "./file_script_module_element_and_import_imported_2.mjs";
import { h } from "./file_script_module_element_and_import_imported_3.mjs";

f();
g();
h();

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