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
In Chrome 102 we're expecting the inert attribute to be supported. This has a number of implications for axe-core. I think we'll need to update a number of internal methods to understand this new attribute. I think since it's not going to be available to a number of other browsers yet a new rule that fails the use of inert unless it's polyfilled is probably also useful here.
The text was updated successfully, but these errors were encountered:
Validated with the latest axe-core develop branch code base, inert attribute is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies.
Ex:
When not passing inert attribute for the below code snippet to fail for aria-hidden-focus , it is failing.
In Chrome 102 we're expecting the inert attribute to be supported. This has a number of implications for axe-core. I think we'll need to update a number of internal methods to understand this new attribute. I think since it's not going to be available to a number of other browsers yet a new rule that fails the use of inert unless it's polyfilled is probably also useful here.
The text was updated successfully, but these errors were encountered: