Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-item-non-auto-height-stretch-004.html
<!doctype html> <title>Grid items only stretch if block-size computes to auto</title> <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/4525"> <link rel="help" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> <link rel="help" href="https://mozilla.org" title="Mozilla"> <link rel="match" href="grid-item-non-auto-height-stretch-ref.html"> <style> #grid { writing-mode: vertical-lr; display: grid; width: 100px; height: 100px; grid-template: 100% / 100%; background: green; } #item { width: min-content; background: red; } </style> <div id="grid"> <div id="item"></div> </div>
/css/css-grid/grid-item-non-auto-height-stretch-ref.html
<!doctype html> <title>CSS test reference</title> <style> #ref { width: 100px; height: 100px; background: green; } </style> <div id="ref"></div>