summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/form-controls/select-sizing-001.html
blob: e8db3eae1d28acbb2eff0f8906e0cf253f966bdd (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for sizing of select elements, with wide vs. empty option selected</title>
  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
  <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#list-box">
  <link rel="match" href="select-sizing-001-ref.html">
  <style>
    select {
      color: transparent;
      margin: 1px;
    }
    div.customBorder > select {
      /* This class is to let us test select elements *without* native theming
         (for browsers that have both native and non-native controls): */
      border: 3px solid black;
    }
  </style>
</head>
<body>
  <div>
    <!-- Wide thing is 2nd, and not selected: -->
    <select>
      <option></option>
      <option>some wide option</option>
    </select>
    <br>
    <!-- Wide thing is 2nd, and selected: -->
    <select>
      <option></option>
      <option selected>some wide option</option>
    </select>
    <br>
    <!-- Wide thing is 1st, and selected (implicitly): -->
    <select>
      <option>some wide option</option>
      <option></option>
    </select>
    <br>
    <!-- Wide thing is 1st, and not selected: -->
    <select>
      <option>some wide option</option>
      <option selected></option>
    </select>
  </div>

  <!-- This is the same as above, but now with a custom border on the
       select elements: -->
  <div class="customBorder">
    <!-- Wide thing is 2nd, and not selected: -->
    <select>
      <option></option>
      <option>some wide option</option>
    </select>
    <br>
    <!-- Wide thing is 2nd, and selected: -->
    <select>
      <option></option>
      <option selected>some wide option</option>
    </select>
    <br>
    <!-- Wide thing is 1st, and selected (implicitly): -->
    <select>
      <option>some wide option</option>
      <option></option>
    </select>
    <br>
    <!-- Wide thing is 1st, and not selected: -->
    <select>
      <option>some wide option</option>
      <option selected></option>
    </select>
  </div>

</body>
</html>