summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/datetime/to-time-from-other-type-unthemed.html
blob: 1ae398f4c32eca6d84a36d858150828d0fcd5b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: input element changed to time state doesn't look like checkbox state -->
  <script type="text/javascript">
    function setToTime()
    {
      document.getElementById("i").type = "time";
      document.documentElement.className = "";
    }
    document.addEventListener("MozReftestInvalidate", setToTime);
  </script>
  <body>
    <input type="checkbox" id="i" style="-moz-appearance:none;">
  </body>
</html>