testing/web-platform/tests/css/css-grid/layout-algorithm/grid-content-distribution-must-account-for-track-sizing-002.html
Bug 1705784 [wpt PR 28549] - [GridNG] Apply alignment if possible within for the initial geometry., a=testonly
Automatic update from web-platform-tests
[GridNG] Apply alignment if possible within for the initial geometry.
From: https://drafts.csswg.org/css-grid-1/#algo-overview
"If both the grid container and all tracks have definite sizes, also
apply align-content to find the final effective size of any gaps
spanned by such items; otherwise ignore the effects of track alignment
in this estimation."
This implements the logic for above by adding a bit to the set if all
our our tracks have fixed sizes, then using ComputeSetGeometry.
The test for this sentence was incorrect, also fixed.
Bug: 1045599
Change-Id: I6bd4ddf8c811b3ac175fe52ece6955eff5ed11bc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2698145
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: Kurt Catti-Schmidt <kschmi@microsoft.com>
Cr-Commit-Position: refs/heads/master@{#873401}
--
wpt-commits: 34b73646e79843aee4ce4928e666d06d7b2773ac
wpt-pr: 28549
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Content Distribution and the track sizing algorithm</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid/#grid-align">
<link rel="help" href="https://drafts.csswg.org/css-align/#content-distribution">
<link rel="help" href="https://drafts.csswg.org/css-align/#valdef-align-content-space-between">
<link rel="stylesheet" href="../../support/alignment.css">
<meta name="flags" content="ahem">
<meta name="assert" content="Content Distribution on the block-axis may affect to the column track's size.">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
.grid {
display: inline-grid;
background: grey;
grid-template-rows: 50px 50px;
font: 20px/1 Ahem;
height: 200px;
}
.item {
grid-row: span 2;
background: green;
writing-mode: vertical-lr;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<script type="text/javascript">
setup({ explicit_done: true });
</script>
<!-- Heuristic for estimating row-size for orthogonal items should
also consider Content Alignment, so that grid container width is 40px.
https://github.com/w3c/csswg-drafts/issues/2697 -->
<body onload="document.fonts.ready.then(() => { checkLayout('.grid'); })">
<div class="grid justifyContentStart alignContentSpaceBetween" data-expected-width="40" data-expected-height="200">
<div class="item" data-expected-width="40" data-expected-height="200">XXX XX X XX X XXX</div>
</div>
</body>