button element

Pass Criteria

Reference

Test btn-001: button element, no text

Code

<button id="btn-01" type="button"></button>

Test btn-002: button element, with text

Code

<button id="btn-02" type="button">Test</button>

Test btn-003: button element, with disabled attribute

Code

<button id="btn-03" type="button" disabled="">Test</button>

Test btn-004: button element, with accessible name from aria-label attribute

Code

<button id="btn-04" type="button" aria-label="Aria Label Test"></button>

Test btn-005: button element, with text and aria-label attribute

Code

<button id="btn-05" type="button" aria-label="Aria Label Text">Visible Text</button>