Issue metadata
Sign in to add a comment
|
Disabled button not not conveyed through ax |
||||||||||||||||||||||
Issue description
<button id="ok">ok</button>
<button id="toggle">toggle</button>
<script>
var state = false;
document.getElementById('toggle').addEventListener('click', function(evt) {
document.getElementById('ok').disabled = state;
state = !state;
console.log(state);
}, true);
</script>
- click toggle
- notice the accessible state for the ok button
expected:
disabled set
actual:
disabled not set
,
Mar 27 2017
,
Apr 21 2017
,
Apr 21 2017
,
Jul 27 2017
,
Jul 27 2017
,
Aug 11 2017
,
Aug 1
|
|||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||
Comment 1 by dtseng@chromium.org
, Nov 7 2016