Initial commit

This commit is contained in:
2025-12-22 00:21:10 -05:00
commit 2bd947dfe5
91 changed files with 3819 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
[Back to 3 Understandable index](index.md)
# 3.2.6 Consistent Help
- Level: A
- Guideline: 3.2 Predictable
- Principle: 3 Understandable
## What it is
If a web page contains any of the following help mechanisms, and those mechanisms are repeated on multiple web pages within a set of web pages, they occur in the same order relative to other page content, unless a change is initiated by the user:
- Human contact details;
- Human contact mechanism;
- Self-help option;
- A fully automated contact mechanism.
## How to test
- Check: Human contact details;
- Check: Human contact mechanism;
- Check: Self-help option;
- Check: A fully automated contact mechanism.
- Use the sufficient techniques below as acceptable methods when applicable.
- Confirm none of the common failures apply.
## Sufficient techniques (W3C)
- G220: Provide a contact-us link in a consistent location
## Common failures (W3C)
- Inconsistent Help Location
## Notes
- Note 1: Help mechanisms may be provided directly on the page, or may be provided via a direct link to a different page containing the information.
- Note 2: For this success criterion, "the same order relative to other page content" can be thought of as how the content is ordered when the page is serialized. The visual position of a help mechanism is likely to be consistent across pages for the same page variation (e.g., CSS break-point). The user can initiate a change, such as changing the page's zoom or orientation, which may trigger a different page variation. This criterion is concerned with relative order across pages displayed in the same page variation (e.g., same zoom level and orientation).
## Resources
- WCAG 2.2 SC: https://www.w3.org/TR/WCAG22/#consistent-help
- Understanding: https://www.w3.org/WAI/WCAG22/Understanding/consistent-help.html
- Quick reference: https://www.w3.org/WAI/WCAG22/quickref/?versions=2.2#consistent-help
[Back to 3 Understandable index](index.md)