AX_ARIA_01
This code example is taken from the Accessibility Developer Tool Documentation
Example Begin
Example End
Code for this Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div role="datepicker"></div> <!-- Bad: "datepicker" is not an ARIA role --> | |
<div role="range"></div> <!-- Bad: "range" is an _abstract_ ARIA role --> | |
<div role=""></div> <!-- Bad: An empty ARIA role is not allowed --> |