diff --git a/doc/rule-descriptions.md b/doc/rule-descriptions.md index 6caca0cdfa..d061674f7b 100644 --- a/doc/rule-descriptions.md +++ b/doc/rule-descriptions.md @@ -119,7 +119,7 @@ Rules that do not necessarily conform to WCAG success criterion but are industry | [landmark-unique](https://dequeuniversity.com/rules/axe/4.10/landmark-unique?application=RuleDescription) | Ensure landmarks are unique | Moderate | cat.semantics, best-practice | failure | | | [meta-viewport-large](https://dequeuniversity.com/rules/axe/4.10/meta-viewport-large?application=RuleDescription) | Ensure <meta name="viewport"> can scale a significant amount | Minor | cat.sensory-and-visual-cues, best-practice | failure | | | [page-has-heading-one](https://dequeuniversity.com/rules/axe/4.10/page-has-heading-one?application=RuleDescription) | Ensure that the page, or at least one of its frames contains a level-one heading | Moderate | cat.semantics, best-practice | failure | | -| [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.10/presentation-role-conflict?application=RuleDescription) | Ensure elements marked as presentational are consistently ignored | Minor | cat.aria, best-practice, ACT | failure | [46ca7f](https://act-rules.github.io/rules/46ca7f) | +| [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.10/presentation-role-conflict?application=RuleDescription) | Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them | Minor | cat.aria, best-practice, ACT | failure | [46ca7f](https://act-rules.github.io/rules/46ca7f) | | [region](https://dequeuniversity.com/rules/axe/4.10/region?application=RuleDescription) | Ensure all page content is contained by landmarks | Moderate | cat.keyboard, best-practice | failure | | | [scope-attr-valid](https://dequeuniversity.com/rules/axe/4.10/scope-attr-valid?application=RuleDescription) | Ensure the scope attribute is used correctly on tables | Moderate | cat.tables, best-practice | failure | | | [skip-link](https://dequeuniversity.com/rules/axe/4.10/skip-link?application=RuleDescription) | Ensure all skip links have a focusable target | Moderate | cat.keyboard, best-practice | failure, needs review | | diff --git a/lib/rules/presentation-role-conflict.json b/lib/rules/presentation-role-conflict.json index 9d58c4bcbb..27387122d5 100644 --- a/lib/rules/presentation-role-conflict.json +++ b/lib/rules/presentation-role-conflict.json @@ -6,8 +6,8 @@ "tags": ["cat.aria", "best-practice", "ACT"], "actIds": ["46ca7f"], "metadata": { - "description": "Ensure elements marked as presentational are consistently ignored", - "help": "Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them" + "description": "Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them", + "help": "Elements marked as presentational should be consistently ignored" }, "all": [], "any": [], diff --git a/locales/_template.json b/locales/_template.json index 2fe5e1fe68..7643001d02 100644 --- a/locales/_template.json +++ b/locales/_template.json @@ -342,8 +342,8 @@ "help": "Page should contain a level-one heading" }, "presentation-role-conflict": { - "description": "Ensure elements marked as presentational are consistently ignored", - "help": "Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them" + "description": "Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them", + "help": "Elements marked as presentational should be consistently ignored" }, "region": { "description": "Ensure all page content is contained by landmarks",