aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html')
-rw-r--r--tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html b/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html
deleted file mode 100644
index 3a42cf9e306..00000000000
--- a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<title>Cyclic graph with slow imports</title>
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script type="module">
-import { loaded } from "./slow-module-graph-a.js";
-
-test(() => {
- assert_true(loaded);
-}, "module graph with cycles load even if part of the graph loads slow");
-</script>