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
+30
View File
@@ -0,0 +1,30 @@
[Back to 4 Robust index](index.md)
# 4.1.1 Parsing
- Level: A
- Guideline: 4.1 Compatible
- Principle: 4 Robust
## What it is
In content implemented using markup languages, elements have complete start and end tags, elements are nested according to their specifications, elements do not contain duplicate attributes, and any IDs are unique, except where the specifications allow these features.
## How to test
- Check: In content implemented using markup languages, elements have complete start and end tags, elements are nested according to their specifications, elements do not contain duplicate attributes, and any IDs are unique, except where the specifications allow these features.
- Validate representative pages with the W3C Markup Validation Service: https://validator.w3.org/.
## Notes
- Note 1: This success criterion should be considered as always satisfied for any content using HTML or XML.
- Note 2: Since this criterion was written, the HTML Living Standard has adopted specific requirements governing how user agents must handle incomplete tags, incorrect element nesting, duplicate attributes, and non-unique IDs. [HTML] Although the HTML standard treats some of these cases as non-conforming for authors, it is considered to "allow these features" for the purposes of this success criterion because the specification requires that user agents support handling these cases consistently. In practice, this criterion no longer provides any benefit to people with disabilities in itself. Issues such as missing roles due to inappropriately nested elements or incorrect states or names due to a duplicate ID are covered by different success criteria and should be reported under those criteria rather than as issues with 4.1.1.
- Deprecated/obsolete in WCAG 2.2; retained for backward compatibility. See Understanding 4.1.1 for details.
## Resources
- WCAG 2.2 SC: https://www.w3.org/TR/WCAG22/#parsing
- Understanding: https://www.w3.org/WAI/WCAG22/Understanding/parsing.html
- Quick reference: https://www.w3.org/WAI/WCAG22/quickref/?versions=2.2#parsing
[Back to 4 Robust index](index.md)