Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <link href="resources/grid.css" rel="stylesheet"> | |
| 3 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel =stylesheet> | |
| 4 <link href="../css-intrinsic-dimensions/resources/height-keyword-classes.css" re l=stylesheet> | |
| 5 <style> | |
| 6 .autoFill { grid: repeat(auto-fill, 100px) / repeat(auto-fill, 100px); } | |
| 7 .autoFit { grid: repeat(auto-fit, 100px) / repeat(auto-fit, 100px); } | |
| 8 </style> | |
| 9 | |
| 10 <script> | |
| 11 if (window.testRunner) | |
| 12 testRunner.dumpAsText(); | |
| 13 </script> | |
| 14 | |
| 15 <div class="grid autoFill"><span></span></div> | |
| 16 <div class="grid autoFit"><span></span></div> | |
|
Manuel Rego
2016/07/11 09:47:41
Nit: Are those <span> elements needed?
svillar1
2016/07/11 10:34:48
Not sure why I added them. Perhaps some initial te
| |
| 17 | |
| 18 <div class="grid autoFill min-content"></div> | |
| 19 <div class="grid autoFit min-content"></div> | |
| 20 | |
| 21 <div class="grid autoFill max-content"></div> | |
| 22 <div class="grid autoFit max-content"></div> | |
| 23 | |
| 24 <div class="grid autoFill min-width-min-content min-height-min-content"></div> | |
| 25 <div class="grid autoFit min-width-min-content min-height-min-content"></div> | |
| 26 | |
| 27 <div class="grid autoFill min-width-max-content min-height-max-content"></div> | |
| 28 <div class="grid autoFit min-width-max-content min-height-max-content"></div> | |
| 29 | |
| 30 <p>This test has PASSED if it didn't CRASH.</p> | |
|
Manuel Rego
2016/07/11 09:47:41
Could you be little bit more descriptive about wha
svillar1
2016/07/11 10:34:48
Acknowledged.
| |
| OLD | NEW |