summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/range/from-range-to-other-type-unthemed-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/forms/input/range/from-range-to-other-type-unthemed-1.html')
-rw-r--r--layout/reftests/forms/input/range/from-range-to-other-type-unthemed-1.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/forms/input/range/from-range-to-other-type-unthemed-1.html b/layout/reftests/forms/input/range/from-range-to-other-type-unthemed-1.html
new file mode 100644
index 0000000000..0e1fffaf14
--- /dev/null
+++ b/layout/reftests/forms/input/range/from-range-to-other-type-unthemed-1.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <!-- Test: when switching to another type, the input element should look
+ like that type (not like an input range element) -->
+ <script type="text/javascript">
+ function setToCheckbox()
+ {
+ document.getElementById('i').type='checkbox';
+ document.documentElement.className = '';
+ }
+ document.addEventListener("MozReftestInvalidate", setToCheckbox);
+ </script>
+ <body>
+ <input type='range' id='i' style="-moz-appearance:none;">
+ </body>
+</html>