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"></div> |
| 16 <div class="grid autoFit"></div> |
| 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 checks that the computation of auto repeat tracks works when the gr
id container width is indefinite.</p> |
| 31 <p>This test has PASSED if it didn't CRASH.</p> |
OLD | NEW |