-
Notifications
You must be signed in to change notification settings - Fork 26
Accessibility
Ryan Johnson edited this page Nov 2, 2017
·
22 revisions
- WAI-ARIA Authoring Practices (W3C)
- ARIA Techniques (MDN)
- Web Component Checklist (The Paciello Group)
- Buttons (
<button>
,<input type="button">
) - Inputs (
<input>
,<textarea>
) - Links (
<a href="...">
)- Must have
[href]
to be a link - Without
[href]
it's an anchor and does not received focus in tab order.
- Must have
Link | Anchor |
---|---|
<a href="#deep-link">Deep Link</a> |
<a id="deep-link"></a> |
Receives focus in tab order. | No focus given. |
Certain browsers use the Mac system settings to apply keyboard navigation accessibility. To test navigation to all form elements (including links) enable the setting shown below.