forked from mirrors/gecko-dev
10 lines
306 B
JavaScript
10 lines
306 B
JavaScript
const { f } = await import(
|
|
"./file_script_module_dynamic_and_static_imported_1.js"
|
|
);
|
|
import { g } from "./file_script_module_dynamic_and_static_imported_2.js";
|
|
import { h } from "./file_script_module_dynamic_and_static_imported_3.js";
|
|
f();
|
|
g();
|
|
h();
|
|
|
|
window.dispatchEvent(new Event("test_evaluated"));
|