Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-items/grid-size-with-orthogonal-child-002.html
<!DOCTYPE html> <title>CSS Grid Layout Test: Grid container sizing with an orthogonal grid item</title> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1453517"> <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> <style> .grid { display: inline-grid; grid-template-rows: 100px; background-color: green; } .item { writing-mode: vertical-lr; } .item > span { display: inline-block; inline-size: 100px; block-size: 50px; } </style> <!-- This testcase is adapted from Testcase #1 in Bug 1453571 comment 0. --> <p>Test passes if there is a filled green square.</p> <div class="grid"> <div class="item"> <span></span><span></span> </div> </div>
/css/reference/ref-filled-green-100px-square-only.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org"> <p>Test passes if there is a filled green square.</p> <div style="width:100px; height:100px; background:green;"></div>