Chromium Adds ARIA Role Inspector and Contrast Hints to DevTools
Tech · 4 min read
The latest Chromium release integrates a deeper Accessibility Inspector into DevTools that highlights computed ARIA roles, derived names, and contrast warnings alongside elements in the Elements panel. The inspector also points out when an element's accessible name comes from aria-label, inner text, or an associated label, and marks when roles are inconsistent with element types.
A new contrast hint engine asynchronously evaluates foreground-background color pairs and flags potential WCAG AA/AAA failures; it also suggests closest color tokens from the site's design system palette to help engineers fix issues quickly. The tool is integrated with the Styles pane so developers can apply token variables directly from the hint and rerun checks without leaving DevTools.
Accessibility engineers appreciate the lower friction: issues that used to surface only during audits or manual testing are now discoverable during iterative development. The inspector's ability to show computed accessibility properties is especially useful for complex component libraries where ARIA attributes are set dynamically at runtime.
The change doesn’t replace user testing, but it reduces noisy regressions. Teams should update their testing policies to include DevTools checks alongside automated linters and CI tests. For design system maintainers, the new hints are an invitation to publish canonical token mappings and ensure components expose accessible defaults that align with what DevTools recommends.