Provide caveats to when role=none may be allowed #433
Labels
Allowed roles
Pertaining to the allowed roles of HTML elements
Clarification needed
Revise or expand the information provided
The typical rule for
button
andinput
elements is thatrole=none | presentation
is not allowed. This makes sense because the conflict resolution for the role would result in it immediately being ignored due to these elements being focusable.However, if one were to also specify the
disabled
attribute on these elements, then the element is no longer focusable and so long as there are not any other conflicts with therole
, it will make these elements return as 'presentational'.e.g.,
<button disabled role=none>yo</button>
This issue should be considered in tandem with #365
The text was updated successfully, but these errors were encountered: