summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/ua-style-sheet-input-number-1-ref.html
blob: c2a8e31e70481af80868973c7d1643dd57266386 (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
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for logical properties of input type=number in the UA stylesheet</title>
<style>
.v-rl { writing-mode: vertical-rl; }
.ltr, .rtl, .v-rl { border: 1px solid blue; }
div { padding: 10px; }
.a { -moz-appearance:textfield; }
.b { -moz-appearance:none; }

.ltr input[type="number"],
.rtl input[type="number"] {
  width: 20ch;
}

.v-rl input[type="number"] {
  height: 20ch;
}

</style>
<div class=ltr>
  <input type=number value=123><br><br>
  <input type=number value=456 class=a><br><br>
  <input type=number value=7890 class=b>
</div>

<div class=rtl dir=rtl>
  <input type=number value=123><br><br>
  <input type=number value=456 class=a><br><br>
  <input type=number value=7890 class=b>
</div>

<div class=v-rl>
  <input type=number value=123><br><br>
  <input type=number value=456 class=a><br><br>
  <input type=number value=7890 class=b>
</div>