mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
Update web-platform-tests to revision 527a9287825118957bb7d94c098c448cef9d6982
This commit is contained in:
parent
b876168721
commit
ed25f52f43
289 changed files with 4880 additions and 2539 deletions
|
@ -66,7 +66,7 @@ test(() => {
|
|||
assert_equals(sheet.cssRules[0].cssText, redStyleTexts[1]);
|
||||
|
||||
const sheet2 = new CSSStyleSheet({});
|
||||
assert_equals(sheet2.title, "")
|
||||
assert_equals(sheet2.title, null);
|
||||
assert_equals(sheet2.ownerNode, null);
|
||||
assert_equals(sheet2.ownerRule, null);
|
||||
assert_equals(sheet2.media.length, 0);
|
||||
|
@ -80,8 +80,8 @@ test(() => {
|
|||
sheet2.deleteRule(0);
|
||||
assert_equals(sheet2.cssRules.length, 0);
|
||||
|
||||
const sheet3 = new CSSStyleSheet();
|
||||
assert_equals(sheet3.title, "")
|
||||
const sheet3 = new CSSStyleSheet();
|
||||
assert_equals(sheet3.title, null);
|
||||
assert_equals(sheet3.ownerNode, null);
|
||||
assert_equals(sheet3.ownerRule, null);
|
||||
assert_equals(sheet3.media.length, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue