summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-size-select-elem-001-ref.html
blob: 095b2f0ba58cda3b53d631a9811c7fbd943a1eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!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;
  }
  .minWidth {
    min-width: 100px;
  }
  .width {
    width: 100px;
  }
  .floatLWidth {
    float: left;
    width: 100px;
  }
  </style>
</head>
<body>
  <select class="floatLWidth">
  </select>
  <br style="clear:both;">

  <select class="minWidth">
  </select>
  <br>

  <select class="width">
  </select>
</body>
</html>