Chromium Code Reviews| Index: LayoutTests/fast/css-grid-layout/min-width-height-auto.html |
| diff --git a/LayoutTests/fast/css-grid-layout/min-width-height-auto.html b/LayoutTests/fast/css-grid-layout/min-width-height-auto.html |
| index b5d07baf7ac90dea0aaea584ad16779065d79553..34de413352fb012410c48db369a94d5965474518 100644 |
| --- a/LayoutTests/fast/css-grid-layout/min-width-height-auto.html |
| +++ b/LayoutTests/fast/css-grid-layout/min-width-height-auto.html |
| @@ -35,6 +35,10 @@ |
| max-width: 150px; |
| max-height: 75px; |
| } |
| + |
| +.justifyStart { |
| + justify-items: start; |
| +} |
| </style> |
| <script src="../../resources/check-layout.js"></script> |
| <body onload="checkLayout('.grid')"> |
| @@ -71,5 +75,47 @@ |
| </div> |
| </div> |
| +<div class="container"> |
| + <div class="grid justifyStart"> |
| + <div class="ahem" data-expected-width="100" data-expected-height="25">XXXX</div> |
| + </div> |
| +</div> |
| + |
| +<div class="container"> |
| + <div class="grid justifyStart"> |
| + <div class="ahem minSmaller" data-expected-width="10" data-expected-height="10">XXXX</div> |
| + </div> |
| +</div> |
| + |
| +<div class="container"> |
| + <div class="grid justifyStart"> |
| + <div class="ahem minBigger" data-expected-width="150" data-expected-height="75">XXXX</div> |
| + </div> |
| +</div> |
| + |
| +<div class="container"> |
| + <div class="grid justifyStart"> |
| + <div class="ahem maxSmaller" data-expected-width="10" data-expected-height="10">XXXX</div> |
| + </div> |
| +</div> |
| + |
| +<div class="container"> |
| + <div class="grid justifyStart"> |
| + <div class="ahem maxBigger" data-expected-width="100" data-expected-height="25">XXXX</div> |
| + </div> |
| +</div> |
| + |
| +<div class="container"> |
| + <div class="grid"> |
| + <div class="ahem" data-expected-width="75" data-expected-height="50">XXX X</div> |
| + </div> |
| +</div> |
|
Manuel Rego
2015/07/16 10:45:05
Nit: Maybe move this one before all the "justifySt
jfernandez
2015/07/16 11:06:03
Well, we are testing here a different case, which
|
| + |
| +<div class="container"> |
| + <div class="grid justifyStart"> |
| + <div class="ahem" data-expected-width="75" data-expected-height="50">XXX X</div> |
| + </div> |
| +</div> |
| + |
| </body> |
| </html> |