<a>
where aria-describedby
should be accessible descriptionThe purpose this test is to show the cascade order of how accessible descriptions are applied in the accessibility tree for the <a>
element. The priority order from highest to lowest is:
aria-describedby
value (as per the "Cat" example below).title
value.This example should not be considered proper practice, and is for testing purposes only.
<a
href="#"
aria-describedby="cat"
title="rabbit"
>
Fish
</a>
<div id="cat">
Cat
</div>