Techniques for WCAG 2.0

Skip to Content (Press Enter)

-

F77: Failure of Success Criterion 4.1.1 due to duplicate values of type ID

Important Information about Techniques

See Understanding Techniques for WCAG Success Criteria for important information about the usage of these informative techniques and how they relate to the normative WCAG 2.0 success criteria. The Applicability section explains the scope of the technique, and the presence of techniques for a specific technology does not imply that the technology can be used in all situations to create content that meets WCAG 2.0.

Applicability

HTML5, and any XML-based markup languages including HTML 4 and SVG

This failure relates to:

Description

This describes a failure condition where duplicate ID errors are known to cause problems for assistive technologies when they are trying to interact with content. Duplicate values of type ID can be problematic for user agents that rely on this attribute to accurately convey relationships between different parts of content to users. For example, a screen reader may use ID values to identify the applicable header content for a data cell within a data table, or an input control to which a given label applies. If these values are not unique, the screen reader will be unable to programmatically determine which headers are associated with the data cell or which control is associated with which label or name.

Checking that ID attribute values are unique within a document can be done by validating the document against its specification, because the specification defines which attributes contain document-wide unique identifiers.

Note 1: In most markup languages, ID values are attribute values, for example in HTML and SVG.

Note 2: XML documents that use only the xml:id attribute as an ID attribute, parsing the XML document with a validating parser that supports the xml:id specification is sufficient.

Examples

Failure Example 1

An author uses an online validation service to check that all id attribute values are unique.

Failure Example 2

A developer utilizes features in their authoring tool to ensure that id attribute values are unique.

Resources

Resources are for information purposes only, no endorsement implied.

Tests

Procedure

  1. Check that all values of type ID are unique in the Web page

Expected Results