Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-flexbox/select-element-zero-height-001.html
<!DOCTYPE html> <title>Select element in flexbox with zero height</title> <link rel="author" title="Mozilla" href="https://mozilla.org"> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1591925"> <link rel="help" href="https://drafts.csswg.org/css-flexbox/#content-size-suggestion"> <link rel="match" href="select-element-zero-height-001-ref.html"> <style> .container { display: flex; flex-direction: column; height: 0px; border: 1px dotted black; } select { /* WebKit applies intrinsic (default) margins to control elements in some circumstances, let's disable them to avoid mismatch errors caused by those margins. */ margin: 0; } </style> <body> <div class="container"> <select><option>Hi</option></select> </div> </body>
/css/css-flexbox/select-element-zero-height-001-ref.html
<!DOCTYPE html> <title>Reference: Select element in flexbox with zero height</title> <link rel="author" title="Mozilla" href="https://mozilla.org"> <style> .container { height: 0px; border: 1px dotted black; } select { /* WebKit applies intrinsic (default) margins to control elements in some circumstances, let's disable them to avoid mismatch errors caused by those margins. */ margin: 0; } </style> <body> <div class="container"> <select style="width:100%"><option>Hi</option></select> </div> </body>