diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
commit | 8dd16259287f58f9273002717ec4d27e97127719 (patch) | |
tree | 3863e62a53829a84037444beab3abd4ed9dfc7d0 /testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html | |
parent | Releasing progress-linux version 126.0.1-1~progress7.99u1. (diff) | |
download | firefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz firefox-8dd16259287f58f9273002717ec4d27e97127719.zip |
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html')
-rw-r--r-- | testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html b/testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html index f4c718b139..8ca9d4499a 100644 --- a/testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html +++ b/testing/web-platform/tests/css/css-properties-values-api/registered-property-computation.html @@ -155,6 +155,14 @@ test_computed_value('<color>', '#badbee33', 'rgba(186, 219, 238, 0.2)'); test_computed_value('<color>', 'tomato', 'rgb(255, 99, 71)'); test_computed_value('<color>', 'plum', 'rgb(221, 160, 221)'); test_computed_value('<color>', 'currentcolor', 'currentcolor'); +test_computed_value('<color>', 'color-mix(in srgb, black, white)', 'color(srgb 0.5 0.5 0.5)'); +test_computed_value('<color>', 'color-mix(in srgb, currentcolor, red)', 'color-mix(in srgb, currentcolor, rgb(255, 0, 0))'); +test_computed_value('<color>', 'color-mix(in srgb, currentcolor, #ffffff 70%)', 'color-mix(in srgb, currentcolor 30%, rgb(255, 255, 255))'); +test_computed_value('<color>', 'color-mix(in srgb, currentcolor 20%, #ffffff 20%)', 'color-mix(in srgb, currentcolor 20%, rgb(255, 255, 255) 20%)'); +test_computed_value('<color>', 'light-dark(currentcolor, red)', 'currentcolor'); +test_computed_value('<color>', 'light-dark(lime, red)', 'rgb(0, 255, 0)'); +test_computed_value('<color>', 'color(from lime srgb g g g)', 'color(srgb 1 1 1)'); +test_computed_value('<color>', 'color(srgb 1 1 1 / calc(NaN))', 'color(srgb 1 1 1 / 0)'); // Custom ident values that look like color keywords should not be converted. test_computed_value('*', 'tomato', 'tomato'); |