<option>
with disabled
This is a test case designed to determine how the disabled
attribute, applied to the <option>
element, is announced by various screen readers.
Disabled attributes cannot receive focus, so the only way to test how these attributes are announced is via:
<div>
<label for="suburb">Suburb</label>
<select id="suburb">
<option value="Abbotsford" disabled>Abbotsford</option>
</select>
</div>