| Index: third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-021.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-004.html b/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-021.html
|
| similarity index 84%
|
| copy from third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-004.html
|
| copy to third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-021.html
|
| index 0571e9e78cfb21726bf789b6f048f8ef47f928cc..0f3bb845e19874106e76971a8fc2d836fbc4a88e 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-004.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-021.html
|
| @@ -1,6 +1,6 @@
|
| <!DOCTYPE html>
|
| <meta charset="utf-8">
|
| -<title>CSS Grid Layout Test: Content Distribution 'stretch'</title>
|
| +<title>CSS Grid Layout Test: Content Distribution 'stretch' and gaps on 2x2 grid</title>
|
| <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
|
| <link rel="help" href="https://drafts.csswg.org/css-align-3/#content-distribution">
|
| <link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch">
|
| @@ -17,8 +17,8 @@
|
| .block > div {
|
| position: absolute;
|
| background: red;
|
| - width: 100px;
|
| - height: 100px;
|
| + width: 95px;
|
| + height: 95px;
|
| }
|
| .grid {
|
| z-index: 1;
|
| @@ -27,6 +27,8 @@
|
| height: 200px;
|
| grid-template-columns: auto auto;
|
| grid-template-rows: auto auto;
|
| + grid-row-gap: 10px;
|
| + grid-column-gap: 10px;
|
| align-content: stretch;
|
| justify-content: stretch;
|
| }
|
| @@ -35,7 +37,7 @@
|
| <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
| <div class="block">
|
| <div style="top: 0px; left: 0px;"></div>
|
| - <div style="top: 100px; left: 100px;"></div>
|
| + <div style="top: 105px; left: 105px;"></div>
|
| </div>
|
| <div class="grid">
|
| <div style="grid-row: 1; grid-column: 1;"></div>
|
|
|