Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-contain/contain-size-select-elem-004.html
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>CSS Test: 'contain: size' on select objects should cause them to be sized as if they have no contents.</title> <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu"> <link rel="help" href="https://drafts.csswg.org/css-contain/#containment-size"> <link rel="match" href="contain-size-select-elem-004-ref.html"> <style> select { contain: size; color: transparent; } .floatLBasic { float: left; } </style> </head> <body> <select multiple> <option>CSS Test: A size-contained select with no specified size should size itself as if it had no contents.</option> <option>aaaaaa</option> </select> <br> <select multiple class="floatLBasic"> <option>CSS Test: A size-contained floated select with no specified size should size itself as if it had no contents.</option> <option>a</option> </select> </body> </html>
/css/css-contain/contain-size-select-elem-004-ref.html
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>CSS Reftest Reference</title> <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu"> <style> select { color: transparent; } .floatLBasic { float: left; } </style> </head> <body> <select multiple> </select> <br> <select multiple class="floatLBasic"> </select> </body> </html>