summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html')
-rw-r--r--mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html b/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html
new file mode 100644
index 0000000000..70ef76e624
--- /dev/null
+++ b/mobile/android/geckoview/src/androidTest/assets/www/accessibility/test-range.html
@@ -0,0 +1,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>