Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/track-sizing/auto-repeat/column-auto-repeat-005.html
<!DOCTYPE html> <title>Auto repeater with minmax size.</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="../../../../reference/ref-filled-green-100px-square-only.html"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <style> .grid-lanes { display: grid-lanes; width: 100px; grid-template-columns: repeat(auto-fill, minmax(50px, 25px)); } </style> <p>Test passes if there is a filled green square.</p> <div class="grid-lanes"> <div style="background: green; height: 50px; width: 100%;"></div> <div style="background: green; height: 50px; width: 100%;"></div> <div style="background: green; height: 50px; width: 100%;"></div> <div style="background: green; height: 50px; width: 100%;"></div> </div>
/css/reference/ref-filled-green-100px-square-only.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org"> <p>Test passes if there is a filled green square.</p> <div style="width:100px; height:100px; background:green;"></div>