-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path02-select.html
66 lines (66 loc) · 2.43 KB
/
02-select.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>select</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<link href="assets/css/examples.css" rel="stylesheet">
</head>
<body>
<h1><code><select></code></h1>
<p>← <a href="index.html">Return to main list</a></p>
<p>This is a test case designed to determine how the <a href="https://html.spec.whatwg.org/multipage/form-elements.html#the-select-element" target="_blank"><code><select></code></a> element is announced by various screen readers.</p>
<h2>Example</h2>
<form action="#">
<div class="form-group">
<label class="label" for="suburb">Suburb</label>
<select class="input" id="suburb">
<option value="Abbotsbury">Abbotsbury</option>
<option value="Abbotsford">Abbotsford</option>
<option value="Acacia">Acacia Gardens</option>
<option value="Agnes">Agnes Banks</option>
<option value="Airds">Airds</option>
<option value="Alexandria">Alexandria</option>
<option value="Alfords">Alfords Point</option>
<option value="Allambie">Allambie Heights</option>
</select>
</div>
</form>
<h2>Code</h2>
<!-- start code -->
<pre><code><div>
<label for="suburb">Suburb</label>
<select id="suburb">
<option value="Abbotsbury">Abbotsbury</option>
</select>
</div></code></pre>
<!-- end code -->
<h2>Assistive technologies</h2>
<div class="note">
<h3>VoiceOver</h3>
<ul class="browser-list">
<li><b>Chrome:</b> Abbotsbury. Suburb. Menu popup collapsed. Button.</li>
<li><b>Firefox:</b> Abbotsbury. Suburb. Popup button.</li>
<li><b>Safari:</b> Abbotsbury. Suburb. Popup button.</li>
</ul>
</div>
<div class="note">
<h3>NVDA</h3>
<ul class="browser-list">
<li><b>Chrome:</b> Suburb combobox. Abbotsbury. Collapsed.</li>
<li><b>Firefox:</b> Suburb combobox. Abbotsbury. Collapsed.</li>
<li><b>Edge:</b> Suburb combobox. Abbotsbury. Collapsed.</li>
</ul>
</div>
<div class="note">
<h3>JAWS</h3>
<ul class="browser-list">
<li><b>Chrome:</b> Suburb combobox. Abbotsbury.</li>
<li><b>Firefox:</b> Suburb combobox. Abbotsbury.</li>
<li><b>Edge:</b> Suburb combobox. Abbotsbury.</li>
</ul>
</div>
<p>← <a href="index.html">Return to main list</a></p>
</body>
</html>