Update web-platform-tests to revision 76c0092916ee8a9171396e62c472d85a0f2623fb

This commit is contained in:
WPT Sync Bot 2018-05-21 21:09:49 -04:00
parent 319556cf6a
commit 496933fbc3
50 changed files with 584 additions and 282 deletions

View file

@ -17,7 +17,7 @@ function testNoComputedStyle(element, description) {
assert_true(!!element);
let style = getComputedStyle(element);
assert_true(!!style);
assert_equals(style.length, 0);
assert_true(style.length === 0);
assert_equals(style.color, "");
}, `getComputedStyle returns no style for ${description}`);
}