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

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

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