diff --git a/src/common/components/cards/rich-resolution-content.tsx b/src/common/components/cards/rich-resolution-content.tsx index 4ac98fe6e05..aa2fcb4af6b 100644 --- a/src/common/components/cards/rich-resolution-content.tsx +++ b/src/common/components/cards/rich-resolution-content.tsx @@ -80,14 +80,6 @@ export const RichResolutionContent = NamedFC( ); } - case 'web/scrollable-region-focusable': { - return ( - - Examine the element and ensure that, if there is scrollable content, the - elements are accessible by keyboard. - - ); - } case 'web/label-content-name-mismatch': { return ( diff --git a/src/scanner/get-rule-inclusions.ts b/src/scanner/get-rule-inclusions.ts index 2de97d1769e..7eedc7af57d 100644 --- a/src/scanner/get-rule-inclusions.ts +++ b/src/scanner/get-rule-inclusions.ts @@ -47,10 +47,6 @@ export const explicitRuleOverrides: DictionaryStringTo = { status: 'included', reason: 'best practice rule that was investigated with no known false positives, implemented as an automated check.', }, - 'scrollable-region-focusable': { - status: 'excluded', - reason: 'only reports to needs-review results due to potential false-positives', - }, }; // all the rules we enable in needs review @@ -58,7 +54,6 @@ export const needsReviewRules = [ 'aria-input-field-name', 'color-contrast', 'th-has-data-cells', - 'scrollable-region-focusable', 'label-content-name-mismatch', 'p-as-heading', ]; diff --git a/src/tests/unit/tests/common/components/cards/rich-resolution-content.test.tsx b/src/tests/unit/tests/common/components/cards/rich-resolution-content.test.tsx index f2976ef9a70..2569a0bf7e4 100644 --- a/src/tests/unit/tests/common/components/cards/rich-resolution-content.test.tsx +++ b/src/tests/unit/tests/common/components/cards/rich-resolution-content.test.tsx @@ -19,7 +19,6 @@ describe('RichResolutionContent', () => { 'web/aria-input-field-name', 'web/color-contrast', 'web/th-has-data-cells', - 'web/scrollable-region-focusable', 'web/label-content-name-mismatch', 'web/p-as-heading', ])('renders static content with id=%s', testId => { diff --git a/src/tests/unit/tests/common/self-fast-pass.test.ts b/src/tests/unit/tests/common/self-fast-pass.test.ts index f73f8d45054..38270506942 100644 --- a/src/tests/unit/tests/common/self-fast-pass.test.ts +++ b/src/tests/unit/tests/common/self-fast-pass.test.ts @@ -71,7 +71,6 @@ describe('SelfFastPass', () => { 'aria-input-field-name', 'color-contrast', 'th-has-data-cells', - 'scrollable-region-focusable', 'label-content-name-mismatch', 'p-as-heading', ], diff --git a/src/tests/unit/tests/scanner/__snapshots__/get-rule-inclusions.test.ts.snap b/src/tests/unit/tests/scanner/__snapshots__/get-rule-inclusions.test.ts.snap index a4a5258bd53..245eefab0a9 100644 --- a/src/tests/unit/tests/scanner/__snapshots__/get-rule-inclusions.test.ts.snap +++ b/src/tests/unit/tests/scanner/__snapshots__/get-rule-inclusions.test.ts.snap @@ -296,8 +296,7 @@ exports[`getRuleInclusions getRuleInclusions matches snapshotted list of product "status": "excluded", }, "scrollable-region-focusable": { - "reason": "only reports to needs-review results due to potential false-positives", - "status": "excluded", + "status": "included", }, "select-name": { "status": "included",