Status: FAIL | Duration: 20ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
<!DOCTYPE html> <html> <title>Auto repeat tracks with auto track sizes mixed with fixed tracks</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="row-auto-repeat-auto-030-ref.html"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <style> .grid-lanes { display: grid-lanes; background: gray; flow-tolerance: 0; grid-template-rows: repeat(auto-fill, auto auto 100px); height: 900px; width: 300px; } .grid-lanes > div { height: 300px; width: 100px; grid-row: span 2; } </style> <body> <div class="grid-lanes"> <div style="background: lightskyblue;"> Number 1 </div> <div style="background: lightcoral;"> Number 2 </div> <div style="background: purple;"> Number 3 </div> <div style="background: plum;"> Number 4 </div> </div> </body> </html>
<!DOCTYPE html> <html> <style> .grid { display: grid; background: gray; grid-template-rows: repeat(1, auto auto 100px); grid-template-columns: repeat(4, 100px); height: 900px; width: 300px; } .grid > div { height: 300px; width: 100px; grid-row: span 2; } </style> <body> <div class="grid"> <div style="background: lightskyblue;"> Number 1 </div> <div style="background: lightcoral;"> Number 2 </div> <div style="background: purple;"> Number 3 </div> <div style="background: plum;"> Number 4 </div> </div> </body> </html>