| <!DOCTYPE html> | |
| <link href="resources/grid.css" rel="stylesheet"> | |
| <style> | |
| .autoFillColumns { grid-template-columns: 100px repeat(auto-fill, 50px); } | |
| .autoFitRows { grid-template-rows: 100px repeat(auto-fit, 50px); } | |
| </style> | |
| <script> | |
| if (window.testRunner) | |
| testRunner.dumpAsText(); | |
| </script> | |
| <p>The test PASS if it does not trigger an ASSERT on Debug builds.</p> | |
| <div class="grid autoFillColumns" style="grid-template-columns: inherit;"> | |
| <div class="grid autoFitRows" style="grid-template-rows: initial;"> | |
| </div> |