Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-contain/contain-size-select-elem-001.html - WPT Dashboard Interop Dashboard
 
 
<!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="match" href="contain-size-select-elem-001-ref.html">
  <style>
  select {
    contain: size;
    color: transparent;
  }
  .minWidth {
    min-width: 100px;
  }
  .width {
    width: 100px;
  }
  .floatLWidth {
    float: left;
    width: 100px;
  }
  </style>
</head>
<body>
  <select class="floatLWidth">
    <option>CSS Test: A size-contained floated select with specified width and no specified height should size itself as if it had no contents.</option>
    <option>a</option>
    <option>b</option>
    <option>c</option>
  </select>
  <br style="clear:both;">
  <select class="minWidth">
    <option>CSS Test: A size-contained select with specified min-width should size itself as if it had no contents.</option>
    <option>a</option>
    <option>b</option>
    <option>c</option>
  </select>
  <br>
  <select class="width">
    <option>CSS Test: A size-contained select with specified width should size itself as if it had no contents.</option>
    <option>a</option>
    <option>b</option>
    <option>c</option>
  </select>
</body>
</html>