Status: FAIL | Duration: 40ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/track-sizing/auto-repeat/row-auto-repeat-003.html
<!DOCTYPE html> <title>Checks that the min-height is reflected through the aspect-ratio for determining auto repeat tracks.</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="row-auto-repeat-003-ref.html"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <style> .grid-lanes { display: inline grid-lanes; background: green; aspect-ratio: 1/1; grid-template-rows: repeat(auto-fill, 50px); min-height: 60px; } </style> <p>Test passes if there is a filled green square.</p> <div class="grid-lanes"></div>
/css/css-grid/grid-lanes/track-sizing/auto-repeat/row-auto-repeat-003-ref.html
<!DOCTYPE html> <p>Test passes if there is a filled green square.</p> <div style="width:60px; height:60px; background:green;"></div>