summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/range/stepDown.html
blob: e482af4905dd1305c01d20e4b01fc35cae001121 (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 changing the 'value' IDL property, the thumb of the range
             should be moved to the appropriate position -->
  <script type="text/javascript">
    function setValue()
    {
      document.getElementById('i').stepDown();
      document.documentElement.className = '';
    }
    document.addEventListener("MozReftestInvalidate", setValue);
  </script>
  <body>
    <input type=range id='i' value=100 step=25>
  </body>
</html>