Update web-platform-tests and CSS tests.

- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
This commit is contained in:
Ms2ger 2017-02-06 11:06:12 +01:00
parent fb4f421c8b
commit 296fa2512b
21852 changed files with 2080936 additions and 892894 deletions

View file

@ -11,7 +11,7 @@
async_test(function(t)
{
var parent = document.getElementById("parent");
trusted_request(parent);
trusted_request(t, parent);
document.onfullscreenchange = t.step_func(function()
{
assert_equals(document.fullscreenElement, parent);

View file

@ -11,12 +11,12 @@
async_test(function(t)
{
var first = document.getElementById("first");
trusted_request(first);
trusted_request(t, first);
document.onfullscreenchange = t.step_func(function()
{
assert_equals(document.fullscreenElement, first);
var last = document.getElementById("last");
trusted_request(last);
trusted_request(t, last);
document.onfullscreenchange = t.step_func(function()
{
assert_equals(document.fullscreenElement, last);

View file

@ -11,12 +11,12 @@
async_test(function(t)
{
var first = document.getElementById("first");
trusted_request(first);
trusted_request(t, first);
document.onfullscreenchange = t.step_func(function()
{
assert_equals(document.fullscreenElement, first);
var last = document.getElementById("last");
trusted_request(last);
trusted_request(t, last);
document.onfullscreenchange = t.step_func(function()
{
assert_equals(document.fullscreenElement, last);

View file

@ -11,7 +11,7 @@
async_test(function(t)
{
var child = document.getElementById("child");
trusted_request(child);
trusted_request(t, child);
document.onfullscreenchange = t.step_func(function()
{
assert_equals(document.fullscreenElement, child);

View file

@ -19,6 +19,6 @@ async_test(function(t)
t.done();
});
});
trusted_request(single);
trusted_request(t, single);
});
</script>