Status: FAIL | Duration: 24ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
<!DOCTYPE html> <html> <title>Auto repeat tracks with fixed size and replaced items</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <link rel="match" href="column-auto-repeat-auto-023-ref.html"> <style> .grid-lanes { display: grid-lanes; flow-tolerance: 0; grid-template-columns: repeat(auto-fill, auto); width: 400px; gap: 10px; } img { width: 100%; height: auto; display: block; } </style> <div class="grid-lanes"> <img id="test" src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> </div> </html>
<!DOCTYPE html> <html> <style> .grid { display: grid; grid-template-columns: auto auto auto; width: 400px; gap: 10px; } img { width: 100%; min-width: 100px; height: auto; display: block; } </style> <div class="grid"> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> <img src="../../../resources/pink-image.png" width="113" height="120"></img> </div> </html>