summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/range/to-range-from-other-type-unthemed-1.html
blob: 86ff0c521487f032841fcb7d7edd924840507527 (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 range state doesn't look like checkbox state -->
  <script type="text/javascript">
    function setToRange()
    {
      document.getElementById('i').type='range';
      document.documentElement.className = '';
    }
    document.addEventListener("MozReftestInvalidate", setToRange);
  </script>
  <body>
    <input type='checkbox' id='i' style="-moz-appearance:none;">
  </body>
</html>