summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/datetime/from-time-to-other-type-unthemed.html
blob: 31b804602a803b624e85508f57ad1d8eaf538f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>