summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/range/value-prop.html
blob: 66be8370458f32c3f9a24f7e5894eb282611d7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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').value = "75";
      document.documentElement.className = '';
    }
    document.addEventListener("MozReftestInvalidate", setValue);
    setTimeout(setValue, 2000); // useful when not running under reftest suite
  </script>
  <body>
    <input type=range id='i' value=50 step=25>
  </body>
</html>