1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

content / test / data / accessibility / event / aria-spinbutton-value-change.html [blame]

<!DOCTYPE html>
<!--
@WIN-DENY:*
@WIN-ALLOW:EVENT_OBJECT_VALUECHANGE*
-->
<html>
<body>
<div id="spinbutton" role="spinbutton" aria-valuenow="1">
</div>
<script>
  function go() {
    document.getElementById('spinbutton').setAttribute('aria-valuenow', '2');
  }
</script>
</body>
</html>