Status: FAIL | Duration: 17ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/tentative/item-placement/row-reverse-003.html
<!DOCTYPE html> <html> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="row-reverse-003-ref.html"> <link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com"> <style> .grid-lanes { display: grid-lanes; flow-tolerance: 0; grid-template-rows: repeat(3, 50px); gap: 10px; grid-lanes-direction: row track-reverse; direction: rtl; } </style> <body> <p>The CSS property `direction` is correctly applied on top of `grid-lanes-direction`</p> <div class="grid-lanes"> <div style="background: lavender;">Some larger words in this sentence</div> <div style="background: lightgreen; width: min-content;">milk</div> <div style="background: lightskyblue;">The cat cannot be separated from milk</div> <div style="background: lavender;">Some larger words in this sentence</div> </div> </body> </html>
/css/css-grid/grid-lanes/tentative/item-placement/row-reverse-003-ref.html
<!DOCTYPE html> <html> <style> .grid-lanes { display: grid-lanes; flow-tolerance: 0; grid-template-rows: repeat(3, 50px); grid-lanes-direction: row; direction: rtl; gap: 10px; } </style> <body> <p>The CSS property `direction` is correctly applied on top of `grid-lanes-direction`</p> <div class="grid-lanes"> <div style="background: lightskyblue;">The cat cannot be separated from milk</div> <div style="background: lightgreen; width: min-content;">milk</div> <div style="background: lavender;">Some larger words in this sentence</div> <div style="background: lavender;">Some larger words in this sentence</div> </div> </body> </html>