aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html')
-rw-r--r--tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html b/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html
deleted file mode 100644
index 00269efdf93..00000000000
--- a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<title>Late namespace request</title>
-
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script>
- window.log = [];
-
- const test_load = async_test(
- "Test the situation where a module is instantiated without the " +
- "need for a namespace object, but later on a different module " +
- "requests the namespace.");
- window.addEventListener("load", test_load.step_func_done(ev => {
- assert_array_equals(log,
- ["export-something",
- "import-something-namespace", 42, 43]);
- }));
-</script>
-<script type="module" src="export-something.js"></script>
-<script type="module" src="import-something-namespace.js"></script>