no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / forms / input / range / stepUp.html
blob139e6c797caa1fb907e095a0b4eb4f7acce78457
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <!-- Test: when changing the 'value' IDL property, the thumb of the range
4 should be moved to the appropriate position -->
5 <script type="text/javascript">
6 function setValue()
8 document.getElementById('i').stepUp();
9 document.documentElement.className = '';
11 document.addEventListener("MozReftestInvalidate", setValue);
12 </script>
13 <body>
14 <input type=range id='i' value=50 step=25>
15 </body>
16 </html>