Status: FAIL | Duration: 19ms | 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 size</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="row-auto-repeat-auto-005-ref.html"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <style> .grid-lanes { display: grid-lanes; background: gray; flow-tolerance: 0; /* This is not currently a valid track definition and will fall back to none. */ grid-template-rows: auto repeat(auto-fill, auto) auto; grid-lanes-direction: row; width: 300px; height: 300px; } .grid-lanes > div { width: 100px; height: 100px; } </style> <body> <div class="grid-lanes"> <div style="background: lightskyblue;"> Number 1 </div> <div style="background: lightcoral;"> Number 2 </div> <div style="background: lightgreen;"> Number 3 </div> <div style="background: lightpink;"> Number 4 </div> <div style="background: orange;"> Number 5 </div> <div style="grid-row: span 2; background: brown; height: 200px;"> Number 6 </div> </div> </body> </html>
<!DOCTYPE html> <html> <style> .grid { display: grid; background: gray; width: 300px; height: 300px; } .grid > div { width: 100px; height: 100px; } </style> <body> <div class="grid"> <div style="background: lightskyblue; grid-row: 1;"> Number 1 </div> <div style="background: lightcoral; grid-row: 2;"> Number 2 </div> <div style="background: lightgreen; grid-row: 1;"> Number 3 </div> <div style="background: lightpink; grid-row: 2;"> Number 4 </div> <div style="background: orange; grid-row: 1;"> Number 5 </div> <div style="grid-row: 1 / span 2; background: brown; height: 200px;"> Number 6 </div> </div> </body> </html>