Status: FAIL | Duration: 32ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
<!DOCTYPE html> <html> <title>Auto repeat tracks with mixed intrinsic track sizes</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="column-auto-repeat-mixed-intrinsic-001-ref.html"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <link rel="stylesheet" href="/fonts/ahem.css"> <style> .grid-lanes { display: grid-lanes; background: gray; flow-tolerance: 0; grid-template-columns: repeat(auto-fill, min-content max-content fit-content(100px) auto); width: 500px; height: 300px; font: 15px/1 Ahem; } .grid-lanes > div { 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-column: span 2; background: brown; width: 200px;"> Number 6 </div> </div> </body> </html>
<!DOCTYPE html> <html> <link rel="stylesheet" href="/fonts/ahem.css"> <style> .grid { display: grid; background: gray; flow-tolerance: 0; grid-template-columns: min-content max-content fit-content(100px) auto; grid-template-rows: 100px 100px; width: 500px; height: 300px; font: 15px/1 Ahem; } .grid > div { height: 100px; } </style> <body> <div class="grid"> <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-column: span 2; background: brown; width: 200px;"> Number 6 </div> </div> </body> </html>