This repository was archived by the owner on Sep 5, 2024. It is now read-only.
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
Toggling radio buttons makes all of them appear checked to JAWS #9400
Closed
Description
Have a report that, with an <md-radio-group>
, all of the options are appearing checked at the same time with JAWS. We should investigate with IE11, Edge, Chrome, and Firefox.
The radio button template looks something like
<md-radio-group ng-model="ctrl.element" class="element-options"
ng-change="ctrl.updateChoice()">
<md-radio-button ng-value="'EARTH'" class="md-primary">
Running on the earth
</md-radio-button>
<md-radio-button ng-value="'WIND'" class="md-primary">
Dancing in the wind
</md-radio-button>
<md-radio-button ng-value="'WATER'" class="md-primary">
Swimming in the water
</md-radio-button>
</md-radio-group>