Status: FAIL | Duration: 27ms | 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 and % sized children with auto sized container</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="column-auto-repeat-auto-028-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-columns: repeat(auto-fill, auto); width: auto; height: auto; } .grid-lanes > div { width: 100%; height: 100px; } </style> <div class="grid-lanes"> <div style="background: lightskyblue;"></div> <div style="background: lightcoral;"></div> <div style="background: lightgreen;"></div> </div> </html>
<!DOCTYPE html> <html> <style> .grid-lanes { display: grid; background: gray; flow-tolerance: 0; grid-template-columns: repeat(auto-fill, 1px); width: auto; height: auto; } .grid-lanes > div { width: 100%; height: 100px; } </style> <div class="grid-lanes"> <div style="background: lightskyblue;"></div> <div style="background: lightcoral;"></div> <div style="background: lightgreen;"></div> </div> </html>