WCAG 2.2 - Success Criterion
1.3.3 Sensory Characteristics
Description
Instructions provided for understanding and operating content must not rely solely on sensory characteristics of components such as shape, color, size, visual location, orientation, or sound. When instructions depend entirely on one sensory property, users who cannot perceive that property - such as blind users, colorblind users, or users who are deaf - cannot follow the instruction. Additional non-sensory identifiers such as a label or text name must accompany any sensory reference.
How To Test
- Read through all instructions and help text on the page for references to shape, color, size, position, or sound.
- For each sensory reference found, check whether a non-sensory identifier (such as a text label, name, or heading) is also provided.
- Test with a screen reader to verify that elements referenced by shape or position can be located based on the provided alternative identifiers.
- Check whether any instructions rely on sound alone (e.g., "when you hear the beep") and verify a non-auditory cue is also described.
- Review error messages, tooltips, and contextual help text for sensory-only references.
Testing Tools
- NVDA — Free screen reader for Windows. Download, install, and open Firefox to test the demo. Navigate using Tab and arrow keys, and listen to role, name, and state announcements from the page.
- VoiceOver (macOS) — Built into macOS. Enable with Cmd+F5, then open Safari or Chrome to test the demo. Use VO+arrow keys to navigate and hear semantic structure announcements.
- Lighthouse — Browser accessibility audit in Chrome DevTools. Open DevTools (F12), go to Lighthouse, run the audit to identify semantic and labeling issues.
Demo
The instructions below rely only on sensory characteristics (shape, colour, position) to describe a control:
To submit your order, click the round green button on the right.
A user who cannot see colour or shape cannot follow these instructions.
The instructions identify the control by its text label - accessible to all users:
To submit your order, click the Submit order button.
Any user can find and activate the button by its visible text label, regardless of visual ability.
Code
Code
Instructions identify the action by position only:
To continue, click the button in the top right corner.
Welcome to our survey. This quick 5-question form helps us improve your experience.
Instructions identify the action by its label:
To continue, click the Next button.
Welcome to our survey. This quick 5-question form helps us improve your experience.
Code
Code
WCAG Techniques
- Failure: F14 (Failure due to identifying content only by its shape or visual location)
- Success Techniques: H44 (Using label elements to associate text labels with form inputs), G96 (Providing textual identification of items that otherwise rely only on sensory information to be distinguished)
Fail Explanation
A failure occurs when an instruction requires the user to perceive a specific sensory characteristic in order to act. Examples include instructions such as "click the round button", "use the blue link on the right", "see the form below", or "press the button that makes a chime sound". A screen reader user cannot determine which button is "round", a colorblind user cannot identify "the blue link", and a deaf user cannot hear "the chime sound", making these instructions inaccessible.
Pass Explanation
A passing implementation supplements sensory references with non-sensory identifiers. For example, "click the Submit button (the round button at the bottom of the form)" provides both a text label and a sensory description, so any user can locate the control regardless of their ability to perceive shape or position. The instruction "select your preferred color using the color picker labeled 'Theme color'" passes because the label is provided as a non-sensory identifier.
Notes
This criterion is often overlooked in instructional content and onboarding flows where authors assume visual context. It is distinct from 1.4.1 Use of Color, which specifically addresses when color alone is used to convey information; this criterion covers all sensory modalities.
Techniques
WCAG techniques used in this demo: G96
Suggested Solutions & References
Based on official WCAG guidance (0 matching audit findings for this checkpoint).