Description: A WAI-ARIA element contains roles, states or properties that are not allowed on this type of element.
Context: Invalid aria elements could cause the element to be read incorrectly by assistive technology.
<span class="tribe-icon-list" aria-hidden="true" role="none"></span>
How to fix it: Check the W3C specification for “Accessible Rich Internet Applications Suite” (WAI-ARIA) to see what is supported for this type of element.
<span class="tribe-icon-list" aria-hidden="true"></span>
Techniques: ARIA5