Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: auditory cues to convey information are WCAG 1.1.1 not 1.3.3 #2653

Merged
merged 2 commits into from
May 11, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/assessments/color/test-steps/auditory-cues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ export const AuditoryCues: Requirement = {
howToTest: auditoryCuesHowToTest,
isManual: true,
...content,
guidanceLinks: [link.WCAG_1_3_3],
guidanceLinks: [link.WCAG_1_1_1],
};
2 changes: 1 addition & 1 deletion src/content/test/sensory/guidance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const guidance = create(({ Markup, Link }) => (
</li>
</ul>
<h3>
Don't use audio as the only means of conveying information. (<Link.WCAG_1_3_3 />)
Don't use audio as the only means of conveying information. (<Link.WCAG_1_1_1 />)
</h3>
<ul>
<li>Convey the same information visually, such as through text or icons.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28346,10 +28346,10 @@ exports[`Guidance Content pages test/sensory/guidance matches the snapshot 1`] =
Don't use audio as the only means of conveying information. (
<a
class="ms-Link insights-link root-000"
href="https://www.w3.org/WAI/WCAG21/Understanding/sensory-characteristics.html"
href="https://www.w3.org/WAI/WCAG21/Understanding/non-text-content.html"
target="_blank"
>
WCAG 1.3.3
WCAG 1.1.1
</a>
)
</h3>
Expand Down