Skip to content

Commit

Permalink
Merge pull request #1733 from IBMa/joho-2.2KBrule-1726
Browse files Browse the repository at this point in the history
feature(element_tabbable_unobscured): WCAG 2.2: 2.4.11 Focus not obscured (Minimum) added to Keyboard Checker Mode
  • Loading branch information
ErickRenteria authored Nov 7, 2023
2 parents 0cf827f + 40788c3 commit bc32ebb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion accessibility-checker-extension/src/ts/docs/UsingACApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ class UsingACApp extends React.Component<{}, UsingACAppState> {
<OrderedList>
<ListItem>No tab stops on non-interactive or non-visible elements**</ListItem>
<ListItem>Tab order matches the visual flow of the page</ListItem>
<ListItem>Inspect elements with found issues (select the triangle icons)</ListItem>
<ListItem>Inspect elements with found issues</ListItem>
</OrderedList>
</ListItem>
<ListItem>Test interactive elements
Expand Down
3 changes: 3 additions & 0 deletions accessibility-checker-extension/src/ts/util/UtilKCM.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ export class UtilKCM {
result.ruleId === "script_focus_blur_review" ||

result.ruleId === "element_tabbable_visible" ||

// 2.4.11 Focus not obscured (Minimum)
result.ruleId === "element_tabbable_unobscured" ||


// 3.2.1 On Focus
Expand Down

0 comments on commit bc32ebb

Please sign in to comment.