tor-browser

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

commit 640751d6cf2b8d2c23f77909879d50aa2d457448
parent 9026fde7badc2843352365f3d63bff824b4241a4
Author: Fredrik Söderquist <fs@opera.com>
Date:   Thu,  6 Nov 2025 21:38:33 +0000

Bug 1998187 [wpt PR 55851] - Fixes to external/wpt/css/css-viewport/zoom/svg-computed-style.html, a=testonly

Automatic update from web-platform-tests
Fixes to external/wpt/css/css-viewport/zoom/svg-computed-style.html

Fix typo ('9x' -> '9px') and reset 'zoom' after each loop iteration.

Bug: 453700230
Change-Id: I08efeb3477977bba94a33a5b1cca0bb6cf6be941
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7117003
Auto-Submit: Fredrik Söderquist <fs@opera.com>
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1539945}

--

wpt-commits: ace89bbed07ed916e18692ad3d5769a45929ef0d
wpt-pr: 55851

Diffstat:
Mtesting/web-platform/tests/css/css-viewport/zoom/svg-computed-style.html | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/testing/web-platform/tests/css/css-viewport/zoom/svg-computed-style.html b/testing/web-platform/tests/css/css-viewport/zoom/svg-computed-style.html @@ -33,7 +33,7 @@ "otherValues": ["drop-shadow(rgb(0, 0, 0) 10px 10px 10px)"] }, "height": { - "value": "9x", + "value": "9px", "otherValues": ["18px"] }, "inset": { @@ -117,6 +117,7 @@ // cleanup svg.style.removeProperty(property); + target.style.removeProperty('zoom'); if (requiredProperties) { for (const [prop, reqValue] of Object.entries(requiredProperties)) { svg.style.removeProperty(reqValue);