Update web-platform-tests to revision be5419e845d39089ba6dc338c1bd0fa279108317

This commit is contained in:
Josh Matthews 2018-01-04 13:44:24 -05:00
parent aa199307c8
commit 2b6f573eb5
3440 changed files with 109438 additions and 41750 deletions

View file

@ -14,7 +14,7 @@
var t = async_test();
function scheduleNextTest() {
t.step_timeout(runNextTest, 0);
setTimeout(runNextTest, 0);
}
function runNextTest() {
@ -28,9 +28,9 @@
}
function verify(actual, expected, desc) {
t.step_timeout(function() {
setTimeout(t.step_func(function() {
assert_equals(actual, expected, desc);
}, 0);
}), 0);
}
</script>

View file

@ -9,10 +9,10 @@
function verify() {
// Navigation in onload handler through form submission should not
// increse history length.
var testRunner = window.top.opener;
testRunner.verify(history.length, 1,
var runner = window.top.opener;
runner.verify(history.length, 1,
"history.length of subtest '" + top.document.title + "'.");
testRunner.scheduleNextTest();
runner.scheduleNextTest();
setTimeout(window.close.bind(top), 0);
}
</script>