Chromium Code Reviews| Index: LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-resolution.html |
| diff --git a/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-resolution.html b/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-resolution.html |
| index 29a2b89d74b9139e2559c0337cd9c2a673f8a6af..9f3a9ba378685c95d8f488810ab7527d63f350f2 100644 |
| --- a/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-resolution.html |
| +++ b/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-resolution.html |
| @@ -13,6 +13,10 @@ |
| grid-auto-columns: 50px; |
| } |
| +.gridAreas { |
| + grid-template-areas: "first second"; |
|
Manuel Rego
2014/05/14 15:11:34
I'd define 2 rows too, in order to check that both
|
| +} |
| + |
| .gridAutoMinMax { |
| height: 1000px; |
| grid-auto-rows: minmax(10%, 15px); |
| @@ -48,5 +52,11 @@ |
| </div> |
| </div> |
| +<div class="unconstrainedContainer" style="position: relative"> |
| + <div class="grid gridAutoFixedFixed gridAreas"> |
| + <div style="grid-column: second;" class="sizedToGridArea" data-offset-x="10" data-offset-y="0" data-expected-width="50" data-expected-height="20">XXXXX XXXXXX</div> |
|
Manuel Rego
2014/05/14 15:11:34
Here, I'd use "grid-area: placeholder;" instead of
|
| + </div> |
| +</div> |
| + |
| </body> |
| </html> |