summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/number/number-max-height-1.html
blob: bf671a0f9e66e0a3e920b9762cc08c9ddbb63ae0 (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
<!DOCTYPE html>
<html>
  <head>
    <style>

input {
  border: 3px solid black;
  padding: 4px;
  width: 300px;
  height: 300px;
  max-height: 100px;
  box-sizing: content-box;
  /* hide the spin buttons: */
  -moz-appearance: textfield;
}

* > input[type=number] {
  /* get rid of background gradient for Firefox OS */
  background-color: transparent ! important;
}

    </style>
  </head>
  <body>
    <input type="number">
  </body>
</html>