Description
From the report on WordPress Trac #54681
Russell Eck:
An error container class="ui-helper-hidden-accessible" is made with aria-live="assertive", but it does not contain a WAI-ARIA attribute that will make sure all assistive technologies can read the error message after more than one invalid submission.
Adding the aria-atomic="true" to the error container tag will ensure assistive technologies can read the message after more than one invalid submission.
I'm not sure an
aria-atomic
attribute is the only change that should be made.
- autocomplete.js: it uses a
role="status"
. which has an implicit aria-atomic value of true. It also uses anaria-live="assertive"
attribute which overrides the defaultpolite
value of therole="status"
. At this point, it would be better to make it arole="alert"
and omit the other attributes.Seems to me the current jQuery UI implementation shows a bit its age. Some years ago the
alert
andstatus
roles weren't fully supported. At that time, it was pretty common to build aria-live regions by setting the (implicit) attributes explicitly. Today, support has improved and it would be better to use some more modern code.
jquery-ui/ui/widgets/autocomplete.js
Lines 308 to 315 in e21a254
jquery-ui/ui/widgets/tooltip.js
Lines 108 to 116 in e21a254