summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.html')
-rw-r--r--layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.html b/layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.html
new file mode 100644
index 0000000000..31b804602a
--- /dev/null
+++ b/layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.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 time element) -->
+ <script type="text/javascript">
+ function setToCheckbox()
+ {
+ document.getElementById("i").type = "checkbox";
+ document.documentElement.className = "";
+ }
+ document.addEventListener("MozReftestInvalidate", setToCheckbox);
+ </script>
+ <body>
+ <input type="time" id="i" style="-moz-appearance:none;">
+ </body>
+</html>