Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/app/components/StateRoute/AxMap/axLegend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';

const AxLegend = () => {
return (
<div style={{borderStyle: 'solid'}}>
<div>
Nodes from the accessibility tree have either a role <strong>role</strong> or <strong>internalRole</strong>
<ul>
<li>
Expand All @@ -14,10 +14,10 @@ const AxLegend = () => {
</li>
</ul>

<p> Each node is given a property labeled <strong>ignored</strong>. </p>
<p> Nodes read by the screen reader have their ignored property evaluate to <strong>false</strong>.
<p> Each node is given a property labeled <strong>ignored</strong>. Nodes read by the screen reader have their ignored property evaluate to <strong>false</strong>.
Nodes not read by the screen reader evaluate to <strong>true</strong>.</p>
<p> Nodes labeled <strong>"visible node with no name"</strong> have the ignored property set to false, but are not given a name</p>

<p> Nodes labeled as <strong>no name</strong> are visible to a screen reader, but were not given a name label.</p>
</div>
);
}
Expand Down