aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/script-defer-xhtml.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/script-defer-xhtml.xhtml')
-rw-r--r--tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/script-defer-xhtml.xhtml31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/script-defer-xhtml.xhtml b/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/script-defer-xhtml.xhtml
deleted file mode 100644
index 3f4a50f7790..00000000000
--- a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/script-defer-xhtml.xhtml
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>XHTML Test: HTMLScriptElement - defer</title>
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<meta charset="utf-8" />
-</head>
-<body>
-<div id="log"></div>
-
-<script>
-
-let script_run_status = "inline";
-let t = async_test("the defer script run later");
-
-</script>
-
-<script type="text/javascript" src="defer.js" defer="defer"></script>
-
-<script>
-
-t.step(() => {
- assert_equals(script_run_status, "inline", "the script run status");
- script_run_status = "deferred";
-});
-
-</script>
-</body>
-</html>