| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-content-distribution.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-content-distribution.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-content-distribution.html
|
| index bdabea234eefad34f4f62bf7ad2757e81af0f984..4ee05131028e90ac7415074a47b034f2b62c72bb 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-content-distribution.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-content-distribution.html
|
| @@ -4,13 +4,13 @@
|
| <link href="resources/grid-alignment.css" rel="stylesheet">
|
| <style>
|
| .freeSpaceForColumnsGrid {
|
| - grid-template: minmax(20px, 0.7fr) / 100%;
|
| + grid-template: 100% / minmax(20px, 0.7fr);
|
| width: 50px;
|
| height: 100px;
|
| }
|
|
|
| .freeSpaceForRowsGrid {
|
| - grid-template: 100% / minmax(20px, 0.7fr);
|
| + grid-template: minmax(20px, 0.7fr) / 100%;
|
| width: 50px;
|
| height: 100px;
|
| }
|
|
|