Validate supported ARIA attributes to ensure static values are in the allowed token/boolean/numeric formats.
<button aria-pressed="false">Mute</button>
<div role="heading" aria-level="2">Title</div><button aria-pressed="maybe">Mute</button>
<div role="heading" aria-level="high">Title</div>When: A supported ARIA attribute has a static value outside its allowed set
Warning: ARIA attribute "..." has invalid value "..."
Solution: Replace the value with a valid token/boolean/numeric value for that attribute.