mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-09 17:44:56 +09:00
LibWeb: Don't resolve color components when serializing color functions
Previously, we were incorrectly replacing color components with `None` values with 0.
This commit is contained in:
parent
a97fe3123d
commit
55769be9c6
Notes:
github-actions[bot]
2025-04-09 11:12:32 +00:00
Author: https://github.com/tcl3
Commit: 55769be9c6
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4245
Reviewed-by: https://github.com/AtkinsSJ ✅
2 changed files with 164 additions and 182 deletions
|
@ -93,55 +93,37 @@ ColorFunctionStyleValue::Resolved ColorFunctionStyleValue::resolve_properties()
|
|||
// https://www.w3.org/TR/css-color-4/#serializing-color-function-values
|
||||
String ColorFunctionStyleValue::to_string(SerializationMode mode) const
|
||||
{
|
||||
if (mode == SerializationMode::Normal) {
|
||||
auto convert_percentage = [](ValueComparingNonnullRefPtr<CSSStyleValue> const& value) -> RemoveReference<decltype(value)> {
|
||||
if (value->is_percentage())
|
||||
return NumberStyleValue::create(value->as_percentage().value() / 100);
|
||||
return value;
|
||||
};
|
||||
auto convert_percentage = [](ValueComparingNonnullRefPtr<CSSStyleValue> const& value) -> RemoveReference<decltype(value)> {
|
||||
if (value->is_percentage())
|
||||
return NumberStyleValue::create(value->as_percentage().value() / 100);
|
||||
return value;
|
||||
};
|
||||
|
||||
auto alpha = convert_percentage(m_properties.alpha);
|
||||
auto alpha = convert_percentage(m_properties.alpha);
|
||||
|
||||
bool const is_alpha_required = [&]() {
|
||||
if (alpha->is_number())
|
||||
return alpha->as_number().value() < 1;
|
||||
return true;
|
||||
}();
|
||||
bool const is_alpha_required = [&]() {
|
||||
if (alpha->is_number())
|
||||
return alpha->as_number().value() < 1;
|
||||
return true;
|
||||
}();
|
||||
|
||||
if (alpha->is_number() && alpha->as_number().value() < 0)
|
||||
alpha = NumberStyleValue::create(0);
|
||||
if (alpha->is_number() && alpha->as_number().value() < 0)
|
||||
alpha = NumberStyleValue::create(0);
|
||||
|
||||
if (is_alpha_required) {
|
||||
return MUST(String::formatted("color({} {} {} {} / {})",
|
||||
string_view_from_color_type(m_color_type),
|
||||
convert_percentage(m_properties.channels[0])->to_string(mode),
|
||||
convert_percentage(m_properties.channels[1])->to_string(mode),
|
||||
convert_percentage(m_properties.channels[2])->to_string(mode),
|
||||
alpha->to_string(mode)));
|
||||
}
|
||||
|
||||
return MUST(String::formatted("color({} {} {} {})",
|
||||
if (is_alpha_required) {
|
||||
return MUST(String::formatted("color({} {} {} {} / {})",
|
||||
string_view_from_color_type(m_color_type),
|
||||
convert_percentage(m_properties.channels[0])->to_string(mode),
|
||||
convert_percentage(m_properties.channels[1])->to_string(mode),
|
||||
convert_percentage(m_properties.channels[2])->to_string(mode)));
|
||||
convert_percentage(m_properties.channels[2])->to_string(mode),
|
||||
alpha->to_string(mode)));
|
||||
}
|
||||
|
||||
auto resolved = resolve_properties();
|
||||
if (resolved.alpha == 1) {
|
||||
return MUST(String::formatted("color({} {} {} {})",
|
||||
string_view_from_color_type(m_color_type),
|
||||
resolved.channels[0],
|
||||
resolved.channels[1],
|
||||
resolved.channels[2]));
|
||||
}
|
||||
|
||||
return MUST(String::formatted("color({} {} {} {} / {})",
|
||||
return MUST(String::formatted("color({} {} {} {})",
|
||||
string_view_from_color_type(m_color_type),
|
||||
resolved.channels[0],
|
||||
resolved.channels[1],
|
||||
resolved.channels[2],
|
||||
resolved.alpha));
|
||||
convert_percentage(m_properties.channels[0])->to_string(mode),
|
||||
convert_percentage(m_properties.channels[1])->to_string(mode),
|
||||
convert_percentage(m_properties.channels[2])->to_string(mode)));
|
||||
}
|
||||
|
||||
Color ColorFunctionStyleValue::to_color(Optional<Layout::NodeWithStyle const&>) const
|
||||
|
|
|
@ -2,8 +2,8 @@ Harness status: OK
|
|||
|
||||
Found 421 tests
|
||||
|
||||
284 Pass
|
||||
137 Fail
|
||||
377 Pass
|
||||
44 Fail
|
||||
Pass Property color value 'color(srgb 0% 0% 0%)'
|
||||
Pass Property color value 'color(srgb 10% 10% 10%)'
|
||||
Pass Property color value 'color(srgb .2 .2 25%)'
|
||||
|
@ -25,14 +25,14 @@ Pass Property color value 'color(srgb 200% 200% 200%)'
|
|||
Pass Property color value 'color(srgb 200% 200% 200% / 200%)'
|
||||
Pass Property color value 'color(srgb -200% -200% -200% / -200%)'
|
||||
Pass Property color value 'color(srgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Pass Property color value 'color(srgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Fail Property color value 'color(srgb none none none / none)'
|
||||
Fail Property color value 'color(srgb none none none)'
|
||||
Fail Property color value 'color(srgb 10% none none / none)'
|
||||
Fail Property color value 'color(srgb none none none / 0.5)'
|
||||
Fail Property color value 'color(srgb 0 0 0 / none)'
|
||||
Pass Property color value 'color(srgb calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(srgb calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(srgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Pass Property color value 'color(srgb none none none / none)'
|
||||
Pass Property color value 'color(srgb none none none)'
|
||||
Pass Property color value 'color(srgb 10% none none / none)'
|
||||
Pass Property color value 'color(srgb none none none / 0.5)'
|
||||
Pass Property color value 'color(srgb 0 0 0 / none)'
|
||||
Fail Property color value 'color(srgb calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(srgb calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(srgb calc(50% + (sign(1em - 10px) * 10%)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(srgb 0.5 0 0 / calc(50% + (sign(1em - 10px) * 10%)))'
|
||||
Pass Property color value 'color(srgb-linear 0% 0% 0%)'
|
||||
|
@ -56,14 +56,14 @@ Pass Property color value 'color(srgb-linear 200% 200% 200%)'
|
|||
Pass Property color value 'color(srgb-linear 200% 200% 200% / 200%)'
|
||||
Pass Property color value 'color(srgb-linear -200% -200% -200% / -200%)'
|
||||
Pass Property color value 'color(srgb-linear calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Pass Property color value 'color(srgb-linear calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Fail Property color value 'color(srgb-linear none none none / none)'
|
||||
Fail Property color value 'color(srgb-linear none none none)'
|
||||
Fail Property color value 'color(srgb-linear 10% none none / none)'
|
||||
Fail Property color value 'color(srgb-linear none none none / 0.5)'
|
||||
Fail Property color value 'color(srgb-linear 0 0 0 / none)'
|
||||
Pass Property color value 'color(srgb-linear calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(srgb-linear calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(srgb-linear calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Pass Property color value 'color(srgb-linear none none none / none)'
|
||||
Pass Property color value 'color(srgb-linear none none none)'
|
||||
Pass Property color value 'color(srgb-linear 10% none none / none)'
|
||||
Pass Property color value 'color(srgb-linear none none none / 0.5)'
|
||||
Pass Property color value 'color(srgb-linear 0 0 0 / none)'
|
||||
Fail Property color value 'color(srgb-linear calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(srgb-linear calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(srgb-linear calc(50% + (sign(1em - 10px) * 10%)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(srgb-linear 0.5 0 0 / calc(50% + (sign(1em - 10px) * 10%)))'
|
||||
Pass Property color value 'color(a98-rgb 0% 0% 0%)'
|
||||
|
@ -87,14 +87,14 @@ Pass Property color value 'color(a98-rgb 200% 200% 200%)'
|
|||
Pass Property color value 'color(a98-rgb 200% 200% 200% / 200%)'
|
||||
Pass Property color value 'color(a98-rgb -200% -200% -200% / -200%)'
|
||||
Pass Property color value 'color(a98-rgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Pass Property color value 'color(a98-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Fail Property color value 'color(a98-rgb none none none / none)'
|
||||
Fail Property color value 'color(a98-rgb none none none)'
|
||||
Fail Property color value 'color(a98-rgb 10% none none / none)'
|
||||
Fail Property color value 'color(a98-rgb none none none / 0.5)'
|
||||
Fail Property color value 'color(a98-rgb 0 0 0 / none)'
|
||||
Pass Property color value 'color(a98-rgb calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(a98-rgb calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(a98-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Pass Property color value 'color(a98-rgb none none none / none)'
|
||||
Pass Property color value 'color(a98-rgb none none none)'
|
||||
Pass Property color value 'color(a98-rgb 10% none none / none)'
|
||||
Pass Property color value 'color(a98-rgb none none none / 0.5)'
|
||||
Pass Property color value 'color(a98-rgb 0 0 0 / none)'
|
||||
Fail Property color value 'color(a98-rgb calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(a98-rgb calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(a98-rgb calc(50% + (sign(1em - 10px) * 10%)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(a98-rgb 0.5 0 0 / calc(50% + (sign(1em - 10px) * 10%)))'
|
||||
Pass Property color value 'color(rec2020 0% 0% 0%)'
|
||||
|
@ -118,14 +118,14 @@ Pass Property color value 'color(rec2020 200% 200% 200%)'
|
|||
Pass Property color value 'color(rec2020 200% 200% 200% / 200%)'
|
||||
Pass Property color value 'color(rec2020 -200% -200% -200% / -200%)'
|
||||
Pass Property color value 'color(rec2020 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Pass Property color value 'color(rec2020 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Fail Property color value 'color(rec2020 none none none / none)'
|
||||
Fail Property color value 'color(rec2020 none none none)'
|
||||
Fail Property color value 'color(rec2020 10% none none / none)'
|
||||
Fail Property color value 'color(rec2020 none none none / 0.5)'
|
||||
Fail Property color value 'color(rec2020 0 0 0 / none)'
|
||||
Pass Property color value 'color(rec2020 calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(rec2020 calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(rec2020 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Pass Property color value 'color(rec2020 none none none / none)'
|
||||
Pass Property color value 'color(rec2020 none none none)'
|
||||
Pass Property color value 'color(rec2020 10% none none / none)'
|
||||
Pass Property color value 'color(rec2020 none none none / 0.5)'
|
||||
Pass Property color value 'color(rec2020 0 0 0 / none)'
|
||||
Fail Property color value 'color(rec2020 calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(rec2020 calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(rec2020 calc(50% + (sign(1em - 10px) * 10%)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(rec2020 0.5 0 0 / calc(50% + (sign(1em - 10px) * 10%)))'
|
||||
Pass Property color value 'color(prophoto-rgb 0% 0% 0%)'
|
||||
|
@ -149,14 +149,14 @@ Pass Property color value 'color(prophoto-rgb 200% 200% 200%)'
|
|||
Pass Property color value 'color(prophoto-rgb 200% 200% 200% / 200%)'
|
||||
Pass Property color value 'color(prophoto-rgb -200% -200% -200% / -200%)'
|
||||
Pass Property color value 'color(prophoto-rgb calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Pass Property color value 'color(prophoto-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Fail Property color value 'color(prophoto-rgb none none none / none)'
|
||||
Fail Property color value 'color(prophoto-rgb none none none)'
|
||||
Fail Property color value 'color(prophoto-rgb 10% none none / none)'
|
||||
Fail Property color value 'color(prophoto-rgb none none none / 0.5)'
|
||||
Fail Property color value 'color(prophoto-rgb 0 0 0 / none)'
|
||||
Pass Property color value 'color(prophoto-rgb calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(prophoto-rgb calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(prophoto-rgb calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Pass Property color value 'color(prophoto-rgb none none none / none)'
|
||||
Pass Property color value 'color(prophoto-rgb none none none)'
|
||||
Pass Property color value 'color(prophoto-rgb 10% none none / none)'
|
||||
Pass Property color value 'color(prophoto-rgb none none none / 0.5)'
|
||||
Pass Property color value 'color(prophoto-rgb 0 0 0 / none)'
|
||||
Fail Property color value 'color(prophoto-rgb calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(prophoto-rgb calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(prophoto-rgb calc(50% + (sign(1em - 10px) * 10%)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(prophoto-rgb 0.5 0 0 / calc(50% + (sign(1em - 10px) * 10%)))'
|
||||
Pass Property color value 'color(display-p3 0% 0% 0%)'
|
||||
|
@ -180,14 +180,14 @@ Pass Property color value 'color(display-p3 200% 200% 200%)'
|
|||
Pass Property color value 'color(display-p3 200% 200% 200% / 200%)'
|
||||
Pass Property color value 'color(display-p3 -200% -200% -200% / -200%)'
|
||||
Pass Property color value 'color(display-p3 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Pass Property color value 'color(display-p3 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Fail Property color value 'color(display-p3 none none none / none)'
|
||||
Fail Property color value 'color(display-p3 none none none)'
|
||||
Fail Property color value 'color(display-p3 10% none none / none)'
|
||||
Fail Property color value 'color(display-p3 none none none / 0.5)'
|
||||
Fail Property color value 'color(display-p3 0 0 0 / none)'
|
||||
Pass Property color value 'color(display-p3 calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(display-p3 calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(display-p3 calc(50% * 3) calc(-150% / 3) calc(50%) / calc(-50% * 3))'
|
||||
Pass Property color value 'color(display-p3 none none none / none)'
|
||||
Pass Property color value 'color(display-p3 none none none)'
|
||||
Pass Property color value 'color(display-p3 10% none none / none)'
|
||||
Pass Property color value 'color(display-p3 none none none / 0.5)'
|
||||
Pass Property color value 'color(display-p3 0 0 0 / none)'
|
||||
Fail Property color value 'color(display-p3 calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(display-p3 calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(display-p3 calc(50% + (sign(1em - 10px) * 10%)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(display-p3 0.5 0 0 / calc(50% + (sign(1em - 10px) * 10%)))'
|
||||
Pass Property color value 'color(xyz 0 0 0)'
|
||||
|
@ -205,13 +205,13 @@ Pass Property color value 'color(xyz 0 0 0 / -10%)'
|
|||
Pass Property color value 'color(xyz 0 0 0 / 110%)'
|
||||
Pass Property color value 'color(xyz 0 0 0 / 300%)'
|
||||
Pass Property color value 'color(xyz calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Fail Property color value 'color(xyz none none none / none)'
|
||||
Fail Property color value 'color(xyz none none none)'
|
||||
Fail Property color value 'color(xyz 0.2 none none / none)'
|
||||
Fail Property color value 'color(xyz none none none / 0.5)'
|
||||
Fail Property color value 'color(xyz 0 0 0 / none)'
|
||||
Pass Property color value 'color(xyz calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(xyz calc(0 / 0) 0 0)'
|
||||
Pass Property color value 'color(xyz none none none / none)'
|
||||
Pass Property color value 'color(xyz none none none)'
|
||||
Pass Property color value 'color(xyz 0.2 none none / none)'
|
||||
Pass Property color value 'color(xyz none none none / 0.5)'
|
||||
Pass Property color value 'color(xyz 0 0 0 / none)'
|
||||
Fail Property color value 'color(xyz calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(xyz calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(xyz calc(0.5 + (sign(1em - 10px) * 0.1)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(xyz 0.5 0 0 / calc(0.5 + (sign(1em - 10px) * 0.1)))'
|
||||
Pass Property color value 'color(xyz-d50 0 0 0)'
|
||||
|
@ -229,13 +229,13 @@ Pass Property color value 'color(xyz-d50 0 0 0 / -10%)'
|
|||
Pass Property color value 'color(xyz-d50 0 0 0 / 110%)'
|
||||
Pass Property color value 'color(xyz-d50 0 0 0 / 300%)'
|
||||
Pass Property color value 'color(xyz-d50 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Fail Property color value 'color(xyz-d50 none none none / none)'
|
||||
Fail Property color value 'color(xyz-d50 none none none)'
|
||||
Fail Property color value 'color(xyz-d50 0.2 none none / none)'
|
||||
Fail Property color value 'color(xyz-d50 none none none / 0.5)'
|
||||
Fail Property color value 'color(xyz-d50 0 0 0 / none)'
|
||||
Pass Property color value 'color(xyz-d50 calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(xyz-d50 calc(0 / 0) 0 0)'
|
||||
Pass Property color value 'color(xyz-d50 none none none / none)'
|
||||
Pass Property color value 'color(xyz-d50 none none none)'
|
||||
Pass Property color value 'color(xyz-d50 0.2 none none / none)'
|
||||
Pass Property color value 'color(xyz-d50 none none none / 0.5)'
|
||||
Pass Property color value 'color(xyz-d50 0 0 0 / none)'
|
||||
Fail Property color value 'color(xyz-d50 calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(xyz-d50 calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(xyz-d50 calc(0.5 + (sign(1em - 10px) * 0.1)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(xyz-d50 0.5 0 0 / calc(0.5 + (sign(1em - 10px) * 0.1)))'
|
||||
Pass Property color value 'color(xyz-d65 0 0 0)'
|
||||
|
@ -253,159 +253,159 @@ Pass Property color value 'color(xyz-d65 0 0 0 / -10%)'
|
|||
Pass Property color value 'color(xyz-d65 0 0 0 / 110%)'
|
||||
Pass Property color value 'color(xyz-d65 0 0 0 / 300%)'
|
||||
Pass Property color value 'color(xyz-d65 calc(0.5 + 1) calc(0.5 - 1) calc(0.5) / calc(-0.5 + 1))'
|
||||
Fail Property color value 'color(xyz-d65 none none none / none)'
|
||||
Fail Property color value 'color(xyz-d65 none none none)'
|
||||
Fail Property color value 'color(xyz-d65 0.2 none none / none)'
|
||||
Fail Property color value 'color(xyz-d65 none none none / 0.5)'
|
||||
Fail Property color value 'color(xyz-d65 0 0 0 / none)'
|
||||
Pass Property color value 'color(xyz-d65 calc(NaN) 0 0)'
|
||||
Pass Property color value 'color(xyz-d65 calc(0 / 0) 0 0)'
|
||||
Pass Property color value 'color(xyz-d65 none none none / none)'
|
||||
Pass Property color value 'color(xyz-d65 none none none)'
|
||||
Pass Property color value 'color(xyz-d65 0.2 none none / none)'
|
||||
Pass Property color value 'color(xyz-d65 none none none / 0.5)'
|
||||
Pass Property color value 'color(xyz-d65 0 0 0 / none)'
|
||||
Fail Property color value 'color(xyz-d65 calc(NaN) 0 0)'
|
||||
Fail Property color value 'color(xyz-d65 calc(0 / 0) 0 0)'
|
||||
Fail Property color value 'color(xyz-d65 calc(0.5 + (sign(1em - 10px) * 0.1)) 0 0 / 0.5)'
|
||||
Fail Property color value 'color(xyz-d65 0.5 0 0 / calc(0.5 + (sign(1em - 10px) * 0.1)))'
|
||||
Pass Property color value 'color(srgb 1.00 0.50 0.200)' [sRGB all numbers]
|
||||
Pass Property color value 'color(srgb 100% 50% 20%)' [sRGB all percent]
|
||||
Pass Property color value 'color(srgb 100% 0.5 20%)' [sRGB mixed number and percent]
|
||||
Pass Property color value 'color(srgb 1.00 50% 0.2)' [sRGB mixed number and percent 2]
|
||||
Fail Property color value 'color(srgb none none none)' [sRGB all none]
|
||||
Fail Property color value 'color(srgb 1.00 none 0.2)' [sRGB number and none]
|
||||
Fail Property color value 'color(srgb 100% none 20%)' [sRGB percent and none]
|
||||
Fail Property color value 'color(srgb 100% none 0.2)' [sRGB number, percent and none]
|
||||
Pass Property color value 'color(srgb none none none)' [sRGB all none]
|
||||
Pass Property color value 'color(srgb 1.00 none 0.2)' [sRGB number and none]
|
||||
Pass Property color value 'color(srgb 100% none 20%)' [sRGB percent and none]
|
||||
Pass Property color value 'color(srgb 100% none 0.2)' [sRGB number, percent and none]
|
||||
Pass Property color value 'color(srgb 1.00 0.50 0.200 / 0.6)' [sRGB with alpha, all numbers]
|
||||
Pass Property color value 'color(srgb 100% 50% 20% / 60%)' [sRGB with alpha, all percent]
|
||||
Pass Property color value 'color(srgb 100% 0.5 20% / 0.6)' [sRGB with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(srgb 1.00 50% 0.2 / 60%)' [sRGB with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(srgb none none none / none)' [sRGB with alpha, all none]
|
||||
Fail Property color value 'color(srgb 1.00 none 0.2 / none)' [sRGB with alpha, number and none]
|
||||
Fail Property color value 'color(srgb 100% none 20% / 30%)' [sRGB with alpha, percent and none]
|
||||
Fail Property color value 'color(srgb 100% none 0.2 / 23.7%)' [sRGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(srgb none none none / none)' [sRGB with alpha, all none]
|
||||
Pass Property color value 'color(srgb 1.00 none 0.2 / none)' [sRGB with alpha, number and none]
|
||||
Pass Property color value 'color(srgb 100% none 20% / 30%)' [sRGB with alpha, percent and none]
|
||||
Pass Property color value 'color(srgb 100% none 0.2 / 23.7%)' [sRGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(srgb-linear 1.00 0.50 0.200)' [Linear-light sRGB all numbers]
|
||||
Pass Property color value 'color(srgb-linear 100% 50% 20%)' [Linear-light sRGB all percent]
|
||||
Pass Property color value 'color(srgb-linear 100% 0.5 20%)' [Linear-light sRGB mixed number and percent]
|
||||
Pass Property color value 'color(srgb-linear 1.00 50% 0.2)' [Linear-light sRGB mixed number and percent 2]
|
||||
Fail Property color value 'color(srgb-linear none none none)' [Linear-light sRGB all none]
|
||||
Fail Property color value 'color(srgb-linear 1.00 none 0.2)' [Linear-light sRGB number and none]
|
||||
Fail Property color value 'color(srgb-linear 100% none 20%)' [Linear-light sRGB percent and none]
|
||||
Fail Property color value 'color(srgb-linear 100% none 0.2)' [Linear-light sRGB number, percent and none]
|
||||
Pass Property color value 'color(srgb-linear none none none)' [Linear-light sRGB all none]
|
||||
Pass Property color value 'color(srgb-linear 1.00 none 0.2)' [Linear-light sRGB number and none]
|
||||
Pass Property color value 'color(srgb-linear 100% none 20%)' [Linear-light sRGB percent and none]
|
||||
Pass Property color value 'color(srgb-linear 100% none 0.2)' [Linear-light sRGB number, percent and none]
|
||||
Pass Property color value 'color(srgb-linear 1.00 0.50 0.200 / 0.6)' [Linear-light sRGB with alpha, all numbers]
|
||||
Pass Property color value 'color(srgb-linear 100% 50% 20% / 60%)' [Linear-light sRGB with alpha, all percent]
|
||||
Pass Property color value 'color(srgb-linear 100% 0.5 20% / 0.6)' [Linear-light sRGB with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(srgb-linear 1.00 50% 0.2 / 60%)' [Linear-light sRGB with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(srgb-linear none none none / none)' [Linear-light sRGB with alpha, all none]
|
||||
Fail Property color value 'color(srgb-linear 1.00 none 0.2 / none)' [Linear-light sRGB with alpha, number and none]
|
||||
Fail Property color value 'color(srgb-linear 100% none 20% / 30%)' [Linear-light sRGB with alpha, percent and none]
|
||||
Fail Property color value 'color(srgb-linear 100% none 0.2 / 23.7%)' [Linear-light sRGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(srgb-linear none none none / none)' [Linear-light sRGB with alpha, all none]
|
||||
Pass Property color value 'color(srgb-linear 1.00 none 0.2 / none)' [Linear-light sRGB with alpha, number and none]
|
||||
Pass Property color value 'color(srgb-linear 100% none 20% / 30%)' [Linear-light sRGB with alpha, percent and none]
|
||||
Pass Property color value 'color(srgb-linear 100% none 0.2 / 23.7%)' [Linear-light sRGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(display-p3 1.00 0.50 0.200)' [Display P3 all numbers]
|
||||
Pass Property color value 'color(display-p3 100% 50% 20%)' [Display P3 all percent]
|
||||
Pass Property color value 'color(display-p3 100% 0.5 20%)' [Display P3 mixed number and percent]
|
||||
Pass Property color value 'color(display-p3 1.00 50% 0.2)' [Display P3 mixed number and percent 2]
|
||||
Fail Property color value 'color(display-p3 none none none)' [Display P3 all none]
|
||||
Fail Property color value 'color(display-p3 1.00 none 0.2)' [Display P3 number and none]
|
||||
Fail Property color value 'color(display-p3 100% none 20%)' [Display P3 percent and none]
|
||||
Fail Property color value 'color(display-p3 100% none 0.2)' [Display P3 number, percent and none]
|
||||
Pass Property color value 'color(display-p3 none none none)' [Display P3 all none]
|
||||
Pass Property color value 'color(display-p3 1.00 none 0.2)' [Display P3 number and none]
|
||||
Pass Property color value 'color(display-p3 100% none 20%)' [Display P3 percent and none]
|
||||
Pass Property color value 'color(display-p3 100% none 0.2)' [Display P3 number, percent and none]
|
||||
Pass Property color value 'color(display-p3 1.00 0.50 0.200 / 0.6)' [Display P3 with alpha, all numbers]
|
||||
Pass Property color value 'color(display-p3 100% 50% 20% / 60%)' [Display P3 with alpha, all percent]
|
||||
Pass Property color value 'color(display-p3 100% 0.5 20% / 0.6)' [Display P3 with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(display-p3 1.00 50% 0.2 / 60%)' [Display P3 with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(display-p3 none none none / none)' [Display P3 with alpha, all none]
|
||||
Fail Property color value 'color(display-p3 1.00 none 0.2 / none)' [Display P3 with alpha, number and none]
|
||||
Fail Property color value 'color(display-p3 100% none 20% / 30%)' [Display P3 with alpha, percent and none]
|
||||
Fail Property color value 'color(display-p3 100% none 0.2 / 23.7%)' [Display P3 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(display-p3 none none none / none)' [Display P3 with alpha, all none]
|
||||
Pass Property color value 'color(display-p3 1.00 none 0.2 / none)' [Display P3 with alpha, number and none]
|
||||
Pass Property color value 'color(display-p3 100% none 20% / 30%)' [Display P3 with alpha, percent and none]
|
||||
Pass Property color value 'color(display-p3 100% none 0.2 / 23.7%)' [Display P3 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(a98-rgb 1.00 0.50 0.200)' [A98 RGB all numbers]
|
||||
Pass Property color value 'color(a98-rgb 100% 50% 20%)' [A98 RGB all percent]
|
||||
Pass Property color value 'color(a98-rgb 100% 0.5 20%)' [A98 RGB mixed number and percent]
|
||||
Pass Property color value 'color(a98-rgb 1.00 50% 0.2)' [A98 RGB mixed number and percent 2]
|
||||
Fail Property color value 'color(a98-rgb none none none)' [A98 RGB all none]
|
||||
Fail Property color value 'color(a98-rgb 1.00 none 0.2)' [A98 RGB number and none]
|
||||
Fail Property color value 'color(a98-rgb 100% none 20%)' [A98 RGB percent and none]
|
||||
Fail Property color value 'color(a98-rgb 100% none 0.2)' [A98 RGB number, percent and none]
|
||||
Pass Property color value 'color(a98-rgb none none none)' [A98 RGB all none]
|
||||
Pass Property color value 'color(a98-rgb 1.00 none 0.2)' [A98 RGB number and none]
|
||||
Pass Property color value 'color(a98-rgb 100% none 20%)' [A98 RGB percent and none]
|
||||
Pass Property color value 'color(a98-rgb 100% none 0.2)' [A98 RGB number, percent and none]
|
||||
Pass Property color value 'color(a98-rgb 1.00 0.50 0.200 / 0.6)' [A98 RGB with alpha, all numbers]
|
||||
Pass Property color value 'color(a98-rgb 100% 50% 20% / 60%)' [A98 RGB with alpha, all percent]
|
||||
Pass Property color value 'color(a98-rgb 100% 0.5 20% / 0.6)' [A98 RGB with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(a98-rgb 1.00 50% 0.2 / 60%)' [A98 RGB with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(a98-rgb none none none / none)' [A98 RGB with alpha, all none]
|
||||
Fail Property color value 'color(a98-rgb 1.00 none 0.2 / none)' [A98 RGB with alpha, number and none]
|
||||
Fail Property color value 'color(a98-rgb 100% none 20% / 30%)' [A98 RGB with alpha, percent and none]
|
||||
Fail Property color value 'color(a98-rgb 100% none 0.2 / 23.7%)' [A98 RGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(a98-rgb none none none / none)' [A98 RGB with alpha, all none]
|
||||
Pass Property color value 'color(a98-rgb 1.00 none 0.2 / none)' [A98 RGB with alpha, number and none]
|
||||
Pass Property color value 'color(a98-rgb 100% none 20% / 30%)' [A98 RGB with alpha, percent and none]
|
||||
Pass Property color value 'color(a98-rgb 100% none 0.2 / 23.7%)' [A98 RGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(prophoto-rgb 1.00 0.50 0.200)' [ProPhoto RGB all numbers]
|
||||
Pass Property color value 'color(prophoto-rgb 100% 50% 20%)' [ProPhoto RGB all percent]
|
||||
Pass Property color value 'color(prophoto-rgb 100% 0.5 20%)' [ProPhoto RGB mixed number and percent]
|
||||
Pass Property color value 'color(prophoto-rgb 1.00 50% 0.2)' [ProPhoto RGB mixed number and percent 2]
|
||||
Fail Property color value 'color(prophoto-rgb none none none)' [ProPhoto RGB all none]
|
||||
Fail Property color value 'color(prophoto-rgb 1.00 none 0.2)' [ProPhoto RGB number and none]
|
||||
Fail Property color value 'color(prophoto-rgb 100% none 20%)' [ProPhoto RGB percent and none]
|
||||
Fail Property color value 'color(prophoto-rgb 100% none 0.2)' [ProPhoto RGB number, percent and none]
|
||||
Pass Property color value 'color(prophoto-rgb none none none)' [ProPhoto RGB all none]
|
||||
Pass Property color value 'color(prophoto-rgb 1.00 none 0.2)' [ProPhoto RGB number and none]
|
||||
Pass Property color value 'color(prophoto-rgb 100% none 20%)' [ProPhoto RGB percent and none]
|
||||
Pass Property color value 'color(prophoto-rgb 100% none 0.2)' [ProPhoto RGB number, percent and none]
|
||||
Pass Property color value 'color(prophoto-rgb 1.00 0.50 0.200 / 0.6)' [ProPhoto RGB with alpha, all numbers]
|
||||
Pass Property color value 'color(prophoto-rgb 100% 50% 20% / 60%)' [ProPhoto RGB with alpha, all percent]
|
||||
Pass Property color value 'color(prophoto-rgb 100% 0.5 20% / 0.6)' [ProPhoto RGB with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(prophoto-rgb 1.00 50% 0.2 / 60%)' [ProPhoto RGB with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(prophoto-rgb none none none / none)' [ProPhoto RGB with alpha, all none]
|
||||
Fail Property color value 'color(prophoto-rgb 1.00 none 0.2 / none)' [ProPhoto RGB with alpha, number and none]
|
||||
Fail Property color value 'color(prophoto-rgb 100% none 20% / 30%)' [ProPhoto RGB with alpha, percent and none]
|
||||
Fail Property color value 'color(prophoto-rgb 100% none 0.2 / 23.7%)' [ProPhoto RGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(prophoto-rgb none none none / none)' [ProPhoto RGB with alpha, all none]
|
||||
Pass Property color value 'color(prophoto-rgb 1.00 none 0.2 / none)' [ProPhoto RGB with alpha, number and none]
|
||||
Pass Property color value 'color(prophoto-rgb 100% none 20% / 30%)' [ProPhoto RGB with alpha, percent and none]
|
||||
Pass Property color value 'color(prophoto-rgb 100% none 0.2 / 23.7%)' [ProPhoto RGB with alpha, number, percent and none]
|
||||
Pass Property color value 'color(rec2020 1.00 0.50 0.200)' [Rec BT.2020 all numbers]
|
||||
Pass Property color value 'color(rec2020 100% 50% 20%)' [Rec BT.2020 all percent]
|
||||
Pass Property color value 'color(rec2020 100% 0.5 20%)' [Rec BT.2020 mixed number and percent]
|
||||
Pass Property color value 'color(rec2020 1.00 50% 0.2)' [Rec BT.2020 mixed number and percent 2]
|
||||
Fail Property color value 'color(rec2020 none none none)' [Rec BT.2020 all none]
|
||||
Fail Property color value 'color(rec2020 1.00 none 0.2)' [Rec BT.2020 number and none]
|
||||
Fail Property color value 'color(rec2020 100% none 20%)' [Rec BT.2020 percent and none]
|
||||
Fail Property color value 'color(rec2020 100% none 0.2)' [Rec BT.2020 number, percent and none]
|
||||
Pass Property color value 'color(rec2020 none none none)' [Rec BT.2020 all none]
|
||||
Pass Property color value 'color(rec2020 1.00 none 0.2)' [Rec BT.2020 number and none]
|
||||
Pass Property color value 'color(rec2020 100% none 20%)' [Rec BT.2020 percent and none]
|
||||
Pass Property color value 'color(rec2020 100% none 0.2)' [Rec BT.2020 number, percent and none]
|
||||
Pass Property color value 'color(rec2020 1.00 0.50 0.200 / 0.6)' [Rec BT.2020 with alpha, all numbers]
|
||||
Pass Property color value 'color(rec2020 100% 50% 20% / 60%)' [Rec BT.2020 with alpha, all percent]
|
||||
Pass Property color value 'color(rec2020 100% 0.5 20% / 0.6)' [Rec BT.2020 with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(rec2020 1.00 50% 0.2 / 60%)' [Rec BT.2020 with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(rec2020 none none none / none)' [Rec BT.2020 with alpha, all none]
|
||||
Fail Property color value 'color(rec2020 1.00 none 0.2 / none)' [Rec BT.2020 with alpha, number and none]
|
||||
Fail Property color value 'color(rec2020 100% none 20% / 30%)' [Rec BT.2020 with alpha, percent and none]
|
||||
Fail Property color value 'color(rec2020 100% none 0.2 / 23.7%)' [Rec BT.2020 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(rec2020 none none none / none)' [Rec BT.2020 with alpha, all none]
|
||||
Pass Property color value 'color(rec2020 1.00 none 0.2 / none)' [Rec BT.2020 with alpha, number and none]
|
||||
Pass Property color value 'color(rec2020 100% none 20% / 30%)' [Rec BT.2020 with alpha, percent and none]
|
||||
Pass Property color value 'color(rec2020 100% none 0.2 / 23.7%)' [Rec BT.2020 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(xyz-d50 1.00 0.50 0.200)' [CIE XYZ D50 all numbers]
|
||||
Pass Property color value 'color(xyz-d50 100% 50% 20%)' [CIE XYZ D50 all percent]
|
||||
Pass Property color value 'color(xyz-d50 100% 0.5 20%)' [CIE XYZ D50 mixed number and percent]
|
||||
Pass Property color value 'color(xyz-d50 1.00 50% 0.2)' [CIE XYZ D50 mixed number and percent 2]
|
||||
Fail Property color value 'color(xyz-d50 none none none)' [CIE XYZ D50 all none]
|
||||
Fail Property color value 'color(xyz-d50 1.00 none 0.2)' [CIE XYZ D50 number and none]
|
||||
Fail Property color value 'color(xyz-d50 100% none 20%)' [CIE XYZ D50 percent and none]
|
||||
Fail Property color value 'color(xyz-d50 100% none 0.2)' [CIE XYZ D50 number, percent and none]
|
||||
Pass Property color value 'color(xyz-d50 none none none)' [CIE XYZ D50 all none]
|
||||
Pass Property color value 'color(xyz-d50 1.00 none 0.2)' [CIE XYZ D50 number and none]
|
||||
Pass Property color value 'color(xyz-d50 100% none 20%)' [CIE XYZ D50 percent and none]
|
||||
Pass Property color value 'color(xyz-d50 100% none 0.2)' [CIE XYZ D50 number, percent and none]
|
||||
Pass Property color value 'color(xyz-d50 1.00 0.50 0.200 / 0.6)' [CIE XYZ D50 with alpha, all numbers]
|
||||
Pass Property color value 'color(xyz-d50 100% 50% 20% / 60%)' [CIE XYZ D50 with alpha, all percent]
|
||||
Pass Property color value 'color(xyz-d50 100% 0.5 20% / 0.6)' [CIE XYZ D50 with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(xyz-d50 1.00 50% 0.2 / 60%)' [CIE XYZ D50 with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(xyz-d50 none none none / none)' [CIE XYZ D50 with alpha, all none]
|
||||
Fail Property color value 'color(xyz-d50 1.00 none 0.2 / none)' [CIE XYZ D50 with alpha, number and none]
|
||||
Fail Property color value 'color(xyz-d50 100% none 20% / 30%)' [CIE XYZ D50 with alpha, percent and none]
|
||||
Fail Property color value 'color(xyz-d50 100% none 0.2 / 23.7%)' [CIE XYZ D50 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(xyz-d50 none none none / none)' [CIE XYZ D50 with alpha, all none]
|
||||
Pass Property color value 'color(xyz-d50 1.00 none 0.2 / none)' [CIE XYZ D50 with alpha, number and none]
|
||||
Pass Property color value 'color(xyz-d50 100% none 20% / 30%)' [CIE XYZ D50 with alpha, percent and none]
|
||||
Pass Property color value 'color(xyz-d50 100% none 0.2 / 23.7%)' [CIE XYZ D50 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(xyz-d65 1.00 0.50 0.200)' [CIE XYZ D65 all numbers]
|
||||
Pass Property color value 'color(xyz-d65 100% 50% 20%)' [CIE XYZ D65 all percent]
|
||||
Pass Property color value 'color(xyz-d65 100% 0.5 20%)' [CIE XYZ D65 mixed number and percent]
|
||||
Pass Property color value 'color(xyz-d65 1.00 50% 0.2)' [CIE XYZ D65 mixed number and percent 2]
|
||||
Fail Property color value 'color(xyz-d65 none none none)' [CIE XYZ D65 all none]
|
||||
Fail Property color value 'color(xyz-d65 1.00 none 0.2)' [CIE XYZ D65 number and none]
|
||||
Fail Property color value 'color(xyz-d65 100% none 20%)' [CIE XYZ D65 percent and none]
|
||||
Fail Property color value 'color(xyz-d65 100% none 0.2)' [CIE XYZ D65 number, percent and none]
|
||||
Pass Property color value 'color(xyz-d65 none none none)' [CIE XYZ D65 all none]
|
||||
Pass Property color value 'color(xyz-d65 1.00 none 0.2)' [CIE XYZ D65 number and none]
|
||||
Pass Property color value 'color(xyz-d65 100% none 20%)' [CIE XYZ D65 percent and none]
|
||||
Pass Property color value 'color(xyz-d65 100% none 0.2)' [CIE XYZ D65 number, percent and none]
|
||||
Pass Property color value 'color(xyz-d65 1.00 0.50 0.200 / 0.6)' [CIE XYZ D65 with alpha, all numbers]
|
||||
Pass Property color value 'color(xyz-d65 100% 50% 20% / 60%)' [CIE XYZ D65 with alpha, all percent]
|
||||
Pass Property color value 'color(xyz-d65 100% 0.5 20% / 0.6)' [CIE XYZ D65 with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(xyz-d65 1.00 50% 0.2 / 60%)' [CIE XYZ D65 with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(xyz-d65 none none none / none)' [CIE XYZ D65 with alpha, all none]
|
||||
Fail Property color value 'color(xyz-d65 1.00 none 0.2 / none)' [CIE XYZ D65 with alpha, number and none]
|
||||
Fail Property color value 'color(xyz-d65 100% none 20% / 30%)' [CIE XYZ D65 with alpha, percent and none]
|
||||
Fail Property color value 'color(xyz-d65 100% none 0.2 / 23.7%)' [CIE XYZ D65 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(xyz-d65 none none none / none)' [CIE XYZ D65 with alpha, all none]
|
||||
Pass Property color value 'color(xyz-d65 1.00 none 0.2 / none)' [CIE XYZ D65 with alpha, number and none]
|
||||
Pass Property color value 'color(xyz-d65 100% none 20% / 30%)' [CIE XYZ D65 with alpha, percent and none]
|
||||
Pass Property color value 'color(xyz-d65 100% none 0.2 / 23.7%)' [CIE XYZ D65 with alpha, number, percent and none]
|
||||
Pass Property color value 'color(xyz 1.00 0.50 0.200)' [CIE XYZ (implicit D65) all numbers]
|
||||
Pass Property color value 'color(xyz 100% 50% 20%)' [CIE XYZ (implicit D65) all percent]
|
||||
Pass Property color value 'color(xyz 100% 0.5 20%)' [CIE XYZ (implicit D65) mixed number and percent]
|
||||
Pass Property color value 'color(xyz 1.00 50% 0.2)' [CIE XYZ (implicit D65) mixed number and percent 2]
|
||||
Fail Property color value 'color(xyz none none none)' [CIE XYZ (implicit D65) all none]
|
||||
Fail Property color value 'color(xyz 1.00 none 0.2)' [CIE XYZ (implicit D65) number and none]
|
||||
Fail Property color value 'color(xyz 100% none 20%)' [CIE XYZ (implicit D65) percent and none]
|
||||
Fail Property color value 'color(xyz 100% none 0.2)' [CIE XYZ (implicit D65) number, percent and none]
|
||||
Pass Property color value 'color(xyz none none none)' [CIE XYZ (implicit D65) all none]
|
||||
Pass Property color value 'color(xyz 1.00 none 0.2)' [CIE XYZ (implicit D65) number and none]
|
||||
Pass Property color value 'color(xyz 100% none 20%)' [CIE XYZ (implicit D65) percent and none]
|
||||
Pass Property color value 'color(xyz 100% none 0.2)' [CIE XYZ (implicit D65) number, percent and none]
|
||||
Pass Property color value 'color(xyz 1.00 0.50 0.200 / 0.6)' [CIE XYZ (implicit D65) with alpha, all numbers]
|
||||
Pass Property color value 'color(xyz 100% 50% 20% / 60%)' [CIE XYZ (implicit D65) with alpha, all percent]
|
||||
Pass Property color value 'color(xyz 100% 0.5 20% / 0.6)' [CIE XYZ (implicit D65) with alpha, mixed number and percent]
|
||||
Pass Property color value 'color(xyz 1.00 50% 0.2 / 60%)' [CIE XYZ (implicit D65) with alpha, mixed number and percent 2]
|
||||
Fail Property color value 'color(xyz none none none / none)' [CIE XYZ (implicit D65) with alpha, all none]
|
||||
Fail Property color value 'color(xyz 1.00 none 0.2 / none)' [CIE XYZ (implicit D65) with alpha, number and none]
|
||||
Fail Property color value 'color(xyz 100% none 20% / 30%)' [CIE XYZ (implicit D65) with alpha, percent and none]
|
||||
Fail Property color value 'color(xyz 100% none 0.2 / 23.7%)' [CIE XYZ (implicit D65) with alpha, number, percent and none]
|
||||
Pass Property color value 'color(xyz none none none / none)' [CIE XYZ (implicit D65) with alpha, all none]
|
||||
Pass Property color value 'color(xyz 1.00 none 0.2 / none)' [CIE XYZ (implicit D65) with alpha, number and none]
|
||||
Pass Property color value 'color(xyz 100% none 20% / 30%)' [CIE XYZ (implicit D65) with alpha, percent and none]
|
||||
Pass Property color value 'color(xyz 100% none 0.2 / 23.7%)' [CIE XYZ (implicit D65) with alpha, number, percent and none]
|
||||
Pass Property color value 'color(srgb 1 1 1)' [Basic sRGB white]
|
||||
Pass Property color value 'color( srgb 1 1 1 )' [White with lots of space]
|
||||
Pass Property color value 'color(srgb 0.25 0.5 0.75)' [sRGB color]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue