Update web-platform-tests to revision 44702f2bc8ea98bc32b5b244f2fe63c6ce66d49d

This commit is contained in:
Josh Matthews 2017-11-15 12:15:13 -05:00
parent 85fa6409bb
commit c227604a2c
997 changed files with 45660 additions and 14650 deletions

View file

@ -0,0 +1,37 @@
<!doctype html>
<meta charset=utf-8>
<title>Navigation in onload handler</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
var testFiles = [
"navigation-in-onload_form-submission-1.tentative.html",
"navigation-in-onload_form-submission-iframe.tentative.html",
"navigation-in-onload_form-submission-dynamic-iframe.tentative.html"
]
var t = async_test();
function scheduleNextTest() {
setTimeout(runNextTest, 0);
}
function runNextTest() {
var file = testFiles.shift();
if (!file) {
t.done();
return;
}
window.open(file);
}
function verify(actual, expected, desc) {
setTimeout(t.step_func(function() {
assert_equals(actual, expected, desc);
}), 0);
}
</script>
<body onload="scheduleNextTest();"></body>

View file

@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Navigation in onload handler through form submission</title>
<script>
function redirect() {
document.querySelector("#redirectionForm").submit();
}
</script>
</head>
<body onload="redirect();">
<form id="redirectionForm" action="navigation-in-onload_form-submission-2.tentative.html" method="get"></form>
</body>
</html>

View file

@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Navigation in onload handler through form submission</title>
<script>
// Verify is called after onload event to ensure history has been stable.
function verify() {
// Navigation in onload handler through form submission should not
// increse history length.
var testRunner = window.top.opener;
testRunner.verify(history.length, 1,
"history.length of subtest '" + top.document.title + "'.");
testRunner.scheduleNextTest();
setTimeout(window.close.bind(top), 0);
}
</script>
</head>
<body onload="setTimeout(verify, 0);">
</body>
</html>

View file

@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Navigation in onload handler through form submission in a dynamically created iframe</title>
<script>
function test() {
let testFrame = document.createElement("iframe");
testFrame.src = "navigation-in-onload_form-submission-1.tentative.html";
document.body.appendChild(testFrame);
}
</script>
</head>
<body onload="test();">
</body>
</html>

View file

@ -0,0 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Navigation in onload handler through form submission in an iframe</title>
</head>
<body>
<iframe id="testFrame" src="navigation-in-onload_form-submission-1.tentative.html"></iframe>
</body>
</html>