From 9225ae0239ca9a8e1c295fb42b66e19a17b3c54a Mon Sep 17 00:00:00 2001 From: Michael Fairchild Date: Tue, 15 Jan 2019 15:24:05 -0600 Subject: [PATCH] fix(rule): frame-title applies to wcag242 (#1312) --- doc/rule-descriptions.md | 2 +- lib/rules/frame-title.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/rule-descriptions.md b/doc/rule-descriptions.md index 5e0c845bfe..f6adb7fb0d 100644 --- a/doc/rule-descriptions.md +++ b/doc/rule-descriptions.md @@ -32,7 +32,7 @@ | form-field-multiple-labels | Ensures form field does not have multiple label elements | Moderate | cat.forms, wcag2a, wcag332 | true | | frame-tested | Ensures <iframe> and <frame> elements contain the axe-core script | Critical | cat.structure, review-item | true | | frame-title-unique | Ensures <iframe> and <frame> elements contain a unique title attribute | Serious | cat.text-alternatives, best-practice | true | -| frame-title | Ensures <iframe> and <frame> elements contain a non-empty title attribute | Serious | cat.text-alternatives, wcag2a, wcag241, wcag412, section508, section508.22.i | true | +| frame-title | Ensures <iframe> and <frame> elements contain a non-empty title attribute | Serious | cat.text-alternatives, wcag2a, wcag242, wcag412, section508, section508.22.i | true | | heading-order | Ensures the order of headings is semantically correct | Moderate | cat.semantics, best-practice | true | | hidden-content | Informs users about hidden content. | Minor | cat.structure, experimental, review-item | true | | html-has-lang | Ensures every HTML document has a lang attribute | Serious | cat.language, wcag2a, wcag311 | true | diff --git a/lib/rules/frame-title.json b/lib/rules/frame-title.json index 8b411ec2b7..8d1a465e8f 100644 --- a/lib/rules/frame-title.json +++ b/lib/rules/frame-title.json @@ -4,7 +4,7 @@ "tags": [ "cat.text-alternatives", "wcag2a", - "wcag241", + "wcag242", "wcag412", "section508", "section508.22.i"