blob: d87eac2cf4960dc55f0f6b0a9f686665e24df973 [file] [log] [blame]
<!DOCTYPE html>
<!--
@WIN-DENY:*
@WIN-ALLOW:EVENT_OBJECT_VALUECHANGE*
@MAC-DENY:AXLayoutComplete*
-->
<html>
<body>
<div id="spinbutton" role="spinbutton" aria-valuenow="1" aria-valuetext="1%">
</div>
<script>
function go() {
document.getElementById('spinbutton').setAttribute('aria-valuenow', '2');
document.getElementById('spinbutton').setAttribute('aria-valuetext', '2%');
}
</script>
</body>
</html>