mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Update web-platform-tests to revision b'a6e9e432ca1b26cdf30b08f9de038b85a215361d'
This commit is contained in:
parent
3cd030566e
commit
1c047e9418
139 changed files with 2729 additions and 938 deletions
|
@ -98,6 +98,11 @@
|
|||
/* 15 */
|
||||
@font-palette-values -- {
|
||||
}
|
||||
|
||||
/* 16 */
|
||||
@font-palette-values --P {
|
||||
font-family: foo, bar, baz;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -204,7 +209,7 @@ test(function() {
|
|||
test(function() {
|
||||
let rule = rules[5];
|
||||
assert_equals(rule.name, "--F");
|
||||
assert_equals(rule.fontFamily, "foo");
|
||||
assert_in_array(rule.fontFamily, ["foo", "\"foo\""]);
|
||||
assert_equals(rule.basePalette, "");
|
||||
assert_equals(rule.overrideColors, "");
|
||||
});
|
||||
|
@ -372,6 +377,14 @@ test(function() {
|
|||
assert_equals(rule.basePalette, "");
|
||||
assert_equals(rule.overrideColors, "");
|
||||
});
|
||||
|
||||
test(function() {
|
||||
let rule = rules[16];
|
||||
assert_equals(rule.name, "--P");
|
||||
assert_equals(rule.fontFamily, "foo, bar, baz");
|
||||
assert_equals(rule.basePalette, "");
|
||||
assert_equals(rule.overrideColors, "");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue