From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- dom/base/test/file_script_module_element_and_import.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dom/base/test/file_script_module_element_and_import.mjs (limited to 'dom/base/test/file_script_module_element_and_import.mjs') diff --git a/dom/base/test/file_script_module_element_and_import.mjs b/dom/base/test/file_script_module_element_and_import.mjs new file mode 100644 index 0000000000..1c10b2b300 --- /dev/null +++ b/dom/base/test/file_script_module_element_and_import.mjs @@ -0,0 +1,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")); -- cgit v1.2.3