blob: 02b77b445382dfc54926657aff2c71a74aa51305 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<input id="c" type="button" aria-pressed="false" aria-label="My Button">
<script>
function go() {
document.getElementById('c').setAttribute('aria-pressed', 'true');
}
</script>
</body>
</html>