summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html
blob: 70ef76e624d229967aaecbe9d293044d42b2665f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
  </head>
  <body>
    <input type="range" aria-label="Rating" min="1" max="10" value="4" /><input
      type="range"
      aria-label="Stars"
      min="1"
      max="5"
      step="0.5"
      value="4.5"
    /><input
      type="range"
      aria-label="Percent"
      min="0"
      max="1"
      step="0.01"
      value="0.83"
    />
  </body>
</html>