commit 14accceecd4614bea6f5a53d75edeead6f6a981d
parent a81e9ac246f2601a0895e1d0b468a618f06d9131
Author: Rune Lillesveen <futhark@chromium.org>
Date: Tue, 16 Dec 2025 08:38:36 +0000
Bug 2005490 [wpt PR 56680] - Compute gradient values in image-set(), a=testonly
Automatic update from web-platform-tests
Compute gradient values in image-set()
Top level gradient values had values computed as necessary,
but not as gradients inside image-set() and cross-fade().
This CL implements resolution in CSSImageSetValue.
Bug: 466978530
Change-Id: Ib25ecaf2e78e5933081b2f72de7d74b0d00f5a3f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7245973
Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1557295}
--
wpt-commits: 0bf10b2e9b794074fd68b7eeae5ac5cd0059428e
wpt-pr: 56680
Diffstat:
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/testing/web-platform/tests/css/css-values/tree-counting/sibling-index-linear-gradient-gcs.html b/testing/web-platform/tests/css/css-values/tree-counting/sibling-index-linear-gradient-gcs.html
@@ -12,6 +12,9 @@
#t2 {
background-image: cross-fade(linear-gradient(white, rgb(0 0 calc(sibling-index() * 200))) 40%, rgb(0 0 calc(sibling-index() * 200)) 60%);
}
+ #t3 {
+ background-image: image-set(linear-gradient(white, rgb(0 0 calc(sibling-index() * 200))) 1x);
+ }
</style>
<div>
<div id="t1"></div>
@@ -19,6 +22,9 @@
<div>
<div id="t2"></div>
</div>
+<div>
+ <div id="t3"></div>
+</div>
<script>
test(() => {
assert_equals(getComputedStyle(t1).backgroundImage, "linear-gradient(rgb(255, 255, 255), rgb(0, 0, 200))");
@@ -27,4 +33,8 @@
test(() => {
assert_equals(getComputedStyle(t2).backgroundImage, "cross-fade(linear-gradient(rgb(255, 255, 255), rgb(0, 0, 200)) 40%, rgb(0, 0, 200) 60%)");
}, "Check that sibling-index() is resolved in serialization of computed value of linear-gradient() inside cross-fade()");
+
+ test(() => {
+ assert_equals(getComputedStyle(t3).backgroundImage, "image-set(linear-gradient(rgb(255, 255, 255), rgb(0, 0, 200)) 1dppx)");
+ }, "Check that sibling-index() is resolved in serialization of computed value of linear-gradient() inside image-set()");
</script>