gecko-dev/testing/web-platform/tests/css/css-grid/grid-definition/grid-auto-repeat-positioned-container-001-ref.html
Antonio Gomes 5d7245a3fc Bug 1630307 [wpt PR 22970] - [css-grid] Migrate grid-auto-repeat-positioned-container.html to WPT, a=testonly
Automatic update from web-platform-tests
[css-grid] Migrate grid-auto-repeat-positioned-container.html to WPT

BUG=767015, 1063749
R=rego@igalia.com

Change-Id: I0ce4554655b2a7faec34be0c8634d68568d8dae6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2150669
Commit-Queue: Antonio Gomes <tonikitoo@igalia.com>
Reviewed-by: Manuel Rego <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#759334}

--

wpt-commits: b3e63e7e3ffab726836f713775e02c0525e3c693
wpt-pr: 22970
2020-04-21 14:32:03 +00:00

29 lines
790 B
HTML

<!DOCTYPE html>
<link href="/css/support/grid.css" rel="stylesheet"/>
<style>
.grid {
width: 100px;
grid: repeat(5, 20px) / repeat(4, 25px);
justify-content: start;
align-content: start;
}
.item {
background: green;
}
</style>
<p>Test passes if you get a grid with 5 rows of 20px and 4 columns of 25px.</p>
<pre id="log">grid: 20px 20px 20px 20px 20px / 25px 25px 25px 25px;</pre>
<div class="wrapper">
<div id="grid" class="grid">
<div class="item" style="grid-area: 1 / 1;"></div>
<div class="item" style="grid-area: 2 / 2;"></div>
<div class="item" style="grid-area: 3 / 3;"></div>
<div class="item" style="grid-area: 4 / 4;"></div>
<div class="item" style="grid-row: 5; grid-column: 1 / -1;"></div>
</div>
</div>