Update web-platform-tests to revision fab2c513bffb2bd19600d23b495264d123df092f

This commit is contained in:
Ms2ger 2016-05-06 10:53:19 +02:00
parent c226bf85a9
commit ebddcc2d7f
441 changed files with 3689 additions and 1521 deletions

View file

@ -10,12 +10,8 @@
<div id="log"></div>
<script>
async_test(function (t) {
t.step(function() {
assert_false(document.hidden, "document.hidden must be exist and be false to run this test properly");
});
window.requestAnimationFrame(function () {
t.step(function() { assert_true(true); t.done(); });
});
assert_false(document.hidden, "document.hidden must exist and be false to run this test properly");
window.requestAnimationFrame(t.step_func_done());
}, "requestAnimationFrame callback is invoked at least once before the timeout");
</script>
</body>

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<title>Event handlers processing algorithm</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script
<script src="/resources/testharnessreport.js"></script>
<body>
<div id="foo" style="width: 100px; height: 100px; background-color: black"></div>
<script>