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
* refactor(accessibility): axe/text-alternatives - Frames must have title attribute
more information: https://dequeuniversity.com/rules/axe/4.1/frame-title
* refactor(accessibility): axe/parsing - IDs used in ARIA and labels must be unique
IDs used in ARIA and labels must be unique: Document has multiple elements referenced with ARIA with the same id attribute, e.g. "global"
more information: https://dequeuniversity.com/rules/axe/4.1/duplicate-id-aria
* refactor(accessibility): axe/name-role-value - Buttons must have discernible text: Element has no title attribute
more information: https://dequeuniversity.com/rules/axe/4.1/button-name?application=axeAPI
* refactor(accessibility): axe/language - added lang attribute
<html> element must have a lang attribute: The <html> element does not have a lang attribute
more information: https://dequeuniversity.com/rules/axe/4.2/html-has-lang
* refactor(accessibility): axe/aria - ARIA attributes must conform to valid values
Invalid ARIA attribute value: e.g. aria-controls="atoms"
The IDs were currently missing on the related ol elements - their value (and that for variable) needs to be equal to the aria-controls-attribute on the related NavTitle tag
more information:
https://dequeuniversity.com/rules/axe/4.2/aria-valid-attr-value
* refactor(accessibility): axe/name-role-value - Buttons must have discern…
…ible text: Element has no title attribute
The title-attribute needs to get transferred to the actual button itself, as this is the focusable element that even also gets recognized that read out loud by the screenreader.
more information: https://dequeuniversity.com/rules/axe/4.1/button-name?application=axeAPI
0 commit comments