Accessibility
This guide will help you build accessible web application using MYDS. Following these guidelines ensures your application is usable by people with diverse abilities and meet WCAG 2.2 standards.
Core Principles
WCAG 2.2 is built around four principles:
- Perceivable: Information must be presentable to users in ways they can perceive
- Operable: Interface components must be operable by diverse users
- Understandable: Information and operation must be understandable
- Robust: Content must be robust enough to work with various user agents and assistive technologies
Keyboard Navigation
Keyboard navigation allows users to interact with your application without a mouse. It's essential for users with motor impairments or those who rely on screen readers.
Requirements
- All interactive elements must be keyboard accessible
- Focus order must be logical and intuitive
- Keyboard traps must be avoided
- Keyboard shortcuts should be configurable or avoidable
Implementation Tips
Testing Tips
- Try navigating your entire application using only Tab , Shift + Tab , Enter , and Space
- Ensure focus indicators are visible at all times
- Verify that focus order follows the visual layout
Focus Management
Focus management ensures that users can navigate your application in a predictable and efficient manner, be it visually or audibly.
Requirements
- Focus indicators must be visible
- Focus must be appropriately managed when content changes
Implementation Tips
Note
Using Dialog
component from MYDS handles all of this for you!
Testing Tips
- Ensure focus is trapped within modals until they're closed
- After closing a modal, focus should return to the element that triggered it
- Focus indicators should be visible and prominent (minimum 3:1 contrast ratio)
Semantic HTML and ARIA
Requirements
- Use semantic HTML elements whenever possible
- ARIA should only be used when HTML semantics are insufficient
- Ensure all ARIA attributes are used correctly
Implementation Tips
Testing Tips
- Validate your ARIA usage with automated tools
- Test with screen readers to ensure ARIA conveys the intended information
- Verify that all custom components have appropriate roles and states
Forms and Validation
Requirements
- All form fields must have associated labels
- Error messages must be programmatically associated with their fields
- Required fields must be clearly indicated
- Instructions for complex fields must be provided
Implementation Tips
Testing Tips
- Ensure all form controls have visible labels
- Verify that screen readers announce validation errors
- Check that error suggestions provide clear guidance for correction
- Test forms with keyboard only and screen readers
Images and Media
Requirements
- All images must have alternative text
- Decorative images should have empty alt attributes
- Complex images need detailed descriptions
- Video content requires captions and transcripts
Implementation Tips
Testing Tips
- Review all images with automated tools to ensure alt text exists
- Have content experts review alt text for accuracy and usefulness
- Ensure decorative images are properly hidden from screen readers
Color and Contrast
Requirements
- Text must have minimum contrast ratio of 4.5:1 (3:1 for large text)
- UI components require minimum contrast ratio of 3:1
- Information must not be conveyed by color alone
Implementation Tips
Testing Tips
- Use contrast checking tools for all text and UI elements
- Test pages in grayscale to identify color-dependent information
- Verify that all status indicators use multiple cues (shape, text, icons)
Motion and Animation
Requirements
- Allow users to pause, stop, or hide moving content
- Avoid content that flashes more than three times per second
- Respect reduced motion preferences
Implementation Tips
Testing Tips
- Test with OS-level reduced motion settings enabled
- Ensure all animations can be disabled
- Verify that no content flashes rapidly
Interactive Components
Requirements
- Custom components must use appropriate ARIA roles and states
- Complex widgets must follow WAI-ARIA authoring practices
- Touch targets need minimum size of 44x44px with adequate spacing
Implementation Tips
Testing Tips
- Verify that all custom components have appropriate ARIA roles
- Test complex widgets with screen readers to confirm they announce state changes
- Check that touch targets are sufficiently large on mobile devices
Page Structure and Navigation
Requirements
- Pages must have proper heading structure (h1-h6)
- Landmarks must be used to identify page regions
- Skip links should be provided for repeated content
- Page titles must be descriptive and unique
Implementation Tips
Testing Tips
- Use heading outline tools to verify proper heading structure
- Test navigation with screen readers to confirm landmarks are announced
- Verify that skip links work and are visible when focused
Content and Text
Requirements
- Text must be resizable up to 200% without loss of content
- Reading level should accommodate diverse abilities
- Acronyms and jargon should be defined
- Layout should reflow at 400% zoom without horizontal scrolling
Implementation Tips
Testing Tips
- Test pages at 200% zoom to verify text remains readable
- Test with browser text-only zoom
- Verify that layouts reflow properly at 400% zoom without horizontal scrolling
WCAG 2.2 New Success Criteria
Requirements
- Focus Appearance (2.4.11, AAA): Ensure focus indicators have minimum area, contrast, and are not obscured
- Dragging Movements (2.5.7, AA): Functions that use dragging must have alternative methods
- Target Size (2.5.8, AA): Target size of at least 24x24 CSS pixels (44x44 recommended)
- Consistent Help (3.2.6, A): Help mechanisms like contact information must be consistent
- Accessible Authentication (3.3.7, A): Cognitive tests must have alternatives
- Redundant Entry (3.3.8, A): Minimize repetitive data entry
- Visible Controls (2.4.13, AA): User interface components revealed on hover/focus must be dismissible, hoverable, and persistent
Implementation Tips
Testing Tips
- Ensure all draggable functions have keyboard alternatives
- Verify that tooltips and popovers remain visible until dismissed
- Test authentication flows for cognitive function alternatives
Testing and Validation
Automated Testing
- Integrate accessibility linting in your development workflow
- Run automated tests as part of CI/CD pipelines
- Use tools like
jest-axe
for component testing
Note
We also recommend Storybook
and its suite of testing addons if you have a
medium to large engineering team.
Manual Testing
- Test with keyboard navigation
- Test with screen readers (NVDA, JAWS, VoiceOver)
- Test with high contrast mode
- Test with text resizing and zoom
- Test with reduced motion settings
Tools
eslint-plugin-jsx-a11y
ESLint plugin for accessibility rules
jest-axe
Automated testing for CI pipeline
IBM Equal Access Toolkit
Chrome extension for accessibility testing
Storybook
Full-featured UI development environment