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
it has no implicit ARIA role mapping, but that doesn't mean it doesn't allow other non-global aria-* roles.
see ARIA in HTML. Being that the input allows the required attribute in HTML, it also allows for the aria-required attribute, as well as other aria-* attributes like aria-readonly and aria-disabled
Ouch! This means we've completely messed up ACT rule ARIA state or property is permitted which completely ignores the ARIA in HTML and requires that elements with no role only have the global attributes 😭
<input type="password">
has no role (https://www.w3.org/TR/html-aam-1.0/#html-element-role-mappings) and therefore only allows global attributes (https://www.w3.org/TR/wai-aria-1.2/#global_states) which doesn't containaria-required
.As far as I can see,
aria-required
should be allowed on the password input element.The text was updated successfully, but these errors were encountered: