tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 2f30170bd486f14e1461ae8a5f61dbcfe7d5b62f
parent 3a7de52b2ef6f9bef29c0750d9748e400adcba86
Author: Sam Weinig <sam@webkit.org>
Date:   Mon,  5 Jan 2026 10:22:10 +0000

Bug 2007747 [wpt PR 56925] - Fixes the specified value serialization of calc() expressions in animation-range, a=testonly

Automatic update from web-platform-tests
Fixes the specified value serialization of calc() expressions in animation-range (#56925)

Previously, the test assumed that `animation-range: entry calc(0%) entry calc(100%)`
could be simplified down to `animation-range: entry` for the specified value
serialization, but CSS Value 4 requires calc() expressions to be not be simplified
that far until the computed value.

See example 46 (https://drafts.csswg.org/css-values-4/#example-c3db2475) for more.
--

wpt-commits: 0b5e17df90b7f330def7ed12e426fbea125863c2
wpt-pr: 56925

Diffstat:
Mtesting/web-platform/tests/css/css-animations/parsing/animation-range-shorthand.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-range-shorthand.html b/testing/web-platform/tests/css/css-animations/parsing/animation-range-shorthand.html @@ -27,7 +27,7 @@ test_valid_value("animation-range", "exit-crossing 0% exit-crossing 100%", test_valid_value("animation-range", "cover 0% cover 100%", "cover"); test_valid_value("animation-range", "contain 0% contain 100%", "contain"); test_valid_value("animation-range", - "entry calc(10% - 10%) entry calc(50% + 50%)", "entry"); + "entry calc(10% - 10%) entry calc(50% + 50%)", "entry calc(0%) entry calc(100%)"); test_valid_value("animation-range", "cover 50%"); test_valid_value("animation-range", "contain 50%"); test_valid_value("animation-range", "entry 50%");