-
Notifications
You must be signed in to change notification settings - Fork 801
/
Copy pathtarget-size.html
183 lines (167 loc) · 3.79 KB
/
target-size.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<style>
/* Ensure sufficient space between tests */
p {
margin: 30px;
}
img {
vertical-align: bottom;
}
</style>
<!-- These fall on top of the elements immediately below it
this should not effect their outcome -->
<p style="position: fixed">
<a href="#" id="pass-fixed">Wide link</a>
<a href="#" id="fail-fixed">x</a>
</p>
<p>
<button id="pass1" style="display: inline-block; margin-right: 20px">
x
</button>
<select id="pass2">
<option>opt 1</option>
<option>opt 2</option>
</select>
<textarea id="pass3" tabindex="-1">
Test elements with tabindex="-1".
</textarea>
</p>
<!-- Nested controls -->
<p>
<a
role="link"
aria-label="play"
tabindex="0"
style="display: inline-block"
id="pass4"
>
<button
style="margin: 1px; line-height: 20px"
id="inapplicable7"
tabindex="-1"
>
Play
</button>
</a>
</p>
<p>
<a role="link" tabindex="0" id="pass5">
Wide link <button id="fail7">y</button>
</a>
</p>
<!-- Regression test for stacking context behavior from #4350 -->
<div style="margin: 30px; height: 50px">
<div style="position: absolute; transform: scale(1)">
<a href="#" id="pass9">wide enough</a>
<a href="#" id="pass10" style="opacity: 0.6">also wide enough</a>
</div>
</div>
<!-- Failed examples -->
<p>
<button id="fail1">x</button
><span role="button" tabindex="0" id="fail2">x</span>
</p>
<ul>
<li><a href="#" id="fail3">Item1</a></li>
<li><a href="#" id="fail4">Item2</a></li>
</ul>
<p>
<input type="checkbox" id="fail5" /><input type="checkbox" id="fail6" /><input
type="text"
id="pass-adjacent"
/>
</p>
<!-- Incomplete examples -->
<ul>
<li><a href="#" tabindex="-1" id="incomplete1">Item1</a></li>
<li><a href="#" tabindex="-1" id="incomplete2">Item2</a></li>
</ul>
<p>
<a href="#" id="incomplete3" tabindex="-1">x</a>
<a href="#" id="pass6" tabindex="-1">Wide link</a>
</p>
<p>
<a href="#" id="incomplete4" tabindex="-1">abc</a>
<a
href="#"
id="pass7"
tabindex="-1"
style="display: inline-block; margin-left: -1em"
>Wide link</a
>
<a
href="#"
id="pass8"
tabindex="-1"
style="display: inline-block; margin-left: -1em"
>Wide link</a
>
</p>
<p>
<!-- These links touch, images overflow on the left and right -->
<a href="#" id="incomplete5"
>
<img
src="https://www.w3.org/StyleSheets/TR/2016/logos/W3C"
width="50"
height="33"
alt="M1"
style="float: left"
/>
</a>
<a href="#" id="incomplete6"
>
<img
src="https://www.w3.org/StyleSheets/TR/2016/logos/W3C"
width="50"
height="33"
alt="M4"
style="position: absolute"
/>
</a>
</p>
<p>
<!-- These links touch, images overflow on the top and bottom -->
<a href="#" id="incomplete7">
<img
src="https://www.w3.org/StyleSheets/TR/2016/logos/W3C"
width="50"
height="33"
alt="M3"
/>
</a>
<br />
<a href="#" id="incomplete8" style="display: inline-block; height: 18px">
<img
src="https://www.w3.org/StyleSheets/TR/2016/logos/W3C"
width="50"
height="33"
alt="M2"
/>
</a>
</p>
<!-- Inapplicable -->
<p>
The quick <a href="#" id="inapplicable1">brown</a><br />
fox jumped <a href="#" id="inapplicable2">over</a> the lazy dog.
</p>
<ul>
<li>Inapplicable <a href="#" id="inapplicable3">Item 1</a></li>
<li>Inapplicable <a href="#" id="inapplicable4">Item 2</a></li>
</ul>
<svg>
<a href="#" id="inapplicable5"><text y="15">Hello</text></a>
<circle
tabindex="0"
role="button"
cx="50"
cy="50"
r="40"
stroke="black"
stroke-width="3"
fill="red"
/>
</svg>
<img usemap="#imagemap" src="#" alt="" />
<map name="imagemap">
<area id="inapplicable6" shape="circle" coords="75 75 75" href="#" />
</map>