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/test/validator/samples/a11y-aria-role/input.svelte

8 lines
159 B

<!-- valid -->
<div role="tooltip"></div>
<div role="button tooltip"></div>
<!-- not valid -->
<div role="toooltip"></div>
<div role="button toooltip"></div>