<a href="#">
<svg></svg>
</a>
Pass = No accessible name
aria-label from SVG<a href="#">
<svg aria-label="Hello"></svg>
</a>
Pass = Accessible name must be "Hello" from link content
<a href="#">
<svg>
<title>Hello</title>
</svg>
</a>
Pass = Accessible name must be "Hello" from link content
aria-label on link<a href="#" aria-label="Goodbye">
<svg aria-label="Hello"></svg>
</a>
Pass = Accessible name must be "Goodbye" from aria-label
aria-label on link<a href="#" aria-label="Goodbye">
<svg>
<title>Hello</title>
</svg>
</a>
Pass = Accessible name must be "Goodbye" from aria-label
<button>
<svg></svg>
</button>
Pass = No accessible name
aria-label from SVG<button>
<svg aria-label="Hello">
</svg>
</button>
Pass = Accessible name must be "Hello" from button content
title from SVG<button>
<svg>
<title>Hello</title>
</svg>
</button>
Pass = Accessible name must be "Hello" from button content
aria-label on link<button aria-label="Goodbye">
<svg aria-label="Hello">
</svg>
</button>
Pass = Accessible name must be "Goodbye" from aria-label
aria-label on link<button aria-label="Goodbye">
<svg>
<title>Hello</title>
</svg>
</button>
Pass = Accessible name must be "Goodbye" from aria-label