Status: FAIL | Duration: 44ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
<!DOCTYPE html> <title>Checks that the min-height is reflected through the aspect-ratio for determining auto repeat tracks with auto size.</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, auto); min-height: 60px; } </style> <p>Test passes if there is a filled green square.</p> <div class="grid-lanes"> <div style="width: 1px; height: 50px;"></div> </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>