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
I'll make a list of all existing aria- attributes. We do not want to remove accessibility features from HTML.
Sidenote: We do not have the same issue with data- attributes. Those attributes are removed by default and can be kept with a configuration as they will not be listed in known attributes. For aria, we want to keep them by default.
The text was updated successfully, but these errors were encountered:
The Mozilla a11y friends tell me that the section 6.7 Definitions of States and Properties (all aria- attributes)* in the ARIA spec does indeed contain all aria attributes 😅. That made it relatively easy and I got them out of the spec in a hacky way using a code snippet like Array.from($("#index_state_prop").querySelectorAll("dt")).map(el => el.textContent) in DevTools.
I'm going to submit a pull request to add them to our known attribute list
I'll make a list of all existing
aria-
attributes. We do not want to remove accessibility features from HTML.Sidenote: We do not have the same issue with
data-
attributes. Those attributes are removed by default and can be kept with a configuration as they will not be listed inknown
attributes. Foraria
, we want to keep them by default.The text was updated successfully, but these errors were encountered: