You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/packages/svelte/tests/validator/samples/a11y-consider-explicit-label/input.svelte

13 lines
334 B

<button></button>
<a href="/#"><b></b></a>
<button aria-label="Valid empty button"></button>
<a href="/#" aria-label="Valid empty link"></a>
<button aria-hidden='true'></button>
<a href="/#" aria-hidden='true'><b></b></a>
<button>Click me</button>
<a href="/#">Link text</a>
<a href="/#"><img src="./icon.svg" alt="Link text"></a>