blob: 6bd59930bb550768cfbb5582f11900d8f60dc32c (
plain)
1
2
3
4
5
6
7
8
9
10
|
const { f } = await import(
"./file_script_module_element_and_dynamic_imported_1.js"
);
import { g } from "./file_script_module_element_and_dynamic_imported_2.js";
import { h } from "./file_script_module_element_and_dynamic_imported_3.js";
f();
g();
h();
window.dispatchEvent(new Event("test_evaluated"));
|