mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
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
29 lines
790 B
HTML
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>
|