mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
layout: Respond to shorthand property requests with real values (#31277)
* Respond to shorthand property requests with real values Signed-off-by: Sebastian C <sebsebmc@gmail.com> * Cleanup formatting and old comments Signed-off-by: Sebastian C <sebsebmc@gmail.com> * Update WPT expectations Signed-off-by: Sebastian C <sebsebmc@gmail.com> * Refactor out helper fn Signed-off-by: Sebastian C <sebsebmc@gmail.com> * Cleanup Signed-off-by: Sebastian C <sebsebmc@gmail.com> --------- Signed-off-by: Sebastian C <sebsebmc@gmail.com>
This commit is contained in:
parent
0342d6beb0
commit
19667e117a
51 changed files with 155 additions and 1666 deletions
|
@ -24,7 +24,9 @@ use style::computed_values::position::T as Position;
|
|||
use style::context::{StyleContext, ThreadLocalStyleContext};
|
||||
use style::dom::{OpaqueNode, TElement};
|
||||
use style::properties::style_structs::Font;
|
||||
use style::properties::{LonghandId, PropertyDeclarationId, PropertyId};
|
||||
use style::properties::{
|
||||
Importance, LonghandId, PropertyDeclarationBlock, PropertyDeclarationId, PropertyId,
|
||||
};
|
||||
use style::selector_parser::PseudoElement;
|
||||
use style::stylist::RuleInclusion;
|
||||
use style::traversal::resolve_style;
|
||||
|
@ -258,9 +260,9 @@ pub fn process_resolved_style_request<'dom>(
|
|||
let style = &*layout_element.resolved_style();
|
||||
let longhand_id = match *property {
|
||||
PropertyId::LonghandAlias(id, _) | PropertyId::Longhand(id) => id,
|
||||
// Firefox returns blank strings for the computed value of shorthands,
|
||||
// so this should be web-compatible.
|
||||
PropertyId::ShorthandAlias(..) | PropertyId::Shorthand(_) => return String::new(),
|
||||
PropertyId::ShorthandAlias(id, _) | PropertyId::Shorthand(id) => {
|
||||
return shorthand_to_css_string(id, style);
|
||||
},
|
||||
PropertyId::Custom(ref name) => {
|
||||
return style.computed_value_to_string(PropertyDeclarationId::Custom(name));
|
||||
},
|
||||
|
@ -379,9 +381,9 @@ pub fn process_resolved_style_request_for_unstyled_node<'dom>(
|
|||
let style = styles.primary();
|
||||
let longhand_id = match *property {
|
||||
PropertyId::LonghandAlias(id, _) | PropertyId::Longhand(id) => id,
|
||||
// Firefox returns blank strings for the computed value of shorthands,
|
||||
// so this should be web-compatible.
|
||||
PropertyId::ShorthandAlias(..) | PropertyId::Shorthand(_) => return String::new(),
|
||||
PropertyId::ShorthandAlias(id, _) | PropertyId::Shorthand(id) => {
|
||||
return shorthand_to_css_string(id, style);
|
||||
},
|
||||
PropertyId::Custom(ref name) => {
|
||||
return style.computed_value_to_string(PropertyDeclarationId::Custom(name));
|
||||
},
|
||||
|
@ -392,6 +394,25 @@ pub fn process_resolved_style_request_for_unstyled_node<'dom>(
|
|||
style.computed_value_to_string(PropertyDeclarationId::Longhand(longhand_id))
|
||||
}
|
||||
|
||||
fn shorthand_to_css_string(
|
||||
id: style::properties::ShorthandId,
|
||||
style: &style::properties::ComputedValues,
|
||||
) -> String {
|
||||
use style::values::resolved::Context;
|
||||
let mut block = PropertyDeclarationBlock::new();
|
||||
let mut dest = String::new();
|
||||
for longhand in id.longhands() {
|
||||
block.push(
|
||||
style.computed_or_resolved_declaration(longhand, Some(&Context { style })),
|
||||
Importance::Normal,
|
||||
);
|
||||
}
|
||||
match block.shorthand_to_css(id, &mut dest) {
|
||||
Ok(_) => dest.to_owned(),
|
||||
Err(_) => String::new(),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn process_offset_parent_query(
|
||||
node: OpaqueNode,
|
||||
fragment_tree: Option<Arc<FragmentTree>>,
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
[computed-style-animation-parsing.html]
|
||||
[Test an animation name that is the same as a possible animation fill-mode.]
|
||||
expected: FAIL
|
||||
|
||||
[Test an animation name that is the same as a possible running state.]
|
||||
expected: FAIL
|
||||
|
||||
[Test a non-conflicting animation name.]
|
||||
expected: FAIL
|
||||
|
||||
[Test an animation name that is the same as a possible animation direction.]
|
||||
expected: FAIL
|
||||
|
||||
[Test an animation name that is the same as a possible animation timing-function.]
|
||||
expected: FAIL
|
||||
|
||||
[Test an animation name that is the same as a possible animation iteration-count.]
|
||||
expected: FAIL
|
|
@ -11,9 +11,6 @@
|
|||
[Property animation value 'cubic-bezier(0, -2, 1, 3)']
|
||||
expected: FAIL
|
||||
|
||||
[Property animation value 'anim paused both reverse 4 1s -3s cubic-bezier(0, -2, 1, 3)']
|
||||
expected: FAIL
|
||||
|
||||
[Property animation value '1s -3s']
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -146,3 +146,128 @@
|
|||
[Web Animations: property <background-position> from [unset\] to [80px 80px, 80px 80px, 80px 80px, 80px 80px\] at (0.75) should be [calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (-0.25) should be [-20px -20px, -20px -20px, -20px -20px, -20px -20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.25) should be [ 20px 20px, 20px 20px, 20px 20px, 20px 20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.5) should be [ 40px 40px, 40px 40px, 40px 40px, 40px 40px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.75) should be [ 60px 60px, 60px 60px, 60px 60px, 60px 60px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (1) should be [ 80px 80px, 80px 80px, 80px 80px, 80px 80px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (1.25) should be [100px 100px, 100px 100px, 100px 100px, 100px 100px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (-0.25) should be [-20px -20px, -20px -20px, -20px -20px, -20px -20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.25) should be [ 20px 20px, 20px 20px, 20px 20px, 20px 20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.5) should be [ 40px 40px, 40px 40px, 40px 40px, 40px 40px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.75) should be [ 60px 60px, 60px 60px, 60px 60px, 60px 60px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (1) should be [ 80px 80px, 80px 80px, 80px 80px, 80px 80px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (1.25) should be [100px 100px, 100px 100px, 100px 100px, 100px 100px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (-0.25) should be [-20px -20px, -20px -20px, -20px -20px, -20px -20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0) should be [ 0px 0px, 0px 0px, 0px 0px, 0px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.25) should be [ 20px 20px, 20px 20px, 20px 20px, 20px 20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.5) should be [ 40px 40px, 40px 40px, 40px 40px, 40px 40px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (0.75) should be [ 60px 60px, 60px 60px, 60px 60px, 60px 60px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (1) should be [ 80px 80px, 80px 80px, 80px 80px, 80px 80px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [top 0px left 0px\] to [left 80px top 80px\] at (1.25) should be [100px 100px, 100px 100px, 100px 100px, 100px 100px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (-0.25) should be [-10px -10px, 80px -20px, 0px -20px, 90px -10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0) should be [ 0px 0px, 80px 0px, 0px 0px, 80px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.25) should be [ 10px 10px, 80px 20px, 0px 20px, 70px 10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.5) should be [ 20px 20px, 80px 40px, 0px 40px, 60px 20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.75) should be [ 30px 30px, 80px 60px, 0px 60px, 50px 30px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1) should be [ 40px 40px, 80px 80px, 0px 80px, 40px 40px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1.25) should be [ 50px 50px, 80px 100px, 0px 100px, 30px 50px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (-0.25) should be [-10px -10px, 80px -20px, 0px -20px, 90px -10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0) should be [ 0px 0px, 80px 0px, 0px 0px, 80px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.25) should be [ 10px 10px, 80px 20px, 0px 20px, 70px 10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.5) should be [ 20px 20px, 80px 40px, 0px 40px, 60px 20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.75) should be [ 30px 30px, 80px 60px, 0px 60px, 50px 30px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1) should be [ 40px 40px, 80px 80px, 0px 80px, 40px 40px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1.25) should be [ 50px 50px, 80px 100px, 0px 100px, 30px 50px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (-0.25) should be [-10px -10px, 80px -20px, 0px -20px, 90px -10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0) should be [ 0px 0px, 80px 0px, 0px 0px, 80px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.25) should be [ 10px 10px, 80px 20px, 0px 20px, 70px 10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.5) should be [ 20px 20px, 80px 40px, 0px 40px, 60px 20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (0.75) should be [ 30px 30px, 80px 60px, 0px 60px, 50px 30px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1) should be [ 40px 40px, 80px 80px, 0px 80px, 40px 40px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <background-position> from [0px 0px, 80px 0px\] to [40px 40px, 80px 80px, 0px 80px\] at (1.25) should be [ 50px 50px, 80px 100px, 0px 100px, 30px 50px\]]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
[border-color-interpolation.html]
|
||||
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (0) should be [rgb(0, 0, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [white\] to [orange\] at (-0.3) should be [white\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -17,21 +11,12 @@
|
|||
[Web Animations: property <border-top-color> from [inherit\] to [orange\] at (0) should be [rgb(255, 255, 255)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [initial\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -53,9 +38,6 @@
|
|||
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1.5) should be [rgb(5, 15, 25) rgb(40, 50, 60) rgb(35, 45, 55) rgb(55, 65, 75)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [inherit\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -77,12 +59,6 @@
|
|||
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (1) should be [rgb(255, 165, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -107,57 +83,26 @@
|
|||
[Web Animations: property <border-top-color> from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0) should be [rgb(20, 30, 40) rgb(40, 50, 60)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1.5) should be [rgb(5, 15, 25) rgb(40, 50, 60) rgb(35, 45, 55) rgb(55, 65, 75)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.6) should be [rgb(14, 24, 34) rgb(40, 50, 60) rgb(26, 36, 46) rgb(46, 56, 66)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1.5) should be [rgb(5, 15, 25) rgb(40, 50, 60) rgb(35, 45, 55) rgb(55, 65, 75)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (1) should be [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (0.3) should be [rgb(17, 27, 37) rgb(40, 50, 60) rgb(23, 33, 43) rgb(43, 53, 63)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-color> from [rgb(20, 30, 40) rgb(40, 50, 60)\] to [rgb(10, 20, 30) rgb(40, 50, 60) rgb(30, 40, 50) rgb(50, 60, 70)\] at (-0.3) should be [rgb(23, 33, 43) rgb(40, 50, 60) rgb(17, 27, 37) rgb(37, 47, 57)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-color> from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (-0.3) should be [17px 37px 57px 77px / 117px 137px 157px 177px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (0.3) should be [13px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -23,27 +20,12 @@
|
|||
[Web Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (1) should be [20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.3) should be [23px 43px 63px 83px / 123px 143px 163px 183px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (0.6) should be [34px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [inherit\] to [20px\] at (0.3) should be [27px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -77,9 +59,6 @@
|
|||
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (1.5) should be [30px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (-0.3) should be [17px 37px 57px 77px / 117px 137px 157px 177px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -95,42 +74,21 @@
|
|||
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (1.5) should be [25px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.3) should be [23px 43px 63px 83px / 123px 143px 163px 183px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (-0.3) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.3) should be [23px 43px 63px 83px / 123px 143px 163px 183px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1.5) should be [35px 55px 75px 95px / 135px 155px 175px 195px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -140,12 +98,6 @@
|
|||
[Web Animations: property <border-top-left-radius> from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (1) should be [30px 50px 70px 90px / 130px 150px 170px 190px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0) should be [20px 40px 60px 80px / 120px 140px 160px 180px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from neutral to [20px\] at (1) should be [20px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -155,9 +107,6 @@
|
|||
[Web Animations: property <border-top-left-radius> from [10px\] to [50px\] at (0) should be [10px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (0.6) should be [26px 46px 66px 86px / 126px 146px 166px 186px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [10px\] to [100%\] at (1) should be [100%\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -167,9 +116,6 @@
|
|||
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0.6) should be [12px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-radius> from [20px 40px 60px 80px / 120px 140px 160px 180px\] to [30px 50px 70px 90px / 130px 150px 170px 190px\] at (-0.3) should be [17px 37px 57px 77px / 117px 137px 157px 177px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-top-left-radius> from [initial\] to [20px\] at (0) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -199,4 +145,3 @@
|
|||
|
||||
[Web Animations: property <border-top-left-radius> from [unset\] to [20px\] at (0.3) should be [6px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -2,15 +2,9 @@
|
|||
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (0.3) should be [8.1px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (0.6) should be [7px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from neutral to [20px\] at (1) should be [20px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -20,9 +14,6 @@
|
|||
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (1) should be [15px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [medium\] to [13px\] at (1) should be [13px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -50,18 +41,6 @@
|
|||
[Web Animations: property <border-left-width> from neutral to [20px\] at (0.3) should be [13px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (1.5) should be [16px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -71,9 +50,6 @@
|
|||
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (1.5) should be [28.5px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -89,18 +65,12 @@
|
|||
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (-0.3) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (0.3) should be [8.1px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (-0.3) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -125,27 +95,18 @@
|
|||
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (1.5) should be [20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (1) should be [20px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-bottom-width> from [thick\] to [15px\] at (-0.3) should be [2px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (0) should be [3px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [0px\] to [10px\] at (1.5) should be [15px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [unset\] to [20px\] at (0.6) should be [13.2px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -167,12 +128,6 @@
|
|||
[Web Animations: property <border-top-width> from [15px\] to [thick\] at (-2) should be [35px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [initial\] to [20px\] at (0.6) should be [13.2px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -182,9 +137,6 @@
|
|||
[Web Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Animations: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (1) should be [11px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -212,9 +164,6 @@
|
|||
[Web Animations: property <border-right-width> from [thin\] to [11px\] at (-0.3) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [medium\] to [13px\] at (0.6) should be [9px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -224,9 +173,6 @@
|
|||
[Web Animations: property <border-left-width> from [inherit\] to [20px\] at (1.5) should be [30px\]]
|
||||
expected: FAIL
|
||||
|
||||
[CSS Transitions with transition: all: property <border-width> from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]]
|
||||
expected: FAIL
|
||||
|
||||
[Web Animations: property <border-left-width> from [medium\] to [13px\] at (-2) should be [0px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -280,4 +226,3 @@
|
|||
|
||||
[Web Animations: property <border-left-width> from [unset\] to [23px\] at (1.5) should be [33px\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
[background-331.html]
|
||||
[background_initial_position]
|
||||
expected: FAIL
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
[background-332.html]
|
||||
[background_specified_position]
|
||||
expected: FAIL
|
|
@ -1,4 +0,0 @@
|
|||
[background-333.html]
|
||||
[background_specified_color_position]
|
||||
expected: FAIL
|
||||
|
|
@ -1,10 +1,4 @@
|
|||
[inheritance.sub.html]
|
||||
[Property background-position has initial value 0% 0%]
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position does not inherit]
|
||||
expected: FAIL
|
||||
|
||||
[Property border-bottom-width has initial value undefined]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -8,9 +8,6 @@
|
|||
[Property background-position-y value '-20%, 10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value '12px 13px, 50% 6px, 30px -10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-clip value 'border-box']
|
||||
expected: FAIL
|
||||
|
||||
|
@ -76,4 +73,3 @@
|
|||
|
||||
[Property background-position-x value '-20%, 10px']
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,88 +1,3 @@
|
|||
[background-position-computed.html]
|
||||
[Property background-position value 'center left']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'center right 7%']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value '12px 13px, 50% 6px, 30px -10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'bottom']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'right 11% bottom']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'right 9%']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'bottom 16% left']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value '5% top']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'left']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value '-2% -3%']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'calc(10px + 0.5em) calc(10px - 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'center 6px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'center center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'left bottom']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'right top 14%']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'left 10px center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'bottom center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'left 12px top 13px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'right center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'center top 8px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value '1px center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'bottom right 19%']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'calc(10px - 0.5em) calc(10px + 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'top 15px center']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value '1px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'top 17px right -18px']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'top left']
|
||||
expected: FAIL
|
||||
|
||||
[Property background-position value 'center bottom']
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
[border-color-computed.html]
|
||||
[Property border-color value 'red yellow currentcolor']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-color value 'red yellow']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-color value 'red yellow green blue']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-color value 'currentcolor']
|
||||
expected: FAIL
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
[border-radius-computed.html]
|
||||
[Property border-radius value '1px 2% 1px 1px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px 1px 2% 2%']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px 2% 3px 4%']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px 1px 1px 1px / 1px 1px 2% 1px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '5em / 1px 2% 3px 4%']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px 1px 1px 2% / 1px 2% 1px 2%']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px 2% 3px 4% / 5em']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px 2% 2% 2% / 1px 2% 3px 2%']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-radius value '1px']
|
||||
expected: FAIL
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
[border-style-computed.html]
|
||||
[Property border-style value 'hidden dotted dashed']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-style value 'inset outset']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-style value 'solid double groove ridge']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-style value 'none']
|
||||
expected: FAIL
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
[border-width-computed.html]
|
||||
[Property border-width value '1px 2px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-width value '1px 2px 3px 4px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-width value '1px 2px 3px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-width value '2px thin medium thick']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-width value '1px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-width value '0.5em']
|
||||
expected: FAIL
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
[flex-computed.html]
|
||||
[Property flex value '8 auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value '7% 8']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value 'calc(10px + 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value '1']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value '4 5 6px']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value '2 3']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value 'calc(10px - 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex value 'none']
|
||||
expected: FAIL
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
[flex-flow-computed.html]
|
||||
[Property flex-flow value 'column wrap-reverse']
|
||||
expected: FAIL
|
||||
|
||||
[Property flex-flow value 'row-reverse wrap']
|
||||
expected: FAIL
|
||||
|
|
@ -1,7 +1,4 @@
|
|||
[font-shorthand-serialization-prevention.html]
|
||||
[Setting font-family to sans-serif should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant to initial should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -26,47 +23,14 @@
|
|||
[Setting font-variant to none should prevent the font shorthand from serializing in specified style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant to small-caps should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant to all-small-caps should prevent the font shorthand from serializing in specified style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to initial should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to inherit should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to unset should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to revert should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to revert-layer should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to small-caps should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-variant-caps to all-small-caps should prevent the font shorthand from serializing in specified style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-stretch to initial should not prevent the font shorthand from serializing in computed style]
|
||||
[Setting font-variant to all-small-caps should prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-stretch to inherit should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-stretch to unset should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-stretch to revert should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-stretch to revert-layer should not prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
||||
[Setting font-stretch to normal should not prevent the font shorthand from serializing in computed style]
|
||||
[Setting font-variant-caps to all-small-caps should prevent the font shorthand from serializing in computed style]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,945 +0,0 @@
|
|||
[font-computed.html]
|
||||
[caption should be a supported system font.]
|
||||
expected: FAIL
|
||||
|
||||
[icon should be a supported system font.]
|
||||
expected: FAIL
|
||||
|
||||
[menu should be a supported system font.]
|
||||
expected: FAIL
|
||||
|
||||
[message-box should be a supported system font.]
|
||||
expected: FAIL
|
||||
|
||||
[small-caption should be a supported system font.]
|
||||
expected: FAIL
|
||||
|
||||
[status-bar should be a supported system font.]
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'xx-small serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal medium/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal xx-large/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal normal larger/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal normal normal smaller monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal normal italic 10px/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal normal small-caps 20%/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal normal bold calc(30% - 40px)/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal normal ultra-condensed xx-small sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal italic medium/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal italic normal xx-large/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal italic small-caps larger/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal italic bolder smaller Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal italic extra-condensed 10px/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal small-caps 20%/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal small-caps normal calc(30% - 40px)/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal small-caps italic xx-small cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal small-caps lighter medium/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal small-caps condensed xx-large/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal 100 larger/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal 900 normal smaller "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal bold italic 10px/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal bolder small-caps 20%/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal lighter semi-condensed calc(30% - 40px)/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal semi-expanded xx-small fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal expanded normal medium/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal extra-expanded italic xx-large/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal ultra-expanded small-caps larger/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal normal ultra-condensed 100 smaller serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic 10px/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic normal 20%/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic normal normal calc(30% - 40px)/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic normal small-caps xx-small monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic normal 900 medium/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic normal extra-condensed xx-large/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic small-caps larger/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic small-caps normal smaller sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic small-caps bold 10px/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic small-caps condensed 20%/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic bolder calc(30% - 40px)/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic lighter normal xx-small Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic 100 small-caps medium/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic 900 semi-condensed xx-large/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic semi-expanded larger/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic expanded normal smaller cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic extra-expanded small-caps 10px/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal italic ultra-expanded bold 20%/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps calc(30% - 40px)/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps normal xx-small "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps normal normal medium/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps normal italic xx-large/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps normal bolder larger/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps normal ultra-condensed smaller fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps italic 10px/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps italic normal 20%/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps italic lighter calc(30% - 40px)/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps italic extra-condensed xx-small serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps 100 medium/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps 900 normal xx-large/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps bold italic larger/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps bolder condensed smaller monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps semi-condensed 10px/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps semi-expanded normal 20%/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps expanded italic calc(30% - 40px)/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal small-caps extra-expanded lighter xx-small sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 100 medium/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 900 normal xx-large/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bold normal normal larger/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bolder normal italic smaller Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal lighter normal small-caps 10px/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 100 normal ultra-expanded 20%/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 900 italic calc(30% - 40px)/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bold italic normal xx-small cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bolder italic small-caps medium/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal lighter italic ultra-condensed xx-large/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 100 small-caps larger/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 900 small-caps normal smaller "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bold small-caps italic 10px/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bolder small-caps extra-condensed 20%/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal lighter condensed calc(30% - 40px)/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 100 semi-condensed normal xx-small fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal 900 semi-expanded italic medium/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal bold expanded small-caps xx-large/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal extra-expanded larger/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal ultra-expanded normal smaller serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal ultra-condensed normal normal 10px/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal extra-condensed normal italic 20%/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal condensed normal small-caps calc(30% - 40px)/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal semi-condensed normal bolder xx-small monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal semi-expanded italic medium/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal expanded italic normal xx-large/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal extra-expanded italic small-caps larger/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal ultra-expanded italic lighter smaller sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal ultra-condensed small-caps 10px/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal extra-condensed small-caps normal 20%/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal condensed small-caps italic calc(30% - 40px)/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal semi-condensed small-caps 100 xx-small Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal semi-expanded 900 medium/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal expanded bold normal xx-large/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal extra-expanded bolder italic larger/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'normal ultra-expanded lighter small-caps smaller cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic 10px/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal 20%/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal normal calc(30% - 40px)/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal normal normal xx-small "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal normal small-caps medium/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal normal 100 xx-large/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal normal ultra-condensed larger/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal small-caps smaller fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal small-caps normal 10px/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal small-caps 900 20%/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal small-caps extra-condensed calc(30% - 40px)/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal bold xx-small serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal bolder normal medium/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal lighter small-caps xx-large/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal 100 condensed larger/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal semi-condensed smaller monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal semi-expanded normal 10px/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal expanded small-caps 20%/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic normal extra-expanded 900 calc(30% - 40px)/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps xx-small sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps normal medium/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps normal normal xx-large/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps normal bold larger/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps normal ultra-expanded smaller Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps bolder 10px/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps lighter normal 20%/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps 100 ultra-condensed calc(30% - 40px)/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps extra-condensed xx-small cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps condensed normal medium/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic small-caps semi-condensed 900 xx-large/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic bold larger/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic bolder normal smaller "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic lighter normal normal 10px/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic 100 normal small-caps 20%/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic 900 normal semi-expanded calc(30% - 40px)/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic bold small-caps xx-small fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic bolder small-caps normal medium/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic lighter small-caps expanded xx-large/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic 100 extra-expanded larger/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic 900 ultra-expanded normal smaller serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic bold ultra-condensed small-caps 10px/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic extra-condensed 20%/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic condensed normal calc(30% - 40px)/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic semi-condensed normal normal xx-small monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic semi-expanded normal small-caps medium/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic expanded normal bolder xx-large/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic extra-expanded small-caps larger/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic ultra-expanded small-caps normal smaller sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic ultra-condensed small-caps lighter 10px/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic extra-condensed 100 20%/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic condensed 900 normal calc(30% - 40px)/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'italic semi-condensed bold small-caps xx-small Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps medium/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal xx-large/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal normal larger/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal normal normal smaller cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal normal italic 10px/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal normal bolder 20%/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal normal semi-expanded calc(30% - 40px)/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal italic xx-small "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal italic normal medium/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal italic lighter xx-large/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal italic expanded larger/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal 100 smaller fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal 900 normal 10px/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal bold italic 20%/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal bolder extra-expanded calc(30% - 40px)/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal ultra-expanded xx-small serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal ultra-condensed normal medium/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal extra-condensed italic xx-large/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps normal condensed lighter larger/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic smaller monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic normal 10px/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic normal normal 20%/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic normal 100 calc(30% - 40px)/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic normal semi-condensed xx-small sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic 900 medium/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic bold normal xx-large/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic bolder semi-expanded larger/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic expanded smaller Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic extra-expanded normal 10px/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps italic ultra-expanded lighter 20%/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps 100 calc(30% - 40px)/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps 900 normal xx-small cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps bold normal normal medium/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps bolder normal italic xx-large/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps lighter normal ultra-condensed larger/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps 100 italic smaller "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps 900 italic normal 10px/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps bold italic extra-condensed 20%/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps bolder condensed calc(30% - 40px)/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps lighter semi-condensed normal xx-small fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps 100 semi-expanded italic medium/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps expanded xx-large/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps extra-expanded normal larger/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps ultra-expanded normal normal smaller serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps ultra-condensed normal italic 10px/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps extra-condensed normal 900 20%/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps condensed italic calc(30% - 40px)/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps semi-condensed italic normal xx-small monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps semi-expanded italic bold medium/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps expanded bolder xx-large/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps extra-expanded lighter normal larger/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'small-caps ultra-expanded 100 italic smaller sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 10px/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold normal 20%/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder normal normal calc(30% - 40px)/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter normal normal normal xx-small Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 normal normal italic medium/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 normal normal small-caps xx-large/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold normal normal ultra-condensed larger/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder normal italic smaller cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter normal italic normal 10px/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 normal italic small-caps 20%/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 normal italic extra-condensed calc(30% - 40px)/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold normal small-caps xx-small "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder normal small-caps normal medium/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter normal small-caps italic xx-large/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 normal small-caps condensed larger/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 normal semi-condensed smaller fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold normal semi-expanded normal 10px/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder normal expanded italic 20%/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter normal extra-expanded small-caps calc(30% - 40px)/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 italic xx-small serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 italic normal medium/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold italic normal normal xx-large/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder italic normal small-caps larger/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter italic normal ultra-expanded smaller monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 italic small-caps 10px/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 italic small-caps normal 20%/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold italic small-caps ultra-condensed calc(30% - 40px)/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder italic extra-condensed xx-small sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter italic condensed normal medium/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 italic semi-condensed small-caps xx-large/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 small-caps larger/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold small-caps normal smaller Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder small-caps normal normal 10px/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter small-caps normal italic 20%/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 small-caps normal semi-expanded calc(30% - 40px)/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 small-caps italic xx-small cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold small-caps italic normal medium/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder small-caps italic expanded xx-large/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter small-caps extra-expanded larger/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 small-caps ultra-expanded normal smaller "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 small-caps ultra-condensed italic 10px/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold extra-condensed 20%/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder condensed normal calc(30% - 40px)/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter semi-condensed normal normal xx-small fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 semi-expanded normal italic medium/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 expanded normal small-caps xx-large/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold extra-expanded italic larger/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bolder ultra-expanded italic normal smaller serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'lighter ultra-condensed italic small-caps 10px/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '100 extra-condensed small-caps 20%/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value '900 condensed small-caps normal calc(30% - 40px)/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'bold semi-condensed small-caps italic xx-small monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded medium/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded normal xx-large/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded normal normal larger/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded normal normal normal smaller sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-condensed normal normal italic 10px/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-condensed normal normal small-caps 20%/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'condensed normal normal bolder calc(30% - 40px)/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-condensed normal italic xx-small Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded normal italic normal medium/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded normal italic small-caps xx-large/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded normal italic lighter larger/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded normal small-caps smaller cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-condensed normal small-caps normal 10px/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-condensed normal small-caps italic 20%/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'condensed normal small-caps 100 calc(30% - 40px)/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-condensed normal 900 xx-small "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded normal bold normal medium/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded normal bolder italic xx-large/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded normal lighter small-caps larger/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded italic smaller fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-condensed italic normal 10px/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-condensed italic normal normal 20%/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'condensed italic normal small-caps calc(30% - 40px)/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-condensed italic normal 100 xx-small serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded italic small-caps medium/normal sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded italic small-caps normal xx-large/1.2 cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded italic small-caps 900 larger/calc(120% + 1.2em) fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded italic bold smaller monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-condensed italic bolder normal 10px/normal Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-condensed italic lighter small-caps 20%/1.2 "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'condensed small-caps calc(30% - 40px)/calc(120% + 1.2em) serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-condensed small-caps normal xx-small sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded small-caps normal normal medium/normal cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded small-caps normal italic xx-large/1.2 fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded small-caps normal 100 larger/calc(120% + 1.2em) monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded small-caps italic smaller Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-condensed small-caps italic normal 10px/normal "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-condensed small-caps italic 900 20%/1.2 serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'condensed small-caps bold calc(30% - 40px)/calc(120% + 1.2em) sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-condensed small-caps bolder normal xx-small cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded small-caps lighter italic medium/normal fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded 100 xx-large/1.2 monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded 900 normal larger/calc(120% + 1.2em) Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded bold normal normal smaller "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-condensed bolder normal italic 10px/normal serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-condensed lighter normal small-caps 20%/1.2 sans-serif']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'condensed 100 italic calc(30% - 40px)/calc(120% + 1.2em) cursive']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-condensed 900 italic normal xx-small fantasy']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'semi-expanded bold italic small-caps medium/normal monospace']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'expanded bolder small-caps xx-large/1.2 Menu']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'extra-expanded lighter small-caps normal larger/calc(120% + 1.2em) "Non-Generic Example Family Name"']
|
||||
expected: FAIL
|
||||
|
||||
[Property font value 'ultra-expanded 100 small-caps italic smaller serif']
|
||||
expected: FAIL
|
|
@ -1,13 +1,4 @@
|
|||
[logical-box-border-color.html]
|
||||
[Test that border-inline-color shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-block-color shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-color shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical border-*-color properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,31 +1,7 @@
|
|||
[logical-box-border-shorthands.html]
|
||||
[Test that border-inline shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-block shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical border-* properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: ltr; '.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-* shorthands set the computed value of both logical and physical longhands, with 'writing-mode: horizontal-tb; direction: ltr; '.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-* properties honor order of appearance when both logical and physical associates are declared, with 'writing-mode: horizontal-tb; direction: ltr; '.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-* properties honor selector specificty when both logical and physical associates are declared, with 'writing-mode: horizontal-tb; direction: ltr; '.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical border-* properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-* shorthands set the computed value of both logical and physical longhands, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-* properties honor order of appearance when both logical and physical associates are declared, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[logical-box-border-style.html]
|
||||
[Test that border-inline-style shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-block-style shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-style shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical border-*-style properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[logical-box-border-width.html]
|
||||
[Test that border-inline-width shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-block-width shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that border-width shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical border-*-width properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[logical-box-inset.html]
|
||||
[Test that inset-inline shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that inset-block shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that inset shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical inset-* properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[logical-box-margin.html]
|
||||
[Test that margin-inline shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that margin-block shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that margin shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical margin-* properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
[logical-box-padding.html]
|
||||
[Test that padding-inline shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that padding-block shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that padding shorthand sets longhands and serializes correctly.]
|
||||
expected: FAIL
|
||||
|
||||
[Test that logical padding-* properties share computed values with their physical associates, with 'writing-mode: horizontal-tb; direction: rtl; '.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
[logicalprops-with-variables.html]
|
||||
[Logical longhands with variables - margin-inline]
|
||||
expected: FAIL
|
||||
|
||||
[Logical shorthand with 1 variable - margin-inline]
|
||||
expected: FAIL
|
||||
|
||||
[Logical shorthand with 2 variables - margin-inline]
|
||||
expected: FAIL
|
||||
|
||||
[Logical shorthand with 1 variable and 1 length - margin-inline]
|
||||
expected: FAIL
|
|
@ -1,12 +0,0 @@
|
|||
[border-block-color-computed.html]
|
||||
[Property border-block-color value 'rgb(34, 51, 68)']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-color value 'transparent rgb(2, 3, 4)']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-color value 'rgb(2, 3, 4) rgb(2, 3, 4)']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-color value 'currentcolor lime']
|
||||
expected: FAIL
|
|
@ -1,9 +0,0 @@
|
|||
[border-block-style-computed.html]
|
||||
[Property border-block-style value 'dotted']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-style value 'double groove']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-style value 'hidden hidden']
|
||||
expected: FAIL
|
|
@ -1,12 +0,0 @@
|
|||
[border-block-width-computed.html]
|
||||
[Property border-block-width value '10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-width value '10px 20px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-block-width value '10px 10px']
|
||||
expected: FAIL
|
||||
|
||||
[width is zero if the border block style is none or hidden]
|
||||
expected: FAIL
|
|
@ -1,12 +0,0 @@
|
|||
[border-inline-color-computed.html]
|
||||
[Property border-inline-color value 'rgb(34, 51, 68)']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-color value 'transparent rgb(2, 3, 4)']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-color value 'rgb(2, 3, 4) rgb(2, 3, 4)']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-color value 'currentcolor lime']
|
||||
expected: FAIL
|
|
@ -1,9 +0,0 @@
|
|||
[border-inline-style-computed.html]
|
||||
[Property border-inline-style value 'dotted']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-style value 'double groove']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-style value 'hidden hidden']
|
||||
expected: FAIL
|
|
@ -1,12 +0,0 @@
|
|||
[border-inline-width-computed.html]
|
||||
[Property border-inline-width value '10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-width value '10px 20px']
|
||||
expected: FAIL
|
||||
|
||||
[Property border-inline-width value '10px 10px']
|
||||
expected: FAIL
|
||||
|
||||
[width is zero if the border block style is none or hidden]
|
||||
expected: FAIL
|
|
@ -1,24 +0,0 @@
|
|||
[inset-block-inline-computed.html]
|
||||
[Property inset-block value 'auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-block value '-10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-block value 'calc(10px - 0.5em) -20%']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-block value 'auto auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-inline value '-20%']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-inline value 'calc(10px - 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-inline value '-10px auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset-inline value 'auto calc(10px + 0.5em)']
|
||||
expected: FAIL
|
|
@ -1,24 +0,0 @@
|
|||
[inset-computed.html]
|
||||
[Property inset value 'auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value '-10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value 'calc(10px - 0.5em) -20%']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value 'auto auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value '10px calc(10px - 0.5em) -30px']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value 'auto auto auto']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value '10px 20px auto -30px']
|
||||
expected: FAIL
|
||||
|
||||
[Property inset value 'auto auto auto auto']
|
||||
expected: FAIL
|
|
@ -7,15 +7,3 @@
|
|||
|
||||
[Property margin-inline-end value 'calc(10% + 40px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property margin-block value '10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property margin-block value '10px 20px']
|
||||
expected: FAIL
|
||||
|
||||
[Property margin-inline value '30px']
|
||||
expected: FAIL
|
||||
|
||||
[Property margin-inline value '30px 40px']
|
||||
expected: FAIL
|
||||
|
|
|
@ -13,15 +13,3 @@
|
|||
|
||||
[Property padding-inline-end value 'calc(10% + 40px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property padding-block value '10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property padding-block value '10px 20px']
|
||||
expected: FAIL
|
||||
|
||||
[Property padding-inline value '30px']
|
||||
expected: FAIL
|
||||
|
||||
[Property padding-inline value '30px 40px']
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
[overlay-transition-property.html]
|
||||
[Property transition value 'overlay 1s']
|
||||
expected: FAIL
|
|
@ -14,9 +14,6 @@
|
|||
[Property transition value 'cubic-bezier(0, -2, 1, 3)']
|
||||
expected: FAIL
|
||||
|
||||
[Property transition value '1s -3s cubic-bezier(0, -2, 1, 3) top']
|
||||
expected: FAIL
|
||||
|
||||
[Property transition value 'top']
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
[calc-background-position-002.html]
|
||||
[testing background-position: calc(2px + 3px) calc(4px + 5px)]
|
||||
expected: FAIL
|
||||
|
||||
[testing background-position: calc(18px - 7px) calc(19px - 7px)]
|
||||
expected: FAIL
|
||||
|
||||
[testing background-position: calc(4 * 5px) calc(6px * 4)]
|
||||
expected: FAIL
|
||||
|
||||
[testing background-position: calc(100px / 4) calc(119px / 7)]
|
||||
expected: FAIL
|
||||
|
||||
[testing background-position: calc(6px + 21%) calc(7em + 22%)]
|
||||
expected: FAIL
|
||||
|
||||
[testing background-position: calc(-8px + 23%) calc(-9em + 24%)]
|
||||
expected: FAIL
|
|
@ -1,6 +1,3 @@
|
|||
[getComputedStyle-border-radius-001.html]
|
||||
[testing border-radius shorthand]
|
||||
expected: FAIL
|
||||
|
||||
[testing border-radius: calc(25% + 10px) calc(25% + 16px) 25% 25px / calc(25% + 20px) calc(25% + 16px) 25% 25px]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[getComputedStyle-border-radius-003.html]
|
||||
[testing border-radius shorthand]
|
||||
expected: FAIL
|
||||
|
||||
[testing border-radius: calc(1% + 1px) calc(2% + 2px) calc(3% + 3px) calc(4% + 4px) / calc(5% + 5px) calc(6% + 6px) calc(7% + 7px) calc(8% + 8px)]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
[getComputedStyle-calc-mixed-units-001.html]
|
||||
[testing background-position: calc(100% - 100% + 20em)]
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[minmax-percentage-serialize.html]
|
||||
['min(1%, 2%, 3%) 0px' as a computed value should serialize as 'min(1%, 2%, 3%) 0px'.]
|
||||
expected: FAIL
|
|
@ -1,6 +1,3 @@
|
|||
[revert-in-fallback.html]
|
||||
[var(--unknown, revert) in custom property]
|
||||
expected: FAIL
|
||||
|
||||
[var(--unknown, revert-layer) in shorthand observed via longhand]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[revert-layer-in-fallback.html]
|
||||
[var(--unknown, revert-layer) in custom property]
|
||||
expected: FAIL
|
||||
|
||||
[var(--unknown, revert-layer) in shorthand]
|
||||
expected: FAIL
|
||||
|
|
|
@ -62,9 +62,6 @@
|
|||
[Testing 'lighting-color'.]
|
||||
expected: FAIL
|
||||
|
||||
[Testing 'overflow'.]
|
||||
expected: FAIL
|
||||
|
||||
[Testing 'pointer-events'.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
[variable-substitution-background-properties.html]
|
||||
[background-position]
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[supports.html]
|
||||
[Sanity check @supports length]
|
||||
expected: FAIL
|
Loading…
Add table
Add a link
Reference in a new issue