Status: FAIL | Duration: 19ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/item-placement/dense-packing/column-dense-packing-005.html
<!DOCTYPE html> <html> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="column-dense-packing-005-ref.html"> <link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com"> <style> .grid-lanes { display: grid-lanes; flow-tolerance: 0; grid-template-columns: repeat(3, 50px); grid-auto-flow: dense; grid-lanes-pack: dense; } </style> <body> <p>Ensure that we prioritize the highest track-opening over the start-most track opening.</p> <div class="grid-lanes"> <div style="background: lightskyblue; height: 20px;" > 1 </div> <div style="background: lightblue; height: 20px;" > 2 </div> <div style="background: darkblue; height: 20px; grid-column: span 3;"> 3 </div> <div style="background: lightsteelblue; height: 20px; grid-column: 2 / span 2;" > 4 </div> <div style="background: darkblue; height: 20px; grid-column: span 3;"> 5 </div> <div style="background: yellow; height: 20px;" > 6 </div> </div> </body> </html>
/css/css-grid/grid-lanes/item-placement/dense-packing/column-dense-packing-005-ref.html
<!DOCTYPE html> <html> <style> .grid { display: grid; position: relative; flow-tolerance: 0; grid-template-columns: repeat(3, 50px); grid-template-rows: grid-lanes; grid-auto-flow: dense; } </style> <body> <p>Ensure that we prioritize the highest track-opening over the start-most track opening.</p> <div class="grid"> <div style="background: lightskyblue; height: 20px;" > 1 </div> <div style="background: lightblue; height: 20px;" > 2 </div> <div style="background: yellow; height: 20px;" > 6 </div> <div style="background: darkblue; height: 20px; grid-column: span 3;"> 3 </div> <div style="background: lightsteelblue; height: 20px; grid-column: 2 / span 2;" > 4 </div> <div style="background: darkblue; height: 20px; grid-column: span 3;"> 5 </div> </div> </body> </html>