-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvoiceover03.html
72 lines (72 loc) · 2.49 KB
/
voiceover03.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
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>VoiceOver test with aria-labelledby</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>VoiceOver test with <code>aria-labelledby</code></h1>
<p>← <a href="index.html">Return to main list</a></p>
<p>This test case is designed to determine how landmark elements are displayed in VoiceOver's Rotor Landmark list.</p>
<h2>Example</h2>
<div class="example">
<header class="inner-example" aria-labelledby="red">
<h4 id="red">Red</h4>
</header>
<main class="inner-example" aria-labelledby="orange">
<h4 id="orange">Orange</h4>
</main>
<aside class="inner-example" aria-labelledby="yellow">
<h4 id="yellow">Yellow</h4>
</aside>
<nav class="inner-example" aria-labelledby="green">
<h4 id="green">Green</h4>
</nav>
<article class="inner-example" aria-labelledby="blue">
<h4 id="blue">Blue</h4>
</article>
<footer class="inner-example" aria-labelledby="violet">
<h4 id="violet">Violet</h4>
</footer>
</div>
<h2>Code</h2>
<!-- start code -->
<pre><code><header aria-labelledby="red">
<h4 id="red">Red</h4>
</header>
<main aria-labelledby="orange">
<h4 id="orange">Orange</h4>
</main>
<aside aria-labelledby="yellow">
<h4 id="yellow">Yellow</h4>
</aside>
<nav aria-labelledby="green">
<h4 id="green">Green</h4>
</nav>
<article aria-labelledby="blue">
<h4 id="blue">Blue</h4>
</article>
<footer aria-labelledby="violet">
<h4 id="violet">Violet</h4>
</footer></code></pre>
<!-- end code -->
<h2>Results</h2>
<figure>
<img src="assets/img/rotor-chrome03.png" alt="Chome Rotor Landmarks View">
<figcaption>Chome Rotor Landmarks View</figcaption>
</figure>
<figure>
<img src="assets/img/rotor-firefox03.png" alt="Firefox Rotor Landmarks View">
<figcaption>Firefox Rotor Landmarks View</figcaption>
</figure>
<figure>
<img src="assets/img/rotor-safari03.png" alt="Safari Rotor Landmarks View">
<figcaption>Safari Rotor Landmarks View</figcaption>
</figure>
<p><a class="button-secondary small" href="support-voiceover-rotor.html">VoiceOver Rotor support chart</a></p>
<p>← <a href="index.html">Return to main list</a></p>
</body>
</html>