diff --git a/components/script/canvas_state.rs b/components/script/canvas_state.rs index 9f03847de37..06e80f2bb05 100644 --- a/components/script/canvas_state.rs +++ b/components/script/canvas_state.rs @@ -12,7 +12,7 @@ use canvas_traits::canvas::{ FillRule, LineCapStyle, LineJoinStyle, LinearGradientStyle, RadialGradientStyle, RepetitionStyle, TextAlign, TextBaseline, }; -use cssparser::{Color as CSSColor, Parser, ParserInput, RGBA}; +use cssparser::{Parser, ParserInput, RGBA}; use euclid::default::{Point2D, Rect, Size2D, Transform2D}; use euclid::vec2; use ipc_channel::ipc::{self, IpcSender, IpcSharedMemory}; @@ -22,10 +22,15 @@ use pixels::PixelFormat; use profile_traits::ipc as profiled_ipc; use script_traits::ScriptMsg; use servo_url::{ImmutableOrigin, ServoUrl}; +use style::context::QuirksMode; +use style::parser::ParserContext; use style::properties::longhands::font_variant_caps::computed_value::T as FontVariantCaps; use style::properties::style_structs::Font; +use style::stylesheets::{CssRuleType, Origin}; use style::values::computed::font::FontStyle; +use style::values::specified::color::Color; use style_traits::values::ToCss; +use style_traits::ParsingMode; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::CanvasRenderingContext2DBinding::{ @@ -1665,40 +1670,45 @@ impl CanvasState { } } -fn parse_color(canvas: Option<&HTMLCanvasElement>, string: &str) -> Result { +pub fn parse_color(canvas: Option<&HTMLCanvasElement>, string: &str) -> Result { let mut input = ParserInput::new(string); let mut parser = Parser::new(&mut input); - let color = CSSColor::parse(&mut parser); - if parser.is_exhausted() { - match color { - Ok(CSSColor::Rgba(rgba)) => Ok(rgba), - Ok(CSSColor::CurrentColor) => { - // TODO: https://github.com/whatwg/html/issues/1099 - // Reconsider how to calculate currentColor in a display:none canvas + let url = ServoUrl::parse("about:blank").unwrap(); + let context = ParserContext::new( + Origin::Author, + &url, + Some(CssRuleType::Style), + ParsingMode::DEFAULT, + QuirksMode::NoQuirks, + None, + None, + ); + match Color::parse_and_compute(&context, &mut parser, None) { + Some(color) => { + // TODO: https://github.com/whatwg/html/issues/1099 + // Reconsider how to calculate currentColor in a display:none canvas - // TODO: will need to check that the context bitmap mode is fixed - // once we implement CanvasProxy - let canvas = match canvas { - // https://drafts.css-houdini.org/css-paint-api/#2d-rendering-context - // Whenever "currentColor" is used as a color in the PaintRenderingContext2D API, - // it is treated as opaque black. - None => return Ok(RGBA::new(0, 0, 0, 1.0)), - Some(ref canvas) => &**canvas, - }; + // TODO: will need to check that the context bitmap mode is fixed + // once we implement CanvasProxy + let current_color = match canvas { + // https://drafts.css-houdini.org/css-paint-api/#2d-rendering-context + // Whenever "currentColor" is used as a color in the PaintRenderingContext2D API, + // it is treated as opaque black. + None => RGBA::new(0, 0, 0, 1.0), + Some(ref canvas) => { + let canvas_element = canvas.upcast::(); + match canvas_element.style() { + Some(ref s) if canvas_element.has_css_layout_box() => { + s.get_inherited_text().color + }, + _ => RGBA::new(0, 0, 0, 1.0), + } + }, + }; - let canvas_element = canvas.upcast::(); - - match canvas_element.style() { - Some(ref s) if canvas_element.has_css_layout_box() => { - Ok(s.get_inherited_text().color) - }, - _ => Ok(RGBA::new(0, 0, 0, 1.0)), - } - }, - _ => Err(()), - } - } else { - Err(()) + Ok(color.into_rgba(current_color)) + }, + None => Err(()), } } diff --git a/components/script/dom/canvasgradient.rs b/components/script/dom/canvasgradient.rs index 5c54e7cac27..9786c67d8bf 100644 --- a/components/script/dom/canvasgradient.rs +++ b/components/script/dom/canvasgradient.rs @@ -5,9 +5,9 @@ use canvas_traits::canvas::{ CanvasGradientStop, FillOrStrokeStyle, LinearGradientStyle, RadialGradientStyle, }; -use cssparser::{Color as CSSColor, Parser, ParserInput, RGBA}; use dom_struct::dom_struct; +use crate::canvas_state::parse_color; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::CanvasRenderingContext2DBinding::CanvasGradientMethods; use crate::dom::bindings::error::{Error, ErrorResult}; @@ -53,17 +53,9 @@ impl CanvasGradientMethods for CanvasGradient { return Err(Error::IndexSize); } - let mut input = ParserInput::new(&color); - let mut parser = Parser::new(&mut input); - let color = CSSColor::parse(&mut parser); - let color = if parser.is_exhausted() { - match color { - Ok(CSSColor::Rgba(rgba)) => rgba, - Ok(CSSColor::CurrentColor) => RGBA::new(0, 0, 0, 1.0), - _ => return Err(Error::Syntax), - } - } else { - return Err(Error::Syntax); + let color = match parse_color(None, &color) { + Ok(color) => color, + Err(_) => return Err(Error::Syntax), }; self.stops.borrow_mut().push(CanvasGradientStop { diff --git a/components/style/values/specified/color.rs b/components/style/values/specified/color.rs index 53f3b273dc2..cad78bdcb26 100644 --- a/components/style/values/specified/color.rs +++ b/components/style/values/specified/color.rs @@ -30,7 +30,7 @@ fn allow_color_mix() -> bool { #[cfg(feature = "gecko")] return static_prefs::pref!("layout.css.color-mix.enabled"); #[cfg(feature = "servo")] - return false; + return true; } #[inline] @@ -38,7 +38,7 @@ fn allow_more_color_4() -> bool { #[cfg(feature = "gecko")] return static_prefs::pref!("layout.css.more_color_4.enabled"); #[cfg(feature = "servo")] - return false; + return true; } impl ColorMix { diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/animations/box-shadow-interpolation.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/animations/box-shadow-interpolation.html.ini index 163aed217b1..f82d7c76751 100644 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/animations/box-shadow-interpolation.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-backgrounds/animations/box-shadow-interpolation.html.ini @@ -269,60 +269,24 @@ [CSS Transitions: property from [10px 20px yellow, 5px 10px green\] to [inset 5px 10px green, 15px 20px blue\] at (0.3) should be [10px 20px yellow, 5px 10px green\]] expected: FAIL - [CSS Transitions: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0) should be [10px 10px 10px 10px oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (1) should be [10px 10px 10px 10px oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0) should be [10px 10px 10px 10px oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (1) should be [10px 10px 10px 10px oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0) should be [10px 10px 10px 10px oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0.3) should be [10px 10px 10px 10px oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (0.6) should be [10px 10px 10px 10px oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (1) should be [10px 10px 10px 10px oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (1.5) should be [10px 10px 10px 10px oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [10px 10px 10px 10px rgb(0 0 0)\] to [10px 10px 10px 10px color(srgb 1 1 1)\] at (-0.3) should be [10px 10px 10px 10px oklab(0 0 0)\]] expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html.ini deleted file mode 100644 index 58e4780d677..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-background-repaint-parent.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-background-repaint.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-background-repaint.html.ini deleted file mode 100644 index ae7e0461e5b..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-background-repaint.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-background-repaint.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html.ini deleted file mode 100644 index c9d7cc70385..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-border-repaint-parent.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-border-repaint.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-border-repaint.html.ini deleted file mode 100644 index 1173d4884b2..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-border-repaint.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-border-repaint.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html.ini deleted file mode 100644 index a6f5e206966..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-outline-repaint-parent.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-outline-repaint.html.ini b/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-outline-repaint.html.ini deleted file mode 100644 index e7b7f5a85d4..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-backgrounds/color-mix-currentcolor-outline-repaint.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-outline-repaint.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-001.html.ini deleted file mode 100644 index c0412287e8f..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-002.html.ini deleted file mode 100644 index 3cb975053cc..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-003.html.ini deleted file mode 100644 index efaef3ffbca..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-004.html.ini deleted file mode 100644 index ed53efef804..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/a98rgb-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/animation/color-interpolation.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/animation/color-interpolation.html.ini index 4261f2b1e75..7b0c4ff9ca8 100644 --- a/tests/wpt/meta-legacy-layout/css/css-color/animation/color-interpolation.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-color/animation/color-interpolation.html.ini @@ -92,57 +92,30 @@ [Web Animations: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL @@ -164,57 +137,30 @@ [Web Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL @@ -236,57 +182,30 @@ [Web Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL @@ -452,38 +371,11 @@ [Web Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(150 0 0)\]] expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-001.html.ini deleted file mode 100644 index 36bfdbf8997..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-003.html.ini deleted file mode 100644 index b61a5a16f2a..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-nested-for-color-property.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-nested-for-color-property.html.ini new file mode 100644 index 00000000000..fd7c9a08b72 --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-currentcolor-nested-for-color-property.html.ini @@ -0,0 +1,2 @@ +[color-mix-currentcolor-nested-for-color-property.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-non-srgb-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-non-srgb-001.html.ini deleted file mode 100644 index 7d808455df5..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-non-srgb-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-non-srgb-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-percents-01.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-percents-01.html.ini deleted file mode 100644 index 57c70314ad3..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-percents-01.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-percents-01.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-percents-02.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/color-mix-percents-02.html.ini deleted file mode 100644 index 55534c3faba..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/color-mix-percents-02.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-percents-02.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/display-p3-001.html.ini deleted file mode 100644 index 685a5c3bd22..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/display-p3-002.html.ini deleted file mode 100644 index e7322c3dfb7..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/display-p3-003.html.ini deleted file mode 100644 index f2d2505b30f..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/display-p3-004.html.ini deleted file mode 100644 index 1e1d987ca8c..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/display-p3-005.html.ini deleted file mode 100644 index 177e21a0847..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-006.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/display-p3-006.html.ini deleted file mode 100644 index d988d8c8876..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/display-p3-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-006.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-001.html.ini deleted file mode 100644 index 1fbd2fb3004..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-002.html.ini deleted file mode 100644 index 45719a51449..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-003.html.ini deleted file mode 100644 index 08338f23c1a..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-004.html.ini deleted file mode 100644 index 03a29ece3c8..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-005.html.ini deleted file mode 100644 index 501ca4bbdf9..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-006.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-006.html.ini deleted file mode 100644 index b67207fa60f..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-006.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-007.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-007.html.ini deleted file mode 100644 index b4e4b1664bb..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-007.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-008.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-008.html.ini deleted file mode 100644 index 94a9d48106f..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lab-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-008.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-l-over-100-1.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-l-over-100-1.html.ini new file mode 100644 index 00000000000..1268be360f7 --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/lab-l-over-100-1.html.ini @@ -0,0 +1,2 @@ +[lab-l-over-100-1.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lab-l-over-100-2.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lab-l-over-100-2.html.ini new file mode 100644 index 00000000000..5e35aa2a18c --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/lab-l-over-100-2.html.ini @@ -0,0 +1,2 @@ +[lab-l-over-100-2.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-001.html.ini deleted file mode 100644 index 68ed789c0af..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-002.html.ini deleted file mode 100644 index 0af138f3815..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-003.html.ini deleted file mode 100644 index 290c3f4538f..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-004.html.ini deleted file mode 100644 index 893f49cee3d..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-005.html.ini deleted file mode 100644 index 21340a801e8..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-006.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-006.html.ini deleted file mode 100644 index 41e6c3c8e1f..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-006.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-007.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-007.html.ini deleted file mode 100644 index 3fb2d2ceab7..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-007.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-008.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-008.html.ini deleted file mode 100644 index f5f3792d845..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/lch-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-008.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-l-over-100-1.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-l-over-100-1.html.ini new file mode 100644 index 00000000000..a33b5625711 --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/lch-l-over-100-1.html.ini @@ -0,0 +1,2 @@ +[lch-l-over-100-1.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/lch-l-over-100-2.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/lch-l-over-100-2.html.ini new file mode 100644 index 00000000000..3576be46a62 --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/lch-l-over-100-2.html.ini @@ -0,0 +1,2 @@ +[lch-l-over-100-2.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-001.html.ini deleted file mode 100644 index dace3a7d02a..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-002.html.ini deleted file mode 100644 index 28349084521..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-003.html.ini deleted file mode 100644 index e8a2b1ed3e1..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-004.html.ini deleted file mode 100644 index 261015540d8..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-005.html.ini deleted file mode 100644 index b27eb71fdbd..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-006.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-006.html.ini deleted file mode 100644 index 7b327740f7e..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-006.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-007.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-007.html.ini deleted file mode 100644 index 84f8a207396..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-007.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-008.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-008.html.ini deleted file mode 100644 index 543e05142b7..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-008.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-009.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-009.html.ini deleted file mode 100644 index 1c1ba09c195..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklab-009.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-009.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-l-over-1-1.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-l-over-1-1.html.ini new file mode 100644 index 00000000000..e17a8f176ef --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/oklab-l-over-1-1.html.ini @@ -0,0 +1,2 @@ +[oklab-l-over-1-1.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklab-l-over-1-2.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklab-l-over-1-2.html.ini new file mode 100644 index 00000000000..e804f1df128 --- /dev/null +++ b/tests/wpt/meta-legacy-layout/css/css-color/oklab-l-over-1-2.html.ini @@ -0,0 +1,2 @@ +[oklab-l-over-1-2.html] + expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-001.html.ini deleted file mode 100644 index 9b411b05864..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-002.html.ini deleted file mode 100644 index 4a220a018ad..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-003.html.ini deleted file mode 100644 index 85529fe1dab..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-004.html.ini deleted file mode 100644 index 5bfffd8adbf..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-005.html.ini deleted file mode 100644 index 50263e47d7e..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-006.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-006.html.ini deleted file mode 100644 index b042c43155d..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-006.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-007.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-007.html.ini deleted file mode 100644 index 67fbf6d2341..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-007.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-008.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-008.html.ini deleted file mode 100644 index 9309dc130f0..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-008.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/oklch-011.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/oklch-011.html.ini deleted file mode 100644 index fac99a3e651..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/oklch-011.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-011.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-function.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-function.html.ini index e2fbe854859..4f68e3a989a 100644 --- a/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-function.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-function.html.ini @@ -1,43 +1,4 @@ [color-valid-color-function.html] - [e.style['color'\] = "color(srgb 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb 50% -200)" should set the property value] expected: FAIL @@ -56,33 +17,6 @@ [e.style['color'\] = "color(srgb / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(srgb 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb none none none / none)" should set the property value] expected: FAIL @@ -98,45 +32,6 @@ [e.style['color'\] = "color(srgb 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(srgb-linear 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb-linear 50% -200)" should set the property value] expected: FAIL @@ -155,33 +50,6 @@ [e.style['color'\] = "color(srgb-linear / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(srgb-linear 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb-linear none none none / none)" should set the property value] expected: FAIL @@ -197,45 +65,6 @@ [e.style['color'\] = "color(srgb-linear 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(a98-rgb 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(a98-rgb 50% -200)" should set the property value] expected: FAIL @@ -254,33 +83,6 @@ [e.style['color'\] = "color(a98-rgb / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(a98-rgb 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(a98-rgb none none none / none)" should set the property value] expected: FAIL @@ -296,45 +98,6 @@ [e.style['color'\] = "color(a98-rgb 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(rec2020 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(rec2020 50% -200)" should set the property value] expected: FAIL @@ -353,33 +116,6 @@ [e.style['color'\] = "color(rec2020 / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(rec2020 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(rec2020 none none none / none)" should set the property value] expected: FAIL @@ -395,45 +131,6 @@ [e.style['color'\] = "color(rec2020 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(prophoto-rgb 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(prophoto-rgb 50% -200)" should set the property value] expected: FAIL @@ -452,33 +149,6 @@ [e.style['color'\] = "color(prophoto-rgb / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(prophoto-rgb 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(prophoto-rgb none none none / none)" should set the property value] expected: FAIL @@ -494,45 +164,6 @@ [e.style['color'\] = "color(prophoto-rgb 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(display-p3 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(display-p3 50% -200)" should set the property value] expected: FAIL @@ -551,33 +182,6 @@ [e.style['color'\] = "color(display-p3 / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(display-p3 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(display-p3 none none none / none)" should set the property value] expected: FAIL @@ -593,48 +197,6 @@ [e.style['color'\] = "color(display-p3 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz 0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 1 1 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 1 1 1 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz -1 -1 -1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0.1 0.1 0.1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 10 10 10)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz .2 .2 .25)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz .20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz .20 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz 1 1)" should set the property value] expected: FAIL @@ -653,9 +215,6 @@ [e.style['color'\] = "color(xyz / 50%)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz none none none / none)" should set the property value] expected: FAIL @@ -671,48 +230,6 @@ [e.style['color'\] = "color(xyz 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d50 0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 1 1 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 1 1 1 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 -1 -1 -1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0.1 0.1 0.1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 10 10 10)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 .2 .2 .25)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 .20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 .20 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d50 1 1)" should set the property value] expected: FAIL @@ -731,9 +248,6 @@ [e.style['color'\] = "color(xyz-d50 / 50%)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d50 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d50 none none none / none)" should set the property value] expected: FAIL @@ -749,48 +263,6 @@ [e.style['color'\] = "color(xyz-d50 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d65 0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 1 1 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 1 1 1 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 -1 -1 -1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0.1 0.1 0.1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 10 10 10)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 .2 .2 .25)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 .20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 .20 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d65 1 1)" should set the property value] expected: FAIL @@ -809,9 +281,6 @@ [e.style['color'\] = "color(xyz-d65 / 50%)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d65 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d65 none none none / none)" should set the property value] expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-mix-function.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-mix-function.html.ini index 1c3ee092b7b..07bed4eb5cf 100644 --- a/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-mix-function.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-color-mix-function.html.ini @@ -1,166 +1,4 @@ [color-valid-color-mix-function.html] - [e.style['color'\] = "color-mix(in srgb, red, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red calc(20%), blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, currentcolor, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red 60%, blue 40%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, red, hsl(120, 100%, 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 25%, hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, 25% hsl(120deg 10% 20%), hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), 25% hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), hsl(30deg 30% 40%) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 25%, hsl(30deg 30% 40%) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 30%, hsl(30deg 30% 40%) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 12.5%, hsl(30deg 30% 40%) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 0%, hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4), hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 25%, hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, 25% hsl(120deg 10% 20% / .4), hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4), 25% hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4), hsl(30deg 30% 40% / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 25%, hsl(30deg 30% 40% / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 30%, hsl(30deg 30% 40% / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 12.5%, hsl(30deg 30% 40% / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 0%, hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hsl, hsl(none none none), hsl(none none none))" should set the property value] expected: FAIL @@ -188,171 +26,36 @@ [e.style['color'\] = "color-mix(in hsl, hsl(120deg 40% 40% / none), hsl(0deg 40% 40% / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, color(display-p3 0 1 0) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lab(100 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lab(0 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lch(100 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lch(0 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklab(100 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklab(0 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklch(100 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklch(0 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 25%, hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, 25% hwb(120deg 10% 20%), hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), 25% hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), hwb(30deg 30% 40%) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 25%, hwb(30deg 30% 40%) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 30%, hwb(30deg 30% 40%) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 12.5%, hwb(30deg 30% 40%) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 0%, hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4), hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 25%, hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, 25% hwb(120deg 10% 20% / .4), hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), 25% hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4), hwb(30deg 30% 40% / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 25%, hwb(30deg 30% 40% / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 30%, hwb(30deg 30% 40% / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 12.5%, hwb(30deg 30% 40% / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 0%, hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb longer hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL @@ -386,177 +89,12 @@ [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / none), hwb(30deg 30% 40% / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb, color(display-p3 0 1 0) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lab(100 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lab(0 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lch(100 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lch(0 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklab(100 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklab(0 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklch(100 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklch(0 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg), lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 25%, lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, 25% lch(10 20 30deg), lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg), 25% lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg), lch(50 60 70deg) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 25%, lch(50 60 70deg) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 30%, lch(50 60 70deg) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 12.5%, lch(50 60 70deg) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 0%, lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4), lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 25%, lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, 25% lch(10 20 30deg / .4), lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4), 25% lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4), lch(50 60 70deg / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 25%, lch(50 60 70deg / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 30%, lch(50 60 70deg / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 12.5%, lch(50 60 70deg / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 0%, lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in lch, lch(none none none), lch(none none none))" should set the property value] expected: FAIL @@ -755,60 +293,6 @@ [e.style['color'\] = "color-mix(in oklch, oklch(10 20 30deg / none), oklch(50 60 70deg / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in lab, lab(10 20 30), lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 25%, lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, 25% lab(10 20 30), lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30), 25% lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30), lab(50 60 70) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 25%, lab(50 60 70) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 30%, lab(50 60 70) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 12.5%, lab(50 60 70) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 0%, lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4), lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 25%, lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, 25% lab(10 20 30 / .4), lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4), 25% lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4), lab(50 60 70 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 25%, lab(50 60 70 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 30%, lab(50 60 70 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 12.5%, lab(50 60 70 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 0%, lab(50 60 70 / .8))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in lab, lab(none none none), lab(none none none))" should set the property value] expected: FAIL @@ -917,57 +401,6 @@ [e.style['color'\] = "color-mix(in oklab, oklab(10 20 30 / none), oklab(50 60 70 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3), color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 25%, color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3), color(srgb .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 25%, color(srgb .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 30%, color(srgb .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 12.5%, color(srgb .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 0%, color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .5), color(srgb .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 25%, color(srgb .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4), color(srgb .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 25%, color(srgb .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 30%, color(srgb .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 12.5%, color(srgb .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 0%, color(srgb .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb 2 3 4 / 5), color(srgb 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb -2 -3 -4), color(srgb -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb -2 -3 -4 / -5), color(srgb -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in srgb, color(srgb none none none), color(srgb none none none))" should set the property value] expected: FAIL @@ -995,57 +428,6 @@ [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / none), color(srgb .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3), color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 25%, color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3), color(srgb-linear .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 25%, color(srgb-linear .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 30%, color(srgb-linear .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 12.5%, color(srgb-linear .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 0%, color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .5), color(srgb-linear .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 25%, color(srgb-linear .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4), color(srgb-linear .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 25%, color(srgb-linear .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 30%, color(srgb-linear .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 12.5%, color(srgb-linear .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 0%, color(srgb-linear .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear 2 3 4 / 5), color(srgb-linear 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear -2 -3 -4), color(srgb-linear -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear -2 -3 -4 / -5), color(srgb-linear -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear none none none), color(srgb-linear none none none))" should set the property value] expected: FAIL @@ -1073,57 +455,6 @@ [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / none), color(srgb-linear .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3), color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 25%, color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3), color(xyz .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 25%, color(xyz .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 30%, color(xyz .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 12.5%, color(xyz .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 0%, color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .5), color(xyz .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 25%, color(xyz .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4), color(xyz .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 25%, color(xyz .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 30%, color(xyz .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 12.5%, color(xyz .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 0%, color(xyz .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz 2 3 4 / 5), color(xyz 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz -2 -3 -4), color(xyz -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz -2 -3 -4 / -5), color(xyz -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in xyz, color(xyz none none none), color(xyz none none none))" should set the property value] expected: FAIL @@ -1151,57 +482,6 @@ [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / none), color(xyz .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3), color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 25%, color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3), color(xyz-d50 .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 25%, color(xyz-d50 .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 30%, color(xyz-d50 .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 12.5%, color(xyz-d50 .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 0%, color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .5), color(xyz-d50 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 25%, color(xyz-d50 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4), color(xyz-d50 .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 25%, color(xyz-d50 .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 30%, color(xyz-d50 .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 12.5%, color(xyz-d50 .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 0%, color(xyz-d50 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 2 3 4 / 5), color(xyz-d50 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 -2 -3 -4), color(xyz-d50 -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 -2 -3 -4 / -5), color(xyz-d50 -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 none none none), color(xyz-d50 none none none))" should set the property value] expected: FAIL @@ -1229,57 +509,6 @@ [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / none), color(xyz-d50 .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3), color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 25%, color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3), color(xyz-d65 .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 25%, color(xyz-d65 .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 30%, color(xyz-d65 .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 12.5%, color(xyz-d65 .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 0%, color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .5), color(xyz-d65 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 25%, color(xyz-d65 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4), color(xyz-d65 .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 25%, color(xyz-d65 .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 30%, color(xyz-d65 .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 12.5%, color(xyz-d65 .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 0%, color(xyz-d65 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 2 3 4 / 5), color(xyz-d65 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 -2 -3 -4), color(xyz-d65 -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 -2 -3 -4 / -5), color(xyz-d65 -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 none none none), color(xyz-d65 none none none))" should set the property value] expected: FAIL @@ -1307,162 +536,6 @@ [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / none), color(xyz-d65 .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklab(1 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, oklch(1 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, oklab(1 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, oklch(1 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg), oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 25%, oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, 25% oklch(0.1 0.2 30deg), oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg), 25% oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg), oklch(0.5 0.6 70deg) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 25%, oklch(0.5 0.6 70deg) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 30%, oklch(0.5 0.6 70deg) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 12.5%, oklch(0.5 0.6 70deg) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 0%, oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4), oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 25%, oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, 25% oklch(0.1 0.2 30deg / .4), oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4), 25% oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4), oklch(0.5 0.6 70deg / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 25%, oklch(0.5 0.6 70deg / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 30%, oklch(0.5 0.6 70deg / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 12.5%, oklch(0.5 0.6 70deg / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 0%, oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in oklch, oklch(none none none), oklch(0.5 0.6 70deg))" should set the property value] expected: FAIL @@ -1487,60 +560,6 @@ [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / none), oklch(0.5 0.6 70deg / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3), oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 25%, oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, 25% oklab(0.1 0.2 0.3), oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3), 25% oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3), oklab(0.5 0.6 0.7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 25%, oklab(0.5 0.6 0.7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 30%, oklab(0.5 0.6 0.7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 12.5%, oklab(0.5 0.6 0.7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 0%, oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4), oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 25%, oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, 25% oklab(0.1 0.2 0.3 / .4), oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4), 25% oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4), oklab(0.5 0.6 0.7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 25%, oklab(0.5 0.6 0.7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 30%, oklab(0.5 0.6 0.7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 12.5%, oklab(0.5 0.6 0.7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 0%, oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in oklab, oklab(none none none), oklab(0.5 0.6 0.7))" should set the property value] expected: FAIL @@ -1600,54 +619,3 @@ [e.style['color'\] = "color-mix(in hwb specified hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, 70% red, 50% blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red 50%, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red, blue 50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, 50% hsl(120deg 10% 20%), hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), 50% hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, 50% hwb(120deg 10% 20%), hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), 50% hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, 50% color(srgb .1 .2 .3), color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3), 50% color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, 50% color(srgb-linear .1 .2 .3), color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3), 50% color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, 50% color(xyz .1 .2 .3), color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3), 50% color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, 50% color(xyz-d50 .1 .2 .3), color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3), 50% color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, 50% color(xyz-d65 .1 .2 .3), color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3), 50% color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-lab.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-lab.html.ini index 9d60cf5d19c..7f475574c45 100644 --- a/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-lab.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-color/parsing/color-valid-lab.html.ini @@ -1,52 +1,10 @@ [color-valid-lab.html] - [e.style['color'\] = "lab(0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(20 0 10/50%)" should set the property value] - expected: FAIL - [e.style['color'\] = "lab(400 0 10/50%)" should set the property value] expected: FAIL - [e.style['color'\] = "lab(50 -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(50 -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 300%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(-40 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(50 -20 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(50 0 -20)" should set the property value] - expected: FAIL - [e.style['color'\] = "lab(calc(50 * 3) calc(0.5 - 1) calc(1.5) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "lab(calc(-50 * 3) calc(0.5 + 1) calc(-1.5) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "lab(none none none / none)" should set the property value] expected: FAIL @@ -62,15 +20,6 @@ [e.style['color'\] = "lab(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 0.5)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(20 0 10/0.5)" should set the property value] expected: FAIL @@ -86,15 +35,6 @@ [e.style['color'\] = "oklab(50 -200 200)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(-40 0 0)" should set the property value] expected: FAIL @@ -125,66 +65,9 @@ [e.style['color'\] = "oklab(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "lch(0 0 0deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(0 0 0deg / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(0 0 0deg / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(100 230 0deg / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20 50 20deg/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20 50 20deg/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 20deg / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 20deg / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 1.28rad)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 380deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 -340deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 740deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 -700deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(-40 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20 -20 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 20 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 -700)" should set the property value] - expected: FAIL - [e.style['color'\] = "lch(calc(50 * 3) calc(0.5 - 1) calc(20deg * 2) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "lch(calc(-50 * 3) calc(0.5 + 1) calc(-20deg * 2) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "lch(none none none / none)" should set the property value] expected: FAIL @@ -200,15 +83,6 @@ [e.style['color'\] = "lch(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(0 0 0deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0 0 0deg / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0 0 0deg / 0.5)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(100 230 0deg / 0.5)" should set the property value] expected: FAIL @@ -245,9 +119,6 @@ [e.style['color'\] = "oklch(20 -20 0)" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(0 0 0 / 0.5)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(10 20 20 / 110%)" should set the property value] expected: FAIL @@ -275,87 +146,18 @@ [e.style['color'\] = "oklch(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0.2 0 0.1/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.2 0 0.1/50%)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(4 0 0.1/50%)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0.5 -1.6 1.6)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.5 -2 2)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(-0.4 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.5 -2 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.5 0 -2)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(calc(0.5 * 3) calc(0.5 - 1) calc(1.5) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(calc(-0.5 * 3) calc(0.5 + 1) calc(-1.5) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(0.2 none none / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(1 2.3 0deg / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.2 0.5 20deg/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.2 0.5 20deg/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 20deg / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 20deg / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 1.28rad)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 380deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 -340deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 740deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 -700deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(-4 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.2 -0.2 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 20 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 -700)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(calc(0.5 * 3) calc(0.5 - 1) calc(20deg * 2) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(calc(-0.5 * 3) calc(0.5 + 1) calc(-20deg * 2) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(0.2 none none / none)" should set the property value] expected: FAIL @@ -418,15 +220,3 @@ [e.style['color'\] = "oklch(calc(0 / 0) 0 0)" should set the property value] expected: FAIL - - [e.style['color'\] = "lab(20% -50% 90%/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(20% 70% -80%/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20% 80% 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(20% 60% 10/0.5)" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-001.html.ini deleted file mode 100644 index adf73c88f76..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-002.html.ini deleted file mode 100644 index 79d4157ed3c..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-005.html.ini deleted file mode 100644 index 028c9832cd6..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-006.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-006.html.ini deleted file mode 100644 index cd7b34ac24a..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-006.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-007.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-007.html.ini deleted file mode 100644 index e9d433babca..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-007.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-008.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-008.html.ini deleted file mode 100644 index 502caa54e8c..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-008.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-009.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-009.html.ini deleted file mode 100644 index ddac26298fa..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-009.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-009.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-010.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-010.html.ini deleted file mode 100644 index 0fbc25c1700..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-010.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-010.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-011.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-011.html.ini deleted file mode 100644 index 06fc2a5b9c7..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-011.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-011.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-012.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-012.html.ini deleted file mode 100644 index bb8e38e06ea..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-012.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-012.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/predefined-016.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/predefined-016.html.ini deleted file mode 100644 index e5e4900e7db..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/predefined-016.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-016.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-001.html.ini deleted file mode 100644 index 82ccdc78354..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-002.html.ini deleted file mode 100644 index d802525d8d2..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-003.html.ini deleted file mode 100644 index a0cc754b85b..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-004.html.ini deleted file mode 100644 index df7b8102e59..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-005.html.ini deleted file mode 100644 index 425c447810e..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/prophoto-rgb-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/rec2020-001.html.ini deleted file mode 100644 index e77d02899ca..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/rec2020-002.html.ini deleted file mode 100644 index 12fbdca64f5..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/rec2020-003.html.ini deleted file mode 100644 index c2b6f1f00f1..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/rec2020-004.html.ini deleted file mode 100644 index 4b634f80462..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/rec2020-005.html.ini deleted file mode 100644 index 10efd625a30..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/rec2020-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-001.html.ini deleted file mode 100644 index 20cb1f76cbf..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-002.html.ini deleted file mode 100644 index 8fe3d4a21b0..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-003.html.ini deleted file mode 100644 index d7a3820c6f9..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-004.html.ini deleted file mode 100644 index 447460888cc..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/srgb-linear-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-001.html.ini deleted file mode 100644 index 35911afcf54..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-002.html.ini deleted file mode 100644 index 07f94158837..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-003.html.ini deleted file mode 100644 index ea7d862a256..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-004.html.ini deleted file mode 100644 index c4e9432fc80..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-005.html.ini deleted file mode 100644 index d88e95af7d9..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-001.html.ini deleted file mode 100644 index 2e646c25051..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-002.html.ini deleted file mode 100644 index eca55cac250..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-003.html.ini deleted file mode 100644 index 9316bd23bb6..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-004.html.ini deleted file mode 100644 index d93ec77d499..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-005.html.ini deleted file mode 100644 index f9a15ee3f0a..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d50-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-001.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-001.html.ini deleted file mode 100644 index 8dabc07b1c3..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-001.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-002.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-002.html.ini deleted file mode 100644 index 6a844ba187d..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-002.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-003.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-003.html.ini deleted file mode 100644 index ae11ead40fc..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-003.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-004.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-004.html.ini deleted file mode 100644 index e9b0bc28c06..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-004.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-005.html.ini b/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-005.html.ini deleted file mode 100644 index 06ba629176c..00000000000 --- a/tests/wpt/meta-legacy-layout/css/css-color/xyz-d65-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-005.html] - expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-computed.html.ini b/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-computed.html.ini index 9e15d59a455..e874313f3f8 100644 --- a/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-computed.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-computed.html.ini @@ -1,10 +1,4 @@ [gradient-interpolation-method-computed.html] - [Property background-image value 'linear-gradient(30deg, color(srgb 1 0 0), blue)'] - expected: FAIL - - [Property background-image value 'linear-gradient(to right bottom, color(srgb 1 0 0), blue)'] - expected: FAIL - [Property background-image value 'linear-gradient(in lab, red, blue)'] expected: FAIL @@ -815,15 +809,6 @@ [Property background-image value 'linear-gradient(in oklch decreasing hue to right bottom, color(srgb 1 0 0), blue)'] expected: FAIL - [Property background-image value 'radial-gradient(50px, color(srgb 1 0 0), blue)'] - expected: FAIL - - [Property background-image value 'radial-gradient(ellipse 50% 40em, color(srgb 1 0 0), blue)'] - expected: FAIL - - [Property background-image value 'radial-gradient(at right center, color(srgb 1 0 0), blue)'] - expected: FAIL - [Property background-image value 'radial-gradient(in lab, red, blue)'] expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-valid.html.ini b/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-valid.html.ini index 7a6a405df4f..22e41992693 100644 --- a/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-valid.html.ini +++ b/tests/wpt/meta-legacy-layout/css/css-images/parsing/gradient-interpolation-method-valid.html.ini @@ -1,10 +1,4 @@ [gradient-interpolation-method-valid.html] - [e.style['background-image'\] = "linear-gradient(30deg, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - - [e.style['background-image'\] = "linear-gradient(to right bottom, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - [e.style['background-image'\] = "linear-gradient(in lab, red, blue)" should set the property value] expected: FAIL @@ -815,15 +809,6 @@ [e.style['background-image'\] = "linear-gradient(in oklch decreasing hue to right bottom, color(srgb 1 0 0), blue)" should set the property value] expected: FAIL - [e.style['background-image'\] = "radial-gradient(50px, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - - [e.style['background-image'\] = "radial-gradient(ellipse 50% 40em, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - - [e.style['background-image'\] = "radial-gradient(at right center, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - [e.style['background-image'\] = "radial-gradient(in lab, red, blue)" should set the property value] expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html.ini b/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html.ini deleted file mode 100644 index 58e4780d677..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-background-repaint-parent.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-background-repaint.html.ini b/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-background-repaint.html.ini deleted file mode 100644 index ae7e0461e5b..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-background-repaint.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-background-repaint.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html.ini b/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html.ini deleted file mode 100644 index c9d7cc70385..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-border-repaint-parent.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-border-repaint.html.ini b/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-border-repaint.html.ini deleted file mode 100644 index 1173d4884b2..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-border-repaint.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-border-repaint.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html.ini b/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html.ini deleted file mode 100644 index a6f5e206966..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-outline-repaint-parent.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-outline-repaint.html.ini b/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-outline-repaint.html.ini deleted file mode 100644 index e7b7f5a85d4..00000000000 --- a/tests/wpt/meta/css/css-backgrounds/color-mix-currentcolor-outline-repaint.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-outline-repaint.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/a98rgb-001.html.ini b/tests/wpt/meta/css/css-color/a98rgb-001.html.ini deleted file mode 100644 index c0412287e8f..00000000000 --- a/tests/wpt/meta/css/css-color/a98rgb-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/a98rgb-002.html.ini b/tests/wpt/meta/css/css-color/a98rgb-002.html.ini deleted file mode 100644 index 3cb975053cc..00000000000 --- a/tests/wpt/meta/css/css-color/a98rgb-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/a98rgb-003.html.ini b/tests/wpt/meta/css/css-color/a98rgb-003.html.ini deleted file mode 100644 index efaef3ffbca..00000000000 --- a/tests/wpt/meta/css/css-color/a98rgb-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/a98rgb-004.html.ini b/tests/wpt/meta/css/css-color/a98rgb-004.html.ini deleted file mode 100644 index ed53efef804..00000000000 --- a/tests/wpt/meta/css/css-color/a98rgb-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[a98rgb-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/animation/color-interpolation.html.ini b/tests/wpt/meta/css/css-color/animation/color-interpolation.html.ini index cb2c506e4a8..4489f6ce06a 100644 --- a/tests/wpt/meta/css/css-color/animation/color-interpolation.html.ini +++ b/tests/wpt/meta/css/css-color/animation/color-interpolation.html.ini @@ -89,57 +89,30 @@ [Web Animations: property from [inherit\] to [green\] at (1.5) should be [rgb(0, 192, 0)\]] expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL @@ -161,57 +134,30 @@ [Web Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL @@ -233,57 +179,30 @@ [Web Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (-0.3) should be [oklab(0 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0) should be [oklab(0 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.3) should be [oklab(0.3 0 0)\]] expected: FAIL [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (0.6) should be [oklab(0.6 0 0)\]] expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1) should be [oklab(1 0 0)\]] - expected: FAIL - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1.5 0 0)\]] expected: FAIL @@ -449,38 +368,11 @@ [Web Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(150 0 0)\]] expected: FAIL - [CSS Transitions: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [rgb(0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [color(srgb 0 0 0)\] to [rgb(255 255 255)\] at (1.5) should be [oklab(1 0 0)\]] expected: FAIL - [CSS Transitions: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - - [CSS Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] - expected: FAIL - [Web Animations: property from [color(srgb 0 0 0)\] to [color(srgb 1 1 1)\] at (1.5) should be [oklab(1 0 0)\]] expected: FAIL diff --git a/tests/wpt/meta/css/css-color/color-mix-currentcolor-001.html.ini b/tests/wpt/meta/css/css-color/color-mix-currentcolor-001.html.ini deleted file mode 100644 index 36bfdbf8997..00000000000 --- a/tests/wpt/meta/css/css-color/color-mix-currentcolor-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/color-mix-currentcolor-003.html.ini b/tests/wpt/meta/css/css-color/color-mix-currentcolor-003.html.ini deleted file mode 100644 index b61a5a16f2a..00000000000 --- a/tests/wpt/meta/css/css-color/color-mix-currentcolor-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-currentcolor-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/color-mix-currentcolor-nested-for-color-property.html.ini b/tests/wpt/meta/css/css-color/color-mix-currentcolor-nested-for-color-property.html.ini new file mode 100644 index 00000000000..fd7c9a08b72 --- /dev/null +++ b/tests/wpt/meta/css/css-color/color-mix-currentcolor-nested-for-color-property.html.ini @@ -0,0 +1,2 @@ +[color-mix-currentcolor-nested-for-color-property.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/color-mix-non-srgb-001.html.ini b/tests/wpt/meta/css/css-color/color-mix-non-srgb-001.html.ini deleted file mode 100644 index 7d808455df5..00000000000 --- a/tests/wpt/meta/css/css-color/color-mix-non-srgb-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-non-srgb-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/color-mix-percents-01.html.ini b/tests/wpt/meta/css/css-color/color-mix-percents-01.html.ini deleted file mode 100644 index 57c70314ad3..00000000000 --- a/tests/wpt/meta/css/css-color/color-mix-percents-01.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-percents-01.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/color-mix-percents-02.html.ini b/tests/wpt/meta/css/css-color/color-mix-percents-02.html.ini deleted file mode 100644 index 55534c3faba..00000000000 --- a/tests/wpt/meta/css/css-color/color-mix-percents-02.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[color-mix-percents-02.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/display-p3-001.html.ini b/tests/wpt/meta/css/css-color/display-p3-001.html.ini deleted file mode 100644 index 685a5c3bd22..00000000000 --- a/tests/wpt/meta/css/css-color/display-p3-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/display-p3-002.html.ini b/tests/wpt/meta/css/css-color/display-p3-002.html.ini deleted file mode 100644 index e7322c3dfb7..00000000000 --- a/tests/wpt/meta/css/css-color/display-p3-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/display-p3-003.html.ini b/tests/wpt/meta/css/css-color/display-p3-003.html.ini deleted file mode 100644 index f2d2505b30f..00000000000 --- a/tests/wpt/meta/css/css-color/display-p3-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/display-p3-004.html.ini b/tests/wpt/meta/css/css-color/display-p3-004.html.ini deleted file mode 100644 index 1e1d987ca8c..00000000000 --- a/tests/wpt/meta/css/css-color/display-p3-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/display-p3-005.html.ini b/tests/wpt/meta/css/css-color/display-p3-005.html.ini deleted file mode 100644 index 177e21a0847..00000000000 --- a/tests/wpt/meta/css/css-color/display-p3-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/display-p3-006.html.ini b/tests/wpt/meta/css/css-color/display-p3-006.html.ini deleted file mode 100644 index d988d8c8876..00000000000 --- a/tests/wpt/meta/css/css-color/display-p3-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[display-p3-006.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-001.html.ini b/tests/wpt/meta/css/css-color/lab-001.html.ini deleted file mode 100644 index 1fbd2fb3004..00000000000 --- a/tests/wpt/meta/css/css-color/lab-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-002.html.ini b/tests/wpt/meta/css/css-color/lab-002.html.ini deleted file mode 100644 index 45719a51449..00000000000 --- a/tests/wpt/meta/css/css-color/lab-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-003.html.ini b/tests/wpt/meta/css/css-color/lab-003.html.ini deleted file mode 100644 index 08338f23c1a..00000000000 --- a/tests/wpt/meta/css/css-color/lab-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-004.html.ini b/tests/wpt/meta/css/css-color/lab-004.html.ini deleted file mode 100644 index 03a29ece3c8..00000000000 --- a/tests/wpt/meta/css/css-color/lab-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-005.html.ini b/tests/wpt/meta/css/css-color/lab-005.html.ini deleted file mode 100644 index 501ca4bbdf9..00000000000 --- a/tests/wpt/meta/css/css-color/lab-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-006.html.ini b/tests/wpt/meta/css/css-color/lab-006.html.ini deleted file mode 100644 index b67207fa60f..00000000000 --- a/tests/wpt/meta/css/css-color/lab-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-006.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-007.html.ini b/tests/wpt/meta/css/css-color/lab-007.html.ini deleted file mode 100644 index b4e4b1664bb..00000000000 --- a/tests/wpt/meta/css/css-color/lab-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-007.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-008.html.ini b/tests/wpt/meta/css/css-color/lab-008.html.ini deleted file mode 100644 index 94a9d48106f..00000000000 --- a/tests/wpt/meta/css/css-color/lab-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lab-008.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-l-over-100-1.html.ini b/tests/wpt/meta/css/css-color/lab-l-over-100-1.html.ini new file mode 100644 index 00000000000..1268be360f7 --- /dev/null +++ b/tests/wpt/meta/css/css-color/lab-l-over-100-1.html.ini @@ -0,0 +1,2 @@ +[lab-l-over-100-1.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lab-l-over-100-2.html.ini b/tests/wpt/meta/css/css-color/lab-l-over-100-2.html.ini new file mode 100644 index 00000000000..5e35aa2a18c --- /dev/null +++ b/tests/wpt/meta/css/css-color/lab-l-over-100-2.html.ini @@ -0,0 +1,2 @@ +[lab-l-over-100-2.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-001.html.ini b/tests/wpt/meta/css/css-color/lch-001.html.ini deleted file mode 100644 index 68ed789c0af..00000000000 --- a/tests/wpt/meta/css/css-color/lch-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-002.html.ini b/tests/wpt/meta/css/css-color/lch-002.html.ini deleted file mode 100644 index 0af138f3815..00000000000 --- a/tests/wpt/meta/css/css-color/lch-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-003.html.ini b/tests/wpt/meta/css/css-color/lch-003.html.ini deleted file mode 100644 index 290c3f4538f..00000000000 --- a/tests/wpt/meta/css/css-color/lch-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-004.html.ini b/tests/wpt/meta/css/css-color/lch-004.html.ini deleted file mode 100644 index 893f49cee3d..00000000000 --- a/tests/wpt/meta/css/css-color/lch-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-005.html.ini b/tests/wpt/meta/css/css-color/lch-005.html.ini deleted file mode 100644 index 21340a801e8..00000000000 --- a/tests/wpt/meta/css/css-color/lch-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-006.html.ini b/tests/wpt/meta/css/css-color/lch-006.html.ini deleted file mode 100644 index 41e6c3c8e1f..00000000000 --- a/tests/wpt/meta/css/css-color/lch-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-006.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-007.html.ini b/tests/wpt/meta/css/css-color/lch-007.html.ini deleted file mode 100644 index 3fb2d2ceab7..00000000000 --- a/tests/wpt/meta/css/css-color/lch-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-007.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-008.html.ini b/tests/wpt/meta/css/css-color/lch-008.html.ini deleted file mode 100644 index f5f3792d845..00000000000 --- a/tests/wpt/meta/css/css-color/lch-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[lch-008.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-l-over-100-1.html.ini b/tests/wpt/meta/css/css-color/lch-l-over-100-1.html.ini new file mode 100644 index 00000000000..a33b5625711 --- /dev/null +++ b/tests/wpt/meta/css/css-color/lch-l-over-100-1.html.ini @@ -0,0 +1,2 @@ +[lch-l-over-100-1.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/lch-l-over-100-2.html.ini b/tests/wpt/meta/css/css-color/lch-l-over-100-2.html.ini new file mode 100644 index 00000000000..3576be46a62 --- /dev/null +++ b/tests/wpt/meta/css/css-color/lch-l-over-100-2.html.ini @@ -0,0 +1,2 @@ +[lch-l-over-100-2.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-001.html.ini b/tests/wpt/meta/css/css-color/oklab-001.html.ini deleted file mode 100644 index dace3a7d02a..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-002.html.ini b/tests/wpt/meta/css/css-color/oklab-002.html.ini deleted file mode 100644 index 28349084521..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-003.html.ini b/tests/wpt/meta/css/css-color/oklab-003.html.ini deleted file mode 100644 index e8a2b1ed3e1..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-004.html.ini b/tests/wpt/meta/css/css-color/oklab-004.html.ini deleted file mode 100644 index 261015540d8..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-005.html.ini b/tests/wpt/meta/css/css-color/oklab-005.html.ini deleted file mode 100644 index b27eb71fdbd..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-006.html.ini b/tests/wpt/meta/css/css-color/oklab-006.html.ini deleted file mode 100644 index 7b327740f7e..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-006.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-007.html.ini b/tests/wpt/meta/css/css-color/oklab-007.html.ini deleted file mode 100644 index 84f8a207396..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-007.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-008.html.ini b/tests/wpt/meta/css/css-color/oklab-008.html.ini deleted file mode 100644 index 543e05142b7..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-008.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-009.html.ini b/tests/wpt/meta/css/css-color/oklab-009.html.ini deleted file mode 100644 index 1c1ba09c195..00000000000 --- a/tests/wpt/meta/css/css-color/oklab-009.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklab-009.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-l-over-1-1.html.ini b/tests/wpt/meta/css/css-color/oklab-l-over-1-1.html.ini new file mode 100644 index 00000000000..e17a8f176ef --- /dev/null +++ b/tests/wpt/meta/css/css-color/oklab-l-over-1-1.html.ini @@ -0,0 +1,2 @@ +[oklab-l-over-1-1.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklab-l-over-1-2.html.ini b/tests/wpt/meta/css/css-color/oklab-l-over-1-2.html.ini new file mode 100644 index 00000000000..e804f1df128 --- /dev/null +++ b/tests/wpt/meta/css/css-color/oklab-l-over-1-2.html.ini @@ -0,0 +1,2 @@ +[oklab-l-over-1-2.html] + expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-001.html.ini b/tests/wpt/meta/css/css-color/oklch-001.html.ini deleted file mode 100644 index 9b411b05864..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-002.html.ini b/tests/wpt/meta/css/css-color/oklch-002.html.ini deleted file mode 100644 index 4a220a018ad..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-003.html.ini b/tests/wpt/meta/css/css-color/oklch-003.html.ini deleted file mode 100644 index 85529fe1dab..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-004.html.ini b/tests/wpt/meta/css/css-color/oklch-004.html.ini deleted file mode 100644 index 5bfffd8adbf..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-005.html.ini b/tests/wpt/meta/css/css-color/oklch-005.html.ini deleted file mode 100644 index 50263e47d7e..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-006.html.ini b/tests/wpt/meta/css/css-color/oklch-006.html.ini deleted file mode 100644 index b042c43155d..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-006.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-007.html.ini b/tests/wpt/meta/css/css-color/oklch-007.html.ini deleted file mode 100644 index 67fbf6d2341..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-007.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-008.html.ini b/tests/wpt/meta/css/css-color/oklch-008.html.ini deleted file mode 100644 index 9309dc130f0..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-008.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/oklch-011.html.ini b/tests/wpt/meta/css/css-color/oklch-011.html.ini deleted file mode 100644 index fac99a3e651..00000000000 --- a/tests/wpt/meta/css/css-color/oklch-011.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[oklch-011.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/parsing/color-valid-color-function.html.ini b/tests/wpt/meta/css/css-color/parsing/color-valid-color-function.html.ini index e2fbe854859..4f68e3a989a 100644 --- a/tests/wpt/meta/css/css-color/parsing/color-valid-color-function.html.ini +++ b/tests/wpt/meta/css/css-color/parsing/color-valid-color-function.html.ini @@ -1,43 +1,4 @@ [color-valid-color-function.html] - [e.style['color'\] = "color(srgb 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb 50% -200)" should set the property value] expected: FAIL @@ -56,33 +17,6 @@ [e.style['color'\] = "color(srgb / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(srgb 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb none none none / none)" should set the property value] expected: FAIL @@ -98,45 +32,6 @@ [e.style['color'\] = "color(srgb 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(srgb-linear 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb-linear 50% -200)" should set the property value] expected: FAIL @@ -155,33 +50,6 @@ [e.style['color'\] = "color(srgb-linear / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(srgb-linear 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(srgb-linear calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(srgb-linear none none none / none)" should set the property value] expected: FAIL @@ -197,45 +65,6 @@ [e.style['color'\] = "color(srgb-linear 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(a98-rgb 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(a98-rgb 50% -200)" should set the property value] expected: FAIL @@ -254,33 +83,6 @@ [e.style['color'\] = "color(a98-rgb / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(a98-rgb 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(a98-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(a98-rgb none none none / none)" should set the property value] expected: FAIL @@ -296,45 +98,6 @@ [e.style['color'\] = "color(a98-rgb 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(rec2020 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(rec2020 50% -200)" should set the property value] expected: FAIL @@ -353,33 +116,6 @@ [e.style['color'\] = "color(rec2020 / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(rec2020 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(rec2020 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(rec2020 none none none / none)" should set the property value] expected: FAIL @@ -395,45 +131,6 @@ [e.style['color'\] = "color(rec2020 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(prophoto-rgb 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(prophoto-rgb 50% -200)" should set the property value] expected: FAIL @@ -452,33 +149,6 @@ [e.style['color'\] = "color(prophoto-rgb / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(prophoto-rgb 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(prophoto-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(prophoto-rgb none none none / none)" should set the property value] expected: FAIL @@ -494,45 +164,6 @@ [e.style['color'\] = "color(prophoto-rgb 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(display-p3 0% 0% 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 10% 10% 10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 .2 .2 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0% 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 20% 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 20% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 400% 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 50% -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 50% -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(display-p3 50% -200)" should set the property value] expected: FAIL @@ -551,33 +182,6 @@ [e.style['color'\] = "color(display-p3 / 0.5)" should set the property value] expected: FAIL - [e.style['color'\] = "color(display-p3 200 200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 200 200 200 / 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 -200 -200 -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 -200 -200 -200 / -200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 200% 200% 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 200% 200% 200% / 200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 -200% -200% -200% / -200%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(display-p3 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(display-p3 none none none / none)" should set the property value] expected: FAIL @@ -593,48 +197,6 @@ [e.style['color'\] = "color(display-p3 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz 0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 1 1 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 1 1 1 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz -1 -1 -1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0.1 0.1 0.1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 10 10 10)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz .2 .2 .25)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz .20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz .20 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz 1 1)" should set the property value] expected: FAIL @@ -653,9 +215,6 @@ [e.style['color'\] = "color(xyz / 50%)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz none none none / none)" should set the property value] expected: FAIL @@ -671,48 +230,6 @@ [e.style['color'\] = "color(xyz 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d50 0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 1 1 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 1 1 1 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 -1 -1 -1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0.1 0.1 0.1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 10 10 10)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 .2 .2 .25)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 .20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 .20 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d50 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d50 1 1)" should set the property value] expected: FAIL @@ -731,9 +248,6 @@ [e.style['color'\] = "color(xyz-d50 / 50%)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d50 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d50 none none none / none)" should set the property value] expected: FAIL @@ -749,48 +263,6 @@ [e.style['color'\] = "color(xyz-d50 0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d65 0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 1 1 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 1 1 1 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 -1 -1 -1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0.1 0.1 0.1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 10 10 10)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 .2 .2 .25)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 .20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 .20 0 10/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color(xyz-d65 0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d65 1 1)" should set the property value] expected: FAIL @@ -809,9 +281,6 @@ [e.style['color'\] = "color(xyz-d65 / 50%)" should set the property value] expected: FAIL - [e.style['color'\] = "color(xyz-d65 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))" should set the property value] - expected: FAIL - [e.style['color'\] = "color(xyz-d65 none none none / none)" should set the property value] expected: FAIL diff --git a/tests/wpt/meta/css/css-color/parsing/color-valid-color-mix-function.html.ini b/tests/wpt/meta/css/css-color/parsing/color-valid-color-mix-function.html.ini index 1c3ee092b7b..07bed4eb5cf 100644 --- a/tests/wpt/meta/css/css-color/parsing/color-valid-color-mix-function.html.ini +++ b/tests/wpt/meta/css/css-color/parsing/color-valid-color-mix-function.html.ini @@ -1,166 +1,4 @@ [color-valid-color-mix-function.html] - [e.style['color'\] = "color-mix(in srgb, red, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red calc(20%), blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, currentcolor, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red 60%, blue 40%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, red, hsl(120, 100%, 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 25%, hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, 25% hsl(120deg 10% 20%), hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), 25% hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), hsl(30deg 30% 40%) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 25%, hsl(30deg 30% 40%) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 30%, hsl(30deg 30% 40%) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 12.5%, hsl(30deg 30% 40%) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 0%, hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4), hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%) 25%, hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, 25% hsl(120deg 10% 20% / .4), hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4), 25% hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4), hsl(30deg 30% 40% / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 25%, hsl(30deg 30% 40% / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 30%, hsl(30deg 30% 40% / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 12.5%, hsl(30deg 30% 40% / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20% / .4) 0%, hsl(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl shorter hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl longer hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl increasing hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(40deg 50% 50%), hsl(60deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(60deg 50% 50%), hsl(40deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(50deg 50% 50%), hsl(330deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(330deg 50% 50%), hsl(50deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(20deg 50% 50%), hsl(320deg 50% 50%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl decreasing hue, hsl(320deg 50% 50%), hsl(20deg 50% 50%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hsl, hsl(none none none), hsl(none none none))" should set the property value] expected: FAIL @@ -188,171 +26,36 @@ [e.style['color'\] = "color-mix(in hsl, hsl(120deg 40% 40% / none), hsl(0deg 40% 40% / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, color(display-p3 0 1 0) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lab(100 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lab(0 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lch(100 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, lch(0 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklab(100 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklab(0 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklch(100 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklch(0 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 25%, hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, 25% hwb(120deg 10% 20%), hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), 25% hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), hwb(30deg 30% 40%) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 25%, hwb(30deg 30% 40%) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 30%, hwb(30deg 30% 40%) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 12.5%, hwb(30deg 30% 40%) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%) 0%, hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4), hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 25%, hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, 25% hwb(120deg 10% 20% / .4), hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), 25% hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4), hwb(30deg 30% 40% / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 25%, hwb(30deg 30% 40% / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 30%, hwb(30deg 30% 40% / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 12.5%, hwb(30deg 30% 40% / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / .4) 0%, hwb(30deg 30% 40% / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb shorter hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb longer hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb longer hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL [e.style['color'\] = "color-mix(in hwb increasing hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(40deg 30% 40%), hwb(60deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(60deg 30% 40%), hwb(40deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(50deg 30% 40%), hwb(330deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(330deg 30% 40%), hwb(50deg 30% 40%))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb decreasing hue, hwb(20deg 30% 40%), hwb(320deg 30% 40%))" should set the property value] expected: FAIL @@ -386,177 +89,12 @@ [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20% / none), hwb(30deg 30% 40% / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb, color(display-p3 0 1 0) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lab(100 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lab(0 104.3 -50.9) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lch(100 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, lch(0 116 334) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklab(100 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklab(0 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklch(100 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hwb, oklch(0 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg), lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 25%, lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, 25% lch(10 20 30deg), lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg), 25% lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg), lch(50 60 70deg) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 25%, lch(50 60 70deg) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 30%, lch(50 60 70deg) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 12.5%, lch(50 60 70deg) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg) 0%, lch(50 60 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4), lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 25%, lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, 25% lch(10 20 30deg / .4), lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4), 25% lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4), lch(50 60 70deg / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 25%, lch(50 60 70deg / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 30%, lch(50 60 70deg / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 12.5%, lch(50 60 70deg / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(10 20 30deg / .4) 0%, lch(50 60 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch shorter hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch longer hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch increasing hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 40deg), lch(100 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 60deg), lch(100 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 50deg), lch(100 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 330deg), lch(100 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 20deg), lch(100 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lch decreasing hue, lch(100 0 320deg), lch(100 0 20deg))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in lch, lch(none none none), lch(none none none))" should set the property value] expected: FAIL @@ -755,60 +293,6 @@ [e.style['color'\] = "color-mix(in oklch, oklch(10 20 30deg / none), oklch(50 60 70deg / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in lab, lab(10 20 30), lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 25%, lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, 25% lab(10 20 30), lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30), 25% lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30), lab(50 60 70) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 25%, lab(50 60 70) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 30%, lab(50 60 70) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 12.5%, lab(50 60 70) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30) 0%, lab(50 60 70))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4), lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 25%, lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, 25% lab(10 20 30 / .4), lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4), 25% lab(50 60 70 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4), lab(50 60 70 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 25%, lab(50 60 70 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 30%, lab(50 60 70 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 12.5%, lab(50 60 70 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in lab, lab(10 20 30 / .4) 0%, lab(50 60 70 / .8))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in lab, lab(none none none), lab(none none none))" should set the property value] expected: FAIL @@ -917,57 +401,6 @@ [e.style['color'\] = "color-mix(in oklab, oklab(10 20 30 / none), oklab(50 60 70 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3), color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 25%, color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3), color(srgb .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 25%, color(srgb .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 30%, color(srgb .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 12.5%, color(srgb .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3) 0%, color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .5), color(srgb .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 25%, color(srgb .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4), color(srgb .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 25%, color(srgb .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 30%, color(srgb .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 12.5%, color(srgb .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / .4) 0%, color(srgb .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb 2 3 4 / 5), color(srgb 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb -2 -3 -4), color(srgb -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb -2 -3 -4 / -5), color(srgb -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in srgb, color(srgb none none none), color(srgb none none none))" should set the property value] expected: FAIL @@ -995,57 +428,6 @@ [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3 / none), color(srgb .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3), color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 25%, color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3), color(srgb-linear .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 25%, color(srgb-linear .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 30%, color(srgb-linear .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 12.5%, color(srgb-linear .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3) 0%, color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .5), color(srgb-linear .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 25%, color(srgb-linear .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4), color(srgb-linear .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 25%, color(srgb-linear .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 30%, color(srgb-linear .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 12.5%, color(srgb-linear .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / .4) 0%, color(srgb-linear .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear 2 3 4 / 5), color(srgb-linear 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear -2 -3 -4), color(srgb-linear -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear -2 -3 -4 / -5), color(srgb-linear -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear none none none), color(srgb-linear none none none))" should set the property value] expected: FAIL @@ -1073,57 +455,6 @@ [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3 / none), color(srgb-linear .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3), color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 25%, color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3), color(xyz .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 25%, color(xyz .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 30%, color(xyz .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 12.5%, color(xyz .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3) 0%, color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .5), color(xyz .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 25%, color(xyz .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4), color(xyz .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 25%, color(xyz .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 30%, color(xyz .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 12.5%, color(xyz .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / .4) 0%, color(xyz .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz 2 3 4 / 5), color(xyz 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz -2 -3 -4), color(xyz -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz -2 -3 -4 / -5), color(xyz -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in xyz, color(xyz none none none), color(xyz none none none))" should set the property value] expected: FAIL @@ -1151,57 +482,6 @@ [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3 / none), color(xyz .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3), color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 25%, color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3), color(xyz-d50 .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 25%, color(xyz-d50 .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 30%, color(xyz-d50 .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 12.5%, color(xyz-d50 .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3) 0%, color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .5), color(xyz-d50 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 25%, color(xyz-d50 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4), color(xyz-d50 .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 25%, color(xyz-d50 .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 30%, color(xyz-d50 .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 12.5%, color(xyz-d50 .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / .4) 0%, color(xyz-d50 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 2 3 4 / 5), color(xyz-d50 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 -2 -3 -4), color(xyz-d50 -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 -2 -3 -4 / -5), color(xyz-d50 -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 none none none), color(xyz-d50 none none none))" should set the property value] expected: FAIL @@ -1229,57 +509,6 @@ [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3 / none), color(xyz-d50 .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3), color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 25%, color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3), color(xyz-d65 .5 .6 .7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 25%, color(xyz-d65 .5 .6 .7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 30%, color(xyz-d65 .5 .6 .7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 12.5%, color(xyz-d65 .5 .6 .7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3) 0%, color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .5), color(xyz-d65 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 25%, color(xyz-d65 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4), color(xyz-d65 .5 .6 .7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 25%, color(xyz-d65 .5 .6 .7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 30%, color(xyz-d65 .5 .6 .7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 12.5%, color(xyz-d65 .5 .6 .7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / .4) 0%, color(xyz-d65 .5 .6 .7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 2 3 4 / 5), color(xyz-d65 4 6 8 / 10))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 -2 -3 -4), color(xyz-d65 -4 -6 -8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 -2 -3 -4 / -5), color(xyz-d65 -4 -6 -8 / -10))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 none none none), color(xyz-d65 none none none))" should set the property value] expected: FAIL @@ -1307,162 +536,6 @@ [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3 / none), color(xyz-d65 .5 .6 .7 / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in hsl, oklab(1 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, oklch(1 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, oklab(1 0.365 -0.16) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, oklch(1 0.399 336.3) 100%, rgb(0, 0, 0) 0%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg), oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 25%, oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, 25% oklch(0.1 0.2 30deg), oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg), 25% oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg), oklch(0.5 0.6 70deg) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 25%, oklch(0.5 0.6 70deg) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 30%, oklch(0.5 0.6 70deg) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 12.5%, oklch(0.5 0.6 70deg) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg) 0%, oklch(0.5 0.6 70deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4), oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 25%, oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, 25% oklch(0.1 0.2 30deg / .4), oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4), 25% oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4), oklch(0.5 0.6 70deg / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 25%, oklch(0.5 0.6 70deg / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 30%, oklch(0.5 0.6 70deg / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 12.5%, oklch(0.5 0.6 70deg / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / .4) 0%, oklch(0.5 0.6 70deg / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch shorter hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch longer hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch increasing hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 40deg), oklch(1 0 60deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 60deg), oklch(1 0 40deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 50deg), oklch(1 0 330deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 330deg), oklch(1 0 50deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 20deg), oklch(1 0 320deg))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklch decreasing hue, oklch(1 0 320deg), oklch(1 0 20deg))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in oklch, oklch(none none none), oklch(0.5 0.6 70deg))" should set the property value] expected: FAIL @@ -1487,60 +560,6 @@ [e.style['color'\] = "color-mix(in oklch, oklch(0.1 0.2 30deg / none), oklch(0.5 0.6 70deg / none))" should set the property value] expected: FAIL - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3), oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 25%, oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, 25% oklab(0.1 0.2 0.3), oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3), 25% oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3), oklab(0.5 0.6 0.7) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 25%, oklab(0.5 0.6 0.7) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 30%, oklab(0.5 0.6 0.7) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 12.5%, oklab(0.5 0.6 0.7) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3) 0%, oklab(0.5 0.6 0.7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4), oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 25%, oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, 25% oklab(0.1 0.2 0.3 / .4), oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4), 25% oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4), oklab(0.5 0.6 0.7 / .8) 25%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 25%, oklab(0.5 0.6 0.7 / .8) 75%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 30%, oklab(0.5 0.6 0.7 / .8) 90%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 12.5%, oklab(0.5 0.6 0.7 / .8) 37.5%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in oklab, oklab(0.1 0.2 0.3 / .4) 0%, oklab(0.5 0.6 0.7 / .8))" should set the property value] - expected: FAIL - [e.style['color'\] = "color-mix(in oklab, oklab(none none none), oklab(0.5 0.6 0.7))" should set the property value] expected: FAIL @@ -1600,54 +619,3 @@ [e.style['color'\] = "color-mix(in hwb specified hue, hwb(320deg 30% 40%), hwb(20deg 30% 40%))" should set the property value] expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, 70% red, 50% blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red 50%, blue)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, red, blue 50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, 50% hsl(120deg 10% 20%), hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hsl, hsl(120deg 10% 20%), 50% hsl(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, 50% hwb(120deg 10% 20%), hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in hwb, hwb(120deg 10% 20%), 50% hwb(30deg 30% 40%))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, 50% color(srgb .1 .2 .3), color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb, color(srgb .1 .2 .3), 50% color(srgb .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, 50% color(srgb-linear .1 .2 .3), color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in srgb-linear, color(srgb-linear .1 .2 .3), 50% color(srgb-linear .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, 50% color(xyz .1 .2 .3), color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz, color(xyz .1 .2 .3), 50% color(xyz .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, 50% color(xyz-d50 .1 .2 .3), color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d50, color(xyz-d50 .1 .2 .3), 50% color(xyz-d50 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, 50% color(xyz-d65 .1 .2 .3), color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL - - [e.style['color'\] = "color-mix(in xyz-d65, color(xyz-d65 .1 .2 .3), 50% color(xyz-d65 .5 .6 .7))" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/parsing/color-valid-lab.html.ini b/tests/wpt/meta/css/css-color/parsing/color-valid-lab.html.ini index 9d60cf5d19c..7f475574c45 100644 --- a/tests/wpt/meta/css/css-color/parsing/color-valid-lab.html.ini +++ b/tests/wpt/meta/css/css-color/parsing/color-valid-lab.html.ini @@ -1,52 +1,10 @@ [color-valid-lab.html] - [e.style['color'\] = "lab(0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(20 0 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(20 0 10/50%)" should set the property value] - expected: FAIL - [e.style['color'\] = "lab(400 0 10/50%)" should set the property value] expected: FAIL - [e.style['color'\] = "lab(50 -160 160)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(50 -200 200)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(0 0 0 / 300%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(-40 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(50 -20 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lab(50 0 -20)" should set the property value] - expected: FAIL - [e.style['color'\] = "lab(calc(50 * 3) calc(0.5 - 1) calc(1.5) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "lab(calc(-50 * 3) calc(0.5 + 1) calc(-1.5) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "lab(none none none / none)" should set the property value] expected: FAIL @@ -62,15 +20,6 @@ [e.style['color'\] = "lab(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 0.5)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(20 0 10/0.5)" should set the property value] expected: FAIL @@ -86,15 +35,6 @@ [e.style['color'\] = "oklab(50 -200 200)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0 0 0 / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0 0 0 / 300%)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(-40 0 0)" should set the property value] expected: FAIL @@ -125,66 +65,9 @@ [e.style['color'\] = "oklab(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "lch(0 0 0deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(0 0 0deg / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(0 0 0deg / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(100 230 0deg / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20 50 20deg/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20 50 20deg/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 20deg / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 20deg / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 1.28rad)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 380deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 -340deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 740deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 -700deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(-40 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20 -20 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(0 0 0 / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 20 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(10 20 -700)" should set the property value] - expected: FAIL - [e.style['color'\] = "lch(calc(50 * 3) calc(0.5 - 1) calc(20deg * 2) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "lch(calc(-50 * 3) calc(0.5 + 1) calc(-20deg * 2) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "lch(none none none / none)" should set the property value] expected: FAIL @@ -200,15 +83,6 @@ [e.style['color'\] = "lch(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(0 0 0deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0 0 0deg / 1)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0 0 0deg / 0.5)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(100 230 0deg / 0.5)" should set the property value] expected: FAIL @@ -245,9 +119,6 @@ [e.style['color'\] = "oklch(20 -20 0)" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(0 0 0 / 0.5)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(10 20 20 / 110%)" should set the property value] expected: FAIL @@ -275,87 +146,18 @@ [e.style['color'\] = "oklch(0 0 0 / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0.2 0 0.1/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.2 0 0.1/50%)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(4 0 0.1/50%)" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(0.5 -1.6 1.6)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.5 -2 2)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(-0.4 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.5 -2 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(0.5 0 -2)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(calc(0.5 * 3) calc(0.5 - 1) calc(1.5) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "oklab(calc(-0.5 * 3) calc(0.5 + 1) calc(-1.5) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "oklab(0.2 none none / none)" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(1 2.3 0deg / 0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.2 0.5 20deg/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.2 0.5 20deg/50%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 20deg / -10%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 20deg / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 1.28rad)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 380deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 -340deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 740deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 -700deg)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(-4 0 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.2 -0.2 0)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 20 / 110%)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(0.1 0.2 -700)" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(calc(0.5 * 3) calc(0.5 - 1) calc(20deg * 2) / calc(-0.5 + 1))" should set the property value] expected: FAIL - [e.style['color'\] = "oklch(calc(-0.5 * 3) calc(0.5 + 1) calc(-20deg * 2) / calc(-0.5 * 2))" should set the property value] - expected: FAIL - [e.style['color'\] = "oklch(0.2 none none / none)" should set the property value] expected: FAIL @@ -418,15 +220,3 @@ [e.style['color'\] = "oklch(calc(0 / 0) 0 0)" should set the property value] expected: FAIL - - [e.style['color'\] = "lab(20% -50% 90%/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklab(20% 70% -80%/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "lch(20% 80% 10/0.5)" should set the property value] - expected: FAIL - - [e.style['color'\] = "oklch(20% 60% 10/0.5)" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-001.html.ini b/tests/wpt/meta/css/css-color/predefined-001.html.ini deleted file mode 100644 index adf73c88f76..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-002.html.ini b/tests/wpt/meta/css/css-color/predefined-002.html.ini deleted file mode 100644 index 79d4157ed3c..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-005.html.ini b/tests/wpt/meta/css/css-color/predefined-005.html.ini deleted file mode 100644 index 028c9832cd6..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-006.html.ini b/tests/wpt/meta/css/css-color/predefined-006.html.ini deleted file mode 100644 index cd7b34ac24a..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-006.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-007.html.ini b/tests/wpt/meta/css/css-color/predefined-007.html.ini deleted file mode 100644 index e9d433babca..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-007.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-008.html.ini b/tests/wpt/meta/css/css-color/predefined-008.html.ini deleted file mode 100644 index 502caa54e8c..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-008.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-008.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-009.html.ini b/tests/wpt/meta/css/css-color/predefined-009.html.ini deleted file mode 100644 index ddac26298fa..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-009.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-009.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-010.html.ini b/tests/wpt/meta/css/css-color/predefined-010.html.ini deleted file mode 100644 index 0fbc25c1700..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-010.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-010.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-011.html.ini b/tests/wpt/meta/css/css-color/predefined-011.html.ini deleted file mode 100644 index 06fc2a5b9c7..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-011.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-011.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-012.html.ini b/tests/wpt/meta/css/css-color/predefined-012.html.ini deleted file mode 100644 index bb8e38e06ea..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-012.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-012.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/predefined-016.html.ini b/tests/wpt/meta/css/css-color/predefined-016.html.ini deleted file mode 100644 index e5e4900e7db..00000000000 --- a/tests/wpt/meta/css/css-color/predefined-016.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[predefined-016.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/prophoto-rgb-001.html.ini b/tests/wpt/meta/css/css-color/prophoto-rgb-001.html.ini deleted file mode 100644 index 82ccdc78354..00000000000 --- a/tests/wpt/meta/css/css-color/prophoto-rgb-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/prophoto-rgb-002.html.ini b/tests/wpt/meta/css/css-color/prophoto-rgb-002.html.ini deleted file mode 100644 index d802525d8d2..00000000000 --- a/tests/wpt/meta/css/css-color/prophoto-rgb-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/prophoto-rgb-003.html.ini b/tests/wpt/meta/css/css-color/prophoto-rgb-003.html.ini deleted file mode 100644 index a0cc754b85b..00000000000 --- a/tests/wpt/meta/css/css-color/prophoto-rgb-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/prophoto-rgb-004.html.ini b/tests/wpt/meta/css/css-color/prophoto-rgb-004.html.ini deleted file mode 100644 index df7b8102e59..00000000000 --- a/tests/wpt/meta/css/css-color/prophoto-rgb-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/prophoto-rgb-005.html.ini b/tests/wpt/meta/css/css-color/prophoto-rgb-005.html.ini deleted file mode 100644 index 425c447810e..00000000000 --- a/tests/wpt/meta/css/css-color/prophoto-rgb-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[prophoto-rgb-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/rec2020-001.html.ini b/tests/wpt/meta/css/css-color/rec2020-001.html.ini deleted file mode 100644 index e77d02899ca..00000000000 --- a/tests/wpt/meta/css/css-color/rec2020-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/rec2020-002.html.ini b/tests/wpt/meta/css/css-color/rec2020-002.html.ini deleted file mode 100644 index 12fbdca64f5..00000000000 --- a/tests/wpt/meta/css/css-color/rec2020-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/rec2020-003.html.ini b/tests/wpt/meta/css/css-color/rec2020-003.html.ini deleted file mode 100644 index c2b6f1f00f1..00000000000 --- a/tests/wpt/meta/css/css-color/rec2020-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/rec2020-004.html.ini b/tests/wpt/meta/css/css-color/rec2020-004.html.ini deleted file mode 100644 index 4b634f80462..00000000000 --- a/tests/wpt/meta/css/css-color/rec2020-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/rec2020-005.html.ini b/tests/wpt/meta/css/css-color/rec2020-005.html.ini deleted file mode 100644 index 10efd625a30..00000000000 --- a/tests/wpt/meta/css/css-color/rec2020-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[rec2020-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/srgb-linear-001.html.ini b/tests/wpt/meta/css/css-color/srgb-linear-001.html.ini deleted file mode 100644 index 20cb1f76cbf..00000000000 --- a/tests/wpt/meta/css/css-color/srgb-linear-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/srgb-linear-002.html.ini b/tests/wpt/meta/css/css-color/srgb-linear-002.html.ini deleted file mode 100644 index 8fe3d4a21b0..00000000000 --- a/tests/wpt/meta/css/css-color/srgb-linear-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/srgb-linear-003.html.ini b/tests/wpt/meta/css/css-color/srgb-linear-003.html.ini deleted file mode 100644 index d7a3820c6f9..00000000000 --- a/tests/wpt/meta/css/css-color/srgb-linear-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/srgb-linear-004.html.ini b/tests/wpt/meta/css/css-color/srgb-linear-004.html.ini deleted file mode 100644 index 447460888cc..00000000000 --- a/tests/wpt/meta/css/css-color/srgb-linear-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[srgb-linear-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-001.html.ini b/tests/wpt/meta/css/css-color/xyz-001.html.ini deleted file mode 100644 index 35911afcf54..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-002.html.ini b/tests/wpt/meta/css/css-color/xyz-002.html.ini deleted file mode 100644 index 07f94158837..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-003.html.ini b/tests/wpt/meta/css/css-color/xyz-003.html.ini deleted file mode 100644 index ea7d862a256..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-004.html.ini b/tests/wpt/meta/css/css-color/xyz-004.html.ini deleted file mode 100644 index c4e9432fc80..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-005.html.ini b/tests/wpt/meta/css/css-color/xyz-005.html.ini deleted file mode 100644 index d88e95af7d9..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d50-001.html.ini b/tests/wpt/meta/css/css-color/xyz-d50-001.html.ini deleted file mode 100644 index 2e646c25051..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d50-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d50-002.html.ini b/tests/wpt/meta/css/css-color/xyz-d50-002.html.ini deleted file mode 100644 index eca55cac250..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d50-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d50-003.html.ini b/tests/wpt/meta/css/css-color/xyz-d50-003.html.ini deleted file mode 100644 index 9316bd23bb6..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d50-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d50-004.html.ini b/tests/wpt/meta/css/css-color/xyz-d50-004.html.ini deleted file mode 100644 index d93ec77d499..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d50-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d50-005.html.ini b/tests/wpt/meta/css/css-color/xyz-d50-005.html.ini deleted file mode 100644 index f9a15ee3f0a..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d50-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d50-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d65-001.html.ini b/tests/wpt/meta/css/css-color/xyz-d65-001.html.ini deleted file mode 100644 index 8dabc07b1c3..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d65-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-001.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d65-002.html.ini b/tests/wpt/meta/css/css-color/xyz-d65-002.html.ini deleted file mode 100644 index 6a844ba187d..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d65-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-002.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d65-003.html.ini b/tests/wpt/meta/css/css-color/xyz-d65-003.html.ini deleted file mode 100644 index ae11ead40fc..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d65-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-003.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d65-004.html.ini b/tests/wpt/meta/css/css-color/xyz-d65-004.html.ini deleted file mode 100644 index e9b0bc28c06..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d65-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-004.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-color/xyz-d65-005.html.ini b/tests/wpt/meta/css/css-color/xyz-d65-005.html.ini deleted file mode 100644 index 06ba629176c..00000000000 --- a/tests/wpt/meta/css/css-color/xyz-d65-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[xyz-d65-005.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-computed.html.ini b/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-computed.html.ini index 9e15d59a455..e874313f3f8 100644 --- a/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-computed.html.ini +++ b/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-computed.html.ini @@ -1,10 +1,4 @@ [gradient-interpolation-method-computed.html] - [Property background-image value 'linear-gradient(30deg, color(srgb 1 0 0), blue)'] - expected: FAIL - - [Property background-image value 'linear-gradient(to right bottom, color(srgb 1 0 0), blue)'] - expected: FAIL - [Property background-image value 'linear-gradient(in lab, red, blue)'] expected: FAIL @@ -815,15 +809,6 @@ [Property background-image value 'linear-gradient(in oklch decreasing hue to right bottom, color(srgb 1 0 0), blue)'] expected: FAIL - [Property background-image value 'radial-gradient(50px, color(srgb 1 0 0), blue)'] - expected: FAIL - - [Property background-image value 'radial-gradient(ellipse 50% 40em, color(srgb 1 0 0), blue)'] - expected: FAIL - - [Property background-image value 'radial-gradient(at right center, color(srgb 1 0 0), blue)'] - expected: FAIL - [Property background-image value 'radial-gradient(in lab, red, blue)'] expected: FAIL diff --git a/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-valid.html.ini b/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-valid.html.ini index 7a6a405df4f..22e41992693 100644 --- a/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-valid.html.ini +++ b/tests/wpt/meta/css/css-images/parsing/gradient-interpolation-method-valid.html.ini @@ -1,10 +1,4 @@ [gradient-interpolation-method-valid.html] - [e.style['background-image'\] = "linear-gradient(30deg, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - - [e.style['background-image'\] = "linear-gradient(to right bottom, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - [e.style['background-image'\] = "linear-gradient(in lab, red, blue)" should set the property value] expected: FAIL @@ -815,15 +809,6 @@ [e.style['background-image'\] = "linear-gradient(in oklch decreasing hue to right bottom, color(srgb 1 0 0), blue)" should set the property value] expected: FAIL - [e.style['background-image'\] = "radial-gradient(50px, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - - [e.style['background-image'\] = "radial-gradient(ellipse 50% 40em, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - - [e.style['background-image'\] = "radial-gradient(at right center, color(srgb 1 0 0), blue)" should set the property value] - expected: FAIL - [e.style['background-image'\] = "radial-gradient(in lab, red, blue)" should set the property value] expected: FAIL