diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/defer-script/async-script.html')
-rw-r--r-- | tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/defer-script/async-script.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/defer-script/async-script.html b/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/defer-script/async-script.html deleted file mode 100644 index dea7f987bfa..00000000000 --- a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/defer-script/async-script.html +++ /dev/null @@ -1,22 +0,0 @@ -<!doctype html> -<title>Async Script Execution Order</title> -<html> -<head> - <meta charset="utf-8"> - <meta name=variant content=""> - <meta name=variant content="?reload"> - <script src="/resources/testharness.js"></script> - <script src="/resources/testharnessreport.js"></script> - <script src="resources/helper.js"></script> -</head> -<body> - <script> - let child_path = 'support/async-script.html'; - if (location.search == '?reload') { - child_path += '?reload'; - } - const child_window = window.open(child_path); - fetch_tests_from_window(child_window); - </script> -</body> -</html> |