We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09260eb commit f5c3f2bCopy full SHA for f5c3f2b
src/app/components/StateRoute/AxMap/axLegend.tsx
@@ -3,7 +3,19 @@ import React from 'react';
3
const AxLegend = () => {
4
return (
5
<div>
6
- testing
+ Nodes from the accessibility tree have either a role <strong>role</strong> or <strong>internalRole</strong>
7
+ <ul>
8
+ <li>
9
+ Role refers to <strong> ARIA </strong> roles, which indicate the purpose of the element to assistive technologies, like screen readers
10
+ </li>
11
12
+ internalRole refers to browser-specific roles <strong> Chrome </strong> for its accessibility processing
13
14
+ </ul>
15
+
16
+ <div className='axLegendInfo' id='roleNodes'>
17
+ <h4>All of the nodes here have the role 'role' </h4>
18
+ </div>
19
</div>
20
);
21
}
0 commit comments