New issue
Advanced search Search tips

Issue 662974 link

Starred by 1 user

Issue metadata

Status: Assigned
Owner:
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 2
Type: Bug
Team-Accessibility



Sign in to add a comment

Disabled button not not conveyed through ax

Project Member Reported by dtseng@chromium.org, Nov 7 2016

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
 
Summary: Disabled button not not conveyed through ax (was: Disabled button not state not conveyed through ax)
Labels: NewComponent-Accessibility-Blink NewComponent-Accessibility
Components: Blink>Accessibility
Components: -UI>Accessibility
Labels: -newcomponent-accessibility-blink -newcomponent-accessibility
Labels: triage-aaron
Labels: -Pri-2 -triage-aaron Pri-1
Labels: -Pri-1 Pri-2
Status: Available (was: Assigned)
Status: Assigned (was: Available)

Sign in to add a comment