You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The states of toggle buttons are described only visually, but not semantically. This is an accessibility issue and creates inconvenience for users of assistive technologies such as screen readers.
It would be nice if the states of controls are described semantically as well.
Sorting order toggle buttons in settings (New, Old)
In all these cases, it is enough to add the aria-pressed="true" attribute to the pressed button and remove it from the previously pressed button, or switch it to aria-pressed="false". This will solve this issue.
The states of toggle buttons are described only visually, but not semantically. This is an accessibility issue and creates inconvenience for users of assistive technologies such as screen readers.
It would be nice if the states of controls are described semantically as well.
The issue is relevant for the following controls:
In all these cases, it is enough to add the aria-pressed="true" attribute to the pressed button and remove it from the previously pressed button, or switch it to aria-pressed="false". This will solve this issue.
For more details see:
The text was updated successfully, but these errors were encountered: