Update web-platform-tests to revision 122a4672fa0dc554a6e7528fa3487fd907c792ee

This commit is contained in:
WPT Sync Bot 2019-03-23 21:54:52 -04:00
parent fb1123495f
commit 93d826f7ba
301 changed files with 4775 additions and 1769 deletions

View file

@ -2,6 +2,7 @@
<html>
<head>
<title>An async script does not block the parser while downloading</title>
<meta name="timeout" content="long">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta description="This test ensures an async script does not block the parser while downloading." />
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />

View file

@ -2,6 +2,7 @@
<html>
<head>
<title>An async script executes as soon as possible after a download is complete</title>
<meta name="timeout" content="long">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta description="This test ensures an async script executes as soon as possible after a download is complete." />
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />

View file

@ -2,6 +2,7 @@
<html>
<head>
<title>A script element with both async and defer set should execute asynchronously</title>
<meta name="timeout" content="long">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta description="This test ensures a script element with both async and defer set should execute asynchronously." />
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />

View file

@ -2,6 +2,7 @@
<html>
<head>
<title>A dynamically created external script executes asynchronously</title>
<meta name="timeout" content="long">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta description="This test ensures a dynamically created external script executes asynchronously." />
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />

View file

@ -2,6 +2,7 @@
<html>
<head>
<title>Ordered async script execution when script.async == false</title>
<meta name="timeout" content="long">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta description="This test ensures Ordered async script execution when script.async == false" />
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />

View file

@ -2,6 +2,7 @@
<html>
<head>
<title>Removing an async script before execution</title>
<meta name="timeout" content="long">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta description="This test ensures that an async script still executes if it is removed from a markup before the download is complete. The other two scripts that come after it in insertion order should execute as well." />
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html><head>
<title> scheduler: DOM added inline+external+inline script earlier in document</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html><head>
<title> scheduler: adding external script that removes all scripts from document</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>

View file

@ -2,6 +2,7 @@
<html>
<head>
<title> adding several types of scripts through the DOM and removing some of them confuses scheduler (slow-loading scripts) </title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html><head>
<title> scheduler: multiple slow loading external scripts added with DOM (appendChild)</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html><head>
<title> scheduler: removing async attribute at runtime</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html><head>
<title> scheduler: removing async attribute at runtime, script also has defer attribute</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>

View file

@ -1,6 +1,7 @@
<!doctype html>
<meta charset="utf-8">
<title>Script is not executed after script thread is shutdown</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe id="testiframe" src="script-not-executed-after-shutdown-child.html"></iframe>