interactive-supports-focus
How do I resolve this error?
Case: I got the error "Elements with the '${role}' interactive role must be tabbable". How can I fix this?
<div
role="button"
tabIndex={0} />Case: I got the error "Elements with the '${role}' interactive role must be focusable". How can I fix this?
<div role="menu">
<div role="menuitem" tabIndex="0">Open</div>
<div role="menuitem" tabIndex="-1">Save</div>
<div role="menuitem" tabIndex="-1">Close</div>
</div>Case: This element is not a button, link, menuitem, etc. It is catching bubbled events from elements that it contains
References
Rule details
Succeed
Fail
Last updated