tor-browser

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

commit 87a4ab0baaea713089b0853956615c492ec88f5f
parent d19a57147ac10135f1b5f5bcf314d9a2afff4946
Author: fantasai <fantasai.bugs@inkedblade.net>
Date:   Thu,  6 Nov 2025 21:33:20 +0000

Bug 1997445 [wpt PR 55774] - Fix reference for anchor-scroll-position-try-012 due to mistaken containing block, a=testonly

Automatic update from web-platform-tests
Fix reference for anchor-scroll-position-try-012 due to mistaken containing block

Position fallbacks are based on running out of space in the containing block,
but the containing block formed by a scroll container is the scrollable area,
not the scrollport. The scrollable area can easily fit the anchored box--the
scroll position makes no difference to this fact--so there should not be a
fallback happening in this test. Update the reference to comply.

--

wpt-commits: 029a6c23e4c20a14de8aa460993dbea1f6ebe5bd
wpt-pr: 55774

Diffstat:
Mtesting/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html b/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html @@ -25,9 +25,9 @@ <div id="scroller"> <div class="box"></div> <div class="box"></div> - <div class="box"></div> - <div class="box" id="anchor"></div> <div id="anchored"></div> + <div class="box" id="anchor"></div> + <div class="box"></div> <div class="box"></div> <div class="box"></div> <div class="box"></div>