tor-browser

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

commit fd63cab38b06ad44336cd25e6fba61c8149064d4
parent ab72e1331dbbac806acd03dd06357701e81c80fe
Author: Rune Lillesveen <futhark@chromium.org>
Date:   Fri, 19 Dec 2025 09:19:41 +0000

Bug 2006735 [wpt PR 56829] - Don't treat known descriptors as known properties, a=testonly

Automatic update from web-platform-tests
Don't treat known descriptors as known properties

The transition-property property recognized descriptors as known
properties and lower-cased the names as if they were known properties.
Also, they were considered for property value comparisons for CSS
transitions.

Check at parse time if they are known properties before storing them as
such.

Bug: 40919412
Change-Id: I56f59d24984fc459b88e3e392224c359a9f1eceb
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7269688
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1560386}

--

wpt-commits: 489ff508003c0c9755f840fcbe70a96c6e916514
wpt-pr: 56829

Diffstat:
Mtesting/web-platform/tests/css/css-transitions/parsing/transition-property-valid.html | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/testing/web-platform/tests/css/css-transitions/parsing/transition-property-valid.html b/testing/web-platform/tests/css/css-transitions/parsing/transition-property-valid.html @@ -17,6 +17,7 @@ test_valid_value("transition-property", 'one'); test_valid_value("transition-property", 'one-two-three'); test_valid_value("transition-property", 'one, two, three'); test_valid_value("transition-property", 'width, all'); +test_valid_value("transition-property", 'ALL, INVALID, SYNTAX, SRC', 'all, INVALID, SYNTAX, SRC'); </script> </body> </html>