diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/execution-timing/003.html')
-rw-r--r-- | tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/execution-timing/003.html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/execution-timing/003.html b/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/execution-timing/003.html deleted file mode 100644 index 9c23b7e715e..00000000000 --- a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/execution-timing/003.html +++ /dev/null @@ -1,27 +0,0 @@ -<!DOCTYPE html> -<html><head> - <title> scheduler: inline+external in markup </title> - <script src="/resources/testharness.js"></script> - <script src="/resources/testharnessreport.js"></script> - <script src="testlib/testlib.js"></script> -</head> -<body> - - <div id="log">FAILED (This TC requires JavaScript enabled)</div> - - <script>log('inline script #1')</script> - <script src="scripts/include-2.js"></script> - - <script type="text/javascript"> - - var t = async_test() - - - function test() { - assert_array_equals(eventOrder, ['inline script #1', 'external script #2' ]); - t.done(); - } - onload = t.step_func(test) - </script> - -</body></html> |