tor-browser

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

commit 8493cd25aa1be0fcadb48a71f7fd0e2356a62262
parent f00645ce5987b016f0b9a3a170dd0b01631a7252
Author: Antti Koivisto <antti@apple.com>
Date:   Fri,  3 Oct 2025 08:57:37 +0000

Bug 1990867 [wpt PR 55065] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=299168, a=testonly

Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=299168 (#55065)

--

wpt-commits: 283275e69f1cca340e062156552a16131c2f97df
wpt-pr: 55065

Diffstat:
Mtesting/web-platform/tests/css/css-nesting/nesting-basic.html | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/testing/web-platform/tests/css/css-nesting/nesting-basic.html b/testing/web-platform/tests/css/css-nesting/nesting-basic.html @@ -88,6 +88,17 @@ background-color: red !important; } + .test-13::before { + background-color: green; + color: green; + content: "text"; + } + .test-13::before { + & { + background-color: red; + } + } + body * + * { margin-top: 8px; } @@ -109,4 +120,5 @@ <div class="test test-10"><div></div></div> <div class="test test-11"><div></div></div> <div class="test test-12"></div> + <div class="test test-13"></div> </body>