Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-flexbox/inline-flex-min-content-height.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Flexbox Layout Test: Atomic inline Flexible Box with height: min-content</title> <link rel="help" href="https://drafts.csswg.org/css-sizing/#valdef-width-min-content"> <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> <meta name=assert content="This test checks that height: min-content computes to 'auto' for atomic inline level flexible box."> <style> #flexbox { background-color: green; display: inline-flex; height: min-content; } </style> <p>Test passes if there is a filled green square.</p> <div id="flexbox"> <div id="item"> <div style="width:100px; height:100px;"></div> </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>