| Index: third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-018.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-003.html b/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-018.html
|
| similarity index 56%
|
| copy from third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-003.html
|
| copy to third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-018.html
|
| index 0c6aa902f8e0b3dd655cd0903bda14bd1f4d3407..93ba652bca8c1d2eb3bda902fd877b57463b08d1 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-003.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-018.html
|
| @@ -1,6 +1,6 @@
|
| <!DOCTYPE html>
|
| <meta charset="utf-8">
|
| -<title>CSS Grid Layout Test: Content Distribution 'space-around'</title>
|
| +<title>CSS Grid Layout Test: Content Distribution 'space-around' on 4x4 grid with collapsed tracks</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-space-around">
|
| @@ -25,8 +25,8 @@
|
| display: grid;
|
| width: 200px;
|
| height: 200px;
|
| - grid-template-columns: 20px 20px;
|
| - grid-template-rows: 20px 20px;
|
| + grid-template-columns: repeat(auto-fit, 20px);
|
| + grid-template-rows: repeat(auto-fit, 20px);
|
| align-content: space-around;
|
| justify-content: space-around;
|
| }
|
| @@ -34,10 +34,18 @@
|
| </style>
|
| <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
| <div class="block">
|
| - <div style="top: 40px; left: 40px;"></div>
|
| - <div style="top: 140px; left: 140px;"></div>
|
| + <div style="top: 15px; left: 65px;"></div>
|
| + <div style="top: 15px; left: 115px;"></div>
|
| + <div style="top: 65px; left: 115px;"></div>
|
| + <div style="top: 115px; left: 115px;"></div>
|
| + <div style="top: 165px; left: 15px;"></div>
|
| + <div style="top: 165px; left: 165px;"></div>
|
| </div>
|
| <div class="grid">
|
| - <div style="grid-row: 1; grid-column: 1;"></div>
|
| - <div style="grid-row: 2; grid-column: 2;"></div>
|
| + <div class="item" style="grid-row: 1; grid-column: 2;"></div>
|
| + <div class="item" style="grid-row: 1; grid-column: 5;"></div>
|
| + <div class="item" style="grid-row: 3; grid-column: 5;"></div>
|
| + <div class="item" style="grid-row: 4; grid-column: 5;"></div>
|
| + <div class="item" style="grid-row: 6; grid-column: 1;"></div>
|
| + <div class="item" style="grid-row: 6; grid-column: 7;"></div>
|
| </div>
|
|
|