diff --git a/components/layout_2020/query.rs b/components/layout_2020/query.rs index dc0a57656e1..05ea42d5ab7 100644 --- a/components/layout_2020/query.rs +++ b/components/layout_2020/query.rs @@ -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>, diff --git a/tests/wpt/meta/css/css-animations/computed-style-animation-parsing.html.ini b/tests/wpt/meta/css/css-animations/computed-style-animation-parsing.html.ini deleted file mode 100644 index 49e2a9a3d47..00000000000 --- a/tests/wpt/meta/css/css-animations/computed-style-animation-parsing.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-animations/parsing/animation-computed.html.ini b/tests/wpt/meta/css/css-animations/parsing/animation-computed.html.ini index 0daa0527645..37c6d0b9244 100644 --- a/tests/wpt/meta/css/css-animations/parsing/animation-computed.html.ini +++ b/tests/wpt/meta/css/css-animations/parsing/animation-computed.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-backgrounds/animations/background-position-interpolation.html.ini b/tests/wpt/meta/css/css-backgrounds/animations/background-position-interpolation.html.ini index b347e14ab73..0c855136658 100644 --- a/tests/wpt/meta/css/css-backgrounds/animations/background-position-interpolation.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/animations/background-position-interpolation.html.ini @@ -146,3 +146,128 @@ [Web Animations: property 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 diff --git a/tests/wpt/meta/css/css-backgrounds/animations/border-color-interpolation.html.ini b/tests/wpt/meta/css/css-backgrounds/animations/border-color-interpolation.html.ini index 38b80713fcf..61b13571e1b 100644 --- a/tests/wpt/meta/css/css-backgrounds/animations/border-color-interpolation.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/animations/border-color-interpolation.html.ini @@ -1,13 +1,7 @@ [border-color-interpolation.html] - [CSS Animations: property 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 from [unset\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property 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 from [white\] to [orange\] at (-0.3) should be [white\]] expected: FAIL @@ -17,21 +11,12 @@ [Web Animations: property from [inherit\] to [orange\] at (0) should be [rgb(255, 255, 255)\]] expected: FAIL - [CSS Animations: property 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 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 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 from [initial\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] expected: FAIL - [CSS Transitions: property 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 from [inherit\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] expected: FAIL @@ -53,9 +38,6 @@ [Web Animations: property from [unset\] to [orange\] at (-0.3) should be [rgb(0, 0, 0)\]] expected: FAIL - [CSS Transitions: property 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 from [inherit\] to [orange\] at (1) should be [rgb(255, 165, 0)\]] expected: FAIL @@ -77,12 +59,6 @@ [Web Animations: property from [unset\] to [orange\] at (1) should be [rgb(255, 165, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property 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 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 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 from neutral to [orange\] at (1.5) should be [rgb(255, 248, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property 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 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 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 from neutral to [orange\] at (0.6) should be [rgb(153, 99, 56)\]] expected: FAIL - [CSS Transitions: property 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 from neutral to [orange\] at (-0.3) should be [rgb(0, 0, 181)\]] expected: FAIL - [CSS Animations: property 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 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 from [white\] to [orange\] at (0.6) should be [rgb(255, 201, 102)\]] expected: FAIL [Web Animations: property from [white\] to [orange\] at (1.5) should be [rgb(255, 120, 0)\]] expected: FAIL - [CSS Transitions with transition: all: property 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 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 from [unset\] to [orange\] at (0.3) should be [rgb(77, 50, 0)\]] expected: FAIL [Web Animations: property 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 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 from [initial\] to [orange\] at (0) should be [rgb(0, 0, 0)\]] expected: FAIL - [CSS Transitions: property 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 from [white\] to [orange\] at (0.3) should be [rgb(255, 228, 179)\]] expected: FAIL - diff --git a/tests/wpt/meta/css/css-backgrounds/animations/border-radius-interpolation.html.ini b/tests/wpt/meta/css/css-backgrounds/animations/border-radius-interpolation.html.ini index 9f658ccc9d6..f48880c0e23 100644 --- a/tests/wpt/meta/css/css-backgrounds/animations/border-radius-interpolation.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/animations/border-radius-interpolation.html.ini @@ -2,9 +2,6 @@ [Web Animations: property from [20px\] to [10px 30px\] at (-0.3) should be [23px 17px\]] expected: FAIL - [CSS Transitions with transition: all: property 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 from neutral to [20px\] at (0.3) should be [13px\]] expected: FAIL @@ -23,27 +20,12 @@ [Web Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] expected: FAIL - [CSS Transitions with transition: all: property 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 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 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 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 from [10px\] to [50px\] at (0.6) should be [34px\]] expected: FAIL [Web Animations: property from [inherit\] to [20px\] at (0.3) should be [27px\]] expected: FAIL - [CSS Transitions with transition: all: property 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 from [unset\] to [20px\] at (0) should be [0px\]] expected: FAIL @@ -77,9 +59,6 @@ [Web Animations: property from [unset\] to [20px\] at (1.5) should be [30px\]] expected: FAIL - [CSS Transitions: property 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 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 from [10px\] to [100%\] at (0) should be [calc(10px + 0%)\]] expected: FAIL - [CSS Transitions: property 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 from [10px\] to [100%\] at (0.3) should be [calc(7px + 30%)\]] expected: FAIL [Web Animations: property from neutral to [20px\] at (1.5) should be [25px\]] expected: FAIL - [CSS Animations: property 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 from [20px\] to [10px 30px\] at (1.5) should be [5px 35px\]] expected: FAIL [Web Animations: property from [initial\] to [20px\] at (-0.3) should be [0px\]] expected: FAIL - [CSS Transitions with transition: all: property 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 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 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 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 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 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 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 from [20px\] to [10px 30px\] at (-2) should be [40px 0px\]] expected: FAIL - [CSS Transitions: property 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 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 from neutral to [20px\] at (1) should be [20px\]] expected: FAIL @@ -155,9 +107,6 @@ [Web Animations: property from [10px\] to [50px\] at (0) should be [10px\]] expected: FAIL - [CSS Transitions: property 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 from [10px\] to [100%\] at (1) should be [100%\]] expected: FAIL @@ -167,9 +116,6 @@ [Web Animations: property from [initial\] to [20px\] at (0.6) should be [12px\]] expected: FAIL - [CSS Animations: property 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 from [initial\] to [20px\] at (0) should be [0px\]] expected: FAIL @@ -199,4 +145,3 @@ [Web Animations: property from [unset\] to [20px\] at (0.3) should be [6px\]] expected: FAIL - diff --git a/tests/wpt/meta/css/css-backgrounds/animations/border-width-interpolation.html.ini b/tests/wpt/meta/css/css-backgrounds/animations/border-width-interpolation.html.ini index e15c194d104..84e17d198db 100644 --- a/tests/wpt/meta/css/css-backgrounds/animations/border-width-interpolation.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/animations/border-width-interpolation.html.ini @@ -2,15 +2,9 @@ [Web Animations: property from [unset\] to [20px\] at (0.3) should be [8.1px\]] expected: FAIL - [CSS Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]] - expected: FAIL - [Web Animations: property from [thin\] to [11px\] at (0.6) should be [7px\]] expected: FAIL - [CSS Transitions: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]] - expected: FAIL - [Web Animations: property from neutral to [20px\] at (1) should be [20px\]] expected: FAIL @@ -20,9 +14,6 @@ [Web Animations: property from [thick\] to [15px\] at (1) should be [15px\]] expected: FAIL - [CSS Transitions with transition: all: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]] - expected: FAIL - [Web Animations: property from [medium\] to [13px\] at (1) should be [13px\]] expected: FAIL @@ -50,18 +41,6 @@ [Web Animations: property from neutral to [20px\] at (0.3) should be [13px\]] expected: FAIL - [CSS Transitions with transition: all: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]] - expected: FAIL - - [CSS Animations: property 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 from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]] - expected: FAIL - - [CSS Transitions: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]] - expected: FAIL - [Web Animations: property from [thin\] to [11px\] at (1.5) should be [16px\]] expected: FAIL @@ -71,9 +50,6 @@ [Web Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]] expected: FAIL - [CSS Transitions: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]] - expected: FAIL - [Web Animations: property from [unset\] to [20px\] at (1.5) should be [28.5px\]] expected: FAIL @@ -89,18 +65,12 @@ [Web Animations: property from [unset\] to [20px\] at (-0.3) should be [0px\]] expected: FAIL - [CSS Transitions: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1.5) should be [35px 55px 75px 95px\]] - expected: FAIL - [Web Animations: property from [initial\] to [20px\] at (0.3) should be [8.1px\]] expected: FAIL [Web Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]] expected: FAIL - [CSS Transitions: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.3) should be [23px 43px 63px 83px\]] - expected: FAIL - [Web Animations: property from [inherit\] to [20px\] at (-0.3) should be [0px\]] expected: FAIL @@ -125,27 +95,18 @@ [Web Animations: property from [thick\] to [15px\] at (1.5) should be [20px\]] expected: FAIL - [CSS Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]] - expected: FAIL - [Web Animations: property from [inherit\] to [20px\] at (1) should be [20px\]] expected: FAIL [Web Animations: property from [thick\] to [15px\] at (-0.3) should be [2px\]] expected: FAIL - [CSS Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]] - expected: FAIL - [Web Animations: property from [unset\] to [20px\] at (0) should be [3px\]] expected: FAIL [Web Animations: property from [0px\] to [10px\] at (1.5) should be [15px\]] expected: FAIL - [CSS Transitions: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]] - expected: FAIL - [Web Animations: property from [unset\] to [20px\] at (0.6) should be [13.2px\]] expected: FAIL @@ -167,12 +128,6 @@ [Web Animations: property from [15px\] to [thick\] at (-2) should be [35px\]] expected: FAIL - [CSS Animations: property 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 from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0.6) should be [26px 46px 66px 86px\]] - expected: FAIL - [Web Animations: property from [initial\] to [20px\] at (0.6) should be [13.2px\]] expected: FAIL @@ -182,9 +137,6 @@ [Web Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]] expected: FAIL - [CSS Animations: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (1) should be [30px 50px 70px 90px\]] - expected: FAIL - [Web Animations: property from [thin\] to [11px\] at (1) should be [11px\]] expected: FAIL @@ -212,9 +164,6 @@ [Web Animations: property from [thin\] to [11px\] at (-0.3) should be [0px\]] expected: FAIL - [CSS Transitions with transition: all: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (0) should be [20px 40px 60px 80px\]] - expected: FAIL - [Web Animations: property from [medium\] to [13px\] at (0.6) should be [9px\]] expected: FAIL @@ -224,9 +173,6 @@ [Web Animations: property from [inherit\] to [20px\] at (1.5) should be [30px\]] expected: FAIL - [CSS Transitions with transition: all: property from [20px 40px 60px 80px\] to [30px 50px 70px 90px\] at (-0.3) should be [17px 37px 57px 77px\]] - expected: FAIL - [Web Animations: property from [medium\] to [13px\] at (-2) should be [0px\]] expected: FAIL @@ -280,4 +226,3 @@ [Web Animations: property from [unset\] to [23px\] at (1.5) should be [33px\]] expected: FAIL - diff --git a/tests/wpt/meta/css/css-backgrounds/background-331.html.ini b/tests/wpt/meta/css/css-backgrounds/background-331.html.ini deleted file mode 100644 index 4155e7b6240..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/background-331.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[background-331.html] - [background_initial_position] - expected: FAIL - diff --git a/tests/wpt/meta/css/css-backgrounds/background-332.html.ini b/tests/wpt/meta/css/css-backgrounds/background-332.html.ini deleted file mode 100644 index 96d6f191823..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/background-332.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[background-332.html] - [background_specified_position] - expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/background-333.html.ini b/tests/wpt/meta/css/css-backgrounds/background-333.html.ini deleted file mode 100644 index 03119a1bcaf..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/background-333.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[background-333.html] - [background_specified_color_position] - expected: FAIL - diff --git a/tests/wpt/meta/css/css-backgrounds/inheritance.sub.html.ini b/tests/wpt/meta/css/css-backgrounds/inheritance.sub.html.ini index e9b7b489ca6..e8291af54a7 100644 --- a/tests/wpt/meta/css/css-backgrounds/inheritance.sub.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/inheritance.sub.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-backgrounds/parsing/background-computed.html.ini b/tests/wpt/meta/css/css-backgrounds/parsing/background-computed.html.ini index 7871535e0b6..736cd6a79c2 100644 --- a/tests/wpt/meta/css/css-backgrounds/parsing/background-computed.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/parsing/background-computed.html.ini @@ -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 - diff --git a/tests/wpt/meta/css/css-backgrounds/parsing/background-position-computed.html.ini b/tests/wpt/meta/css/css-backgrounds/parsing/background-position-computed.html.ini index 49781313b41..f033ef48041 100644 --- a/tests/wpt/meta/css/css-backgrounds/parsing/background-position-computed.html.ini +++ b/tests/wpt/meta/css/css-backgrounds/parsing/background-position-computed.html.ini @@ -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 - diff --git a/tests/wpt/meta/css/css-backgrounds/parsing/border-color-computed.html.ini b/tests/wpt/meta/css/css-backgrounds/parsing/border-color-computed.html.ini deleted file mode 100644 index e0c9550c74d..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/parsing/border-color-computed.html.ini +++ /dev/null @@ -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 - diff --git a/tests/wpt/meta/css/css-backgrounds/parsing/border-radius-computed.html.ini b/tests/wpt/meta/css/css-backgrounds/parsing/border-radius-computed.html.ini deleted file mode 100644 index f49dc0aef8e..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/parsing/border-radius-computed.html.ini +++ /dev/null @@ -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 - diff --git a/tests/wpt/meta/css/css-backgrounds/parsing/border-style-computed.html.ini b/tests/wpt/meta/css/css-backgrounds/parsing/border-style-computed.html.ini deleted file mode 100644 index d64fc579c5f..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/parsing/border-style-computed.html.ini +++ /dev/null @@ -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 - diff --git a/tests/wpt/meta/css/css-backgrounds/parsing/border-width-computed.html.ini b/tests/wpt/meta/css/css-backgrounds/parsing/border-width-computed.html.ini deleted file mode 100644 index 17e8d1c80cc..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/parsing/border-width-computed.html.ini +++ /dev/null @@ -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 - diff --git a/tests/wpt/meta/css/css-flexbox/parsing/flex-computed.html.ini b/tests/wpt/meta/css/css-flexbox/parsing/flex-computed.html.ini deleted file mode 100644 index 83d57e4b78a..00000000000 --- a/tests/wpt/meta/css/css-flexbox/parsing/flex-computed.html.ini +++ /dev/null @@ -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 - diff --git a/tests/wpt/meta/css/css-flexbox/parsing/flex-flow-computed.html.ini b/tests/wpt/meta/css/css-flexbox/parsing/flex-flow-computed.html.ini deleted file mode 100644 index 856866aab3b..00000000000 --- a/tests/wpt/meta/css/css-flexbox/parsing/flex-flow-computed.html.ini +++ /dev/null @@ -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 - diff --git a/tests/wpt/meta/css/css-fonts/font-shorthand-serialization-prevention.html.ini b/tests/wpt/meta/css/css-fonts/font-shorthand-serialization-prevention.html.ini index e643ffb8ba8..b18640ea492 100644 --- a/tests/wpt/meta/css/css-fonts/font-shorthand-serialization-prevention.html.ini +++ b/tests/wpt/meta/css/css-fonts/font-shorthand-serialization-prevention.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-fonts/parsing/font-computed.html.ini b/tests/wpt/meta/css/css-fonts/parsing/font-computed.html.ini deleted file mode 100644 index e80345ba0c2..00000000000 --- a/tests/wpt/meta/css/css-fonts/parsing/font-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-border-color.html.ini b/tests/wpt/meta/css/css-logical/logical-box-border-color.html.ini index e791865693d..7061e71e7ca 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-border-color.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-border-color.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-border-shorthands.html.ini b/tests/wpt/meta/css/css-logical/logical-box-border-shorthands.html.ini index fe647e08ad2..bb9d4ef0bb1 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-border-shorthands.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-border-shorthands.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-border-style.html.ini b/tests/wpt/meta/css/css-logical/logical-box-border-style.html.ini index 0b51ca11cbb..5c7eb1b17fd 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-border-style.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-border-style.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-border-width.html.ini b/tests/wpt/meta/css/css-logical/logical-box-border-width.html.ini index 04b66fad827..85a1e4591d8 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-border-width.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-border-width.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-inset.html.ini b/tests/wpt/meta/css/css-logical/logical-box-inset.html.ini index f82ae9f5a4a..af078f0ce27 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-inset.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-inset.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-margin.html.ini b/tests/wpt/meta/css/css-logical/logical-box-margin.html.ini index ec828a4f259..a994ad13a39 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-margin.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-margin.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logical-box-padding.html.ini b/tests/wpt/meta/css/css-logical/logical-box-padding.html.ini index df311010f8f..eda5bee95ae 100644 --- a/tests/wpt/meta/css/css-logical/logical-box-padding.html.ini +++ b/tests/wpt/meta/css/css-logical/logical-box-padding.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/logicalprops-with-variables.html.ini b/tests/wpt/meta/css/css-logical/logicalprops-with-variables.html.ini deleted file mode 100644 index d84c086cefe..00000000000 --- a/tests/wpt/meta/css/css-logical/logicalprops-with-variables.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/border-block-color-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/border-block-color-computed.html.ini deleted file mode 100644 index 3e897be7d77..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/border-block-color-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/border-block-style-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/border-block-style-computed.html.ini deleted file mode 100644 index babe848293d..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/border-block-style-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/border-block-width-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/border-block-width-computed.html.ini deleted file mode 100644 index 2a39c280549..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/border-block-width-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/border-inline-color-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/border-inline-color-computed.html.ini deleted file mode 100644 index bd9cc3d0d08..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/border-inline-color-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/border-inline-style-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/border-inline-style-computed.html.ini deleted file mode 100644 index 49224803664..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/border-inline-style-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/border-inline-width-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/border-inline-width-computed.html.ini deleted file mode 100644 index 89ba39a315c..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/border-inline-width-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/inset-block-inline-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/inset-block-inline-computed.html.ini deleted file mode 100644 index efb820e2ba5..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/inset-block-inline-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/inset-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/inset-computed.html.ini deleted file mode 100644 index 985403344b8..00000000000 --- a/tests/wpt/meta/css/css-logical/parsing/inset-computed.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/margin-block-inline-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/margin-block-inline-computed.html.ini index 6f41b294720..3c6040d61eb 100644 --- a/tests/wpt/meta/css/css-logical/parsing/margin-block-inline-computed.html.ini +++ b/tests/wpt/meta/css/css-logical/parsing/margin-block-inline-computed.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-logical/parsing/padding-block-inline-computed.html.ini b/tests/wpt/meta/css/css-logical/parsing/padding-block-inline-computed.html.ini index 6310a7c7fda..bacd45fe63a 100644 --- a/tests/wpt/meta/css/css-logical/parsing/padding-block-inline-computed.html.ini +++ b/tests/wpt/meta/css/css-logical/parsing/padding-block-inline-computed.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-position/overlay/overlay-transition-property.html.ini b/tests/wpt/meta/css/css-position/overlay/overlay-transition-property.html.ini deleted file mode 100644 index aacfbd3b035..00000000000 --- a/tests/wpt/meta/css/css-position/overlay/overlay-transition-property.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[overlay-transition-property.html] - [Property transition value 'overlay 1s'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-transitions/parsing/transition-computed.html.ini b/tests/wpt/meta/css/css-transitions/parsing/transition-computed.html.ini index b44ff35fa69..43134abe735 100644 --- a/tests/wpt/meta/css/css-transitions/parsing/transition-computed.html.ini +++ b/tests/wpt/meta/css/css-transitions/parsing/transition-computed.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-values/calc-background-position-002.html.ini b/tests/wpt/meta/css/css-values/calc-background-position-002.html.ini deleted file mode 100644 index 7146492ca8e..00000000000 --- a/tests/wpt/meta/css/css-values/calc-background-position-002.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-001.html.ini b/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-001.html.ini index 6fd1c0c8997..611a8281050 100644 --- a/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-001.html.ini +++ b/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-001.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-003.html.ini b/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-003.html.ini index 0b7ccbac4a8..ef2df160556 100644 --- a/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-003.html.ini +++ b/tests/wpt/meta/css/css-values/getComputedStyle-border-radius-003.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-values/getComputedStyle-calc-mixed-units-001.html.ini b/tests/wpt/meta/css/css-values/getComputedStyle-calc-mixed-units-001.html.ini deleted file mode 100644 index 433d8bb9c74..00000000000 --- a/tests/wpt/meta/css/css-values/getComputedStyle-calc-mixed-units-001.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[getComputedStyle-calc-mixed-units-001.html] - [testing background-position: calc(100% - 100% + 20em)] - expected: FAIL diff --git a/tests/wpt/meta/css/css-values/minmax-percentage-serialize.html.ini b/tests/wpt/meta/css/css-values/minmax-percentage-serialize.html.ini deleted file mode 100644 index 88a8612cfd8..00000000000 --- a/tests/wpt/meta/css/css-values/minmax-percentage-serialize.html.ini +++ /dev/null @@ -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 diff --git a/tests/wpt/meta/css/css-variables/revert-in-fallback.html.ini b/tests/wpt/meta/css/css-variables/revert-in-fallback.html.ini index f7b34f65f24..850f84ca3cc 100644 --- a/tests/wpt/meta/css/css-variables/revert-in-fallback.html.ini +++ b/tests/wpt/meta/css/css-variables/revert-in-fallback.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-variables/revert-layer-in-fallback.html.ini b/tests/wpt/meta/css/css-variables/revert-layer-in-fallback.html.ini index 76f2a5bdd1d..47f6e6f9062 100644 --- a/tests/wpt/meta/css/css-variables/revert-layer-in-fallback.html.ini +++ b/tests/wpt/meta/css/css-variables/revert-layer-in-fallback.html.ini @@ -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 diff --git a/tests/wpt/meta/css/css-variables/variable-presentation-attribute.html.ini b/tests/wpt/meta/css/css-variables/variable-presentation-attribute.html.ini index 74dcc81ec63..cd5a3ab7942 100644 --- a/tests/wpt/meta/css/css-variables/variable-presentation-attribute.html.ini +++ b/tests/wpt/meta/css/css-variables/variable-presentation-attribute.html.ini @@ -62,9 +62,6 @@ [Testing 'lighting-color'.] expected: FAIL - [Testing 'overflow'.] - expected: FAIL - [Testing 'pointer-events'.] expected: FAIL diff --git a/tests/wpt/meta/css/css-variables/variable-substitution-background-properties.html.ini b/tests/wpt/meta/css/css-variables/variable-substitution-background-properties.html.ini deleted file mode 100644 index 7e9ffedb9d8..00000000000 --- a/tests/wpt/meta/css/css-variables/variable-substitution-background-properties.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[variable-substitution-background-properties.html] - [background-position] - expected: FAIL diff --git a/tests/wpt/meta/quirks/supports.html.ini b/tests/wpt/meta/quirks/supports.html.ini deleted file mode 100644 index 93c1ce0b659..00000000000 --- a/tests/wpt/meta/quirks/supports.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[supports.html] - [Sanity check @supports length] - expected: FAIL