tor-browser

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

commit 834b47142a3fd052506e2c8268d2b432bacf2f82
parent 6a7d7766b108813d711976cbf9e25e204dffe46f
Author: Brandon Stewart <stewartb2@gmail.com>
Date:   Wed, 19 Nov 2025 04:57:45 +0000

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

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

--

wpt-commits: f30ddbfca28591661a7db40e84ee8386f0d2e652
wpt-pr: 56104

Diffstat:
Atesting/web-platform/tests/css/css-grid/subgrid/subgrid-item-with-margin-left-auto.html | 32++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+), 0 deletions(-)

diff --git a/testing/web-platform/tests/css/css-grid/subgrid/subgrid-item-with-margin-left-auto.html b/testing/web-platform/tests/css/css-grid/subgrid/subgrid-item-with-margin-left-auto.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html> +<head> +<link rel="help" href="https://drafts.csswg.org/css-grid-2/#auto-margins"> +<link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> +<link rel="stylesheet" href="/fonts/ahem.css"> +<style> +.content { + background-color: green; +} +.grid { + display: grid; + width: 100px; + font: 25px/1 Ahem; + color: green; +} +.subgrid { + grid-template-columns: subgrid; + display: grid; + margin-left: auto; +} +</style> +</head> +<body> +<p>Test passes if there is a filled green square.</p> +<div class="grid"> + <div class="subgrid"> + <div class="content">X X X X X X X X</div> + </div> +</div> +</body> +</html>