Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css |
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css b/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css |
| index 765241bc5af75b27437624e5431b17a65b0aae97..9814a84c7860364e9745be924812d86132527a76 100644 |
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css |
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css |
| @@ -93,6 +93,16 @@ |
| .justifyContentStretch { justify-content: stretch; } |
| /* Both align-items and justify-items */ |
| +.itemsStretch { |
|
jfernandez
2017/03/01 22:58:53
I guess this should be itemsNormal, shouldn't it ?
Manuel Rego
2017/03/01 23:23:30
Oops, true. :-)
|
| + align-items: normal; |
| + justify-items: normal; |
| +} |
| + |
| +.itemsStretch { |
| + align-items: stretch; |
| + justify-items: stretch; |
| +} |
| + |
| .itemsStart { |
| align-items: start; |
| justify-items: start; |