summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_static_and_dynamic.js
blob: 60766106af41363a17b0d885257ada46b3e7f1e0 (plain)
1
2
3
4
5
6
7
8
import { f } from "./file_script_module_static_and_dynamic_imported_1.js";
import { g } from "./file_script_module_static_and_dynamic_imported_2.js";
import { h } from "./file_script_module_static_and_dynamic_imported_3.js";
f();
g();
h();

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