-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.src.html
507 lines (498 loc) · 30.4 KB
/
index.src.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<!DOCTYPE html>
<html>
<head>
<title>ARIA in SVG1.1</title>
<meta charset='utf-8'>
<script src="https://specs.webplatform.org/html-aria/webspecs/master/details-summary/jquery-2.1.1.min.js"></script>
<script src='http://www.w3.org/Tools/respec/respec-w3c-common' class='remove'></script>
<script class='remove'>
var respecConfig = {
specStatus: "webspec",
shortName: "SVG1.1-ARIA",
repository: "webspecs/SVG1.1-ARIA",
editors: [
{ name: "Steve Faulkner",
url: "http://www.paciellogroup.com",
company: "The Paciello Group",
companyURL: "http://www.paciellogroup.com" }
],
};
</script>
<style>
.note-title {padding-left:1.5em}
tr:nth-child(2n+1) {
background-color: #ebebeb;
}
summary {
background: url("https://specs.webplatform.org/assets/css/../img/rightArrow.png") no-repeat scroll 0.5em center #fff;
padding: 0.25em 0.25em 0.25em 2em;
}
summary:hover, summary:focus, details[open] summary:hover, details[open] summary:focus {
background-color: #eee;
}
details, summary {
display: block;
}
p.note::before {
content: "Note: ";
font-weight: bolder;
}
p.note, div.note {
padding: 0.5em 2em;
}
.note {
background: none repeat scroll 0 0 #e9fbe9;
border-color: #52e052;
border-left: 0.25em solid #52e052;
}
.example {
background: none repeat scroll 0 0 #fcfcfc;
border-color: #c0c0c0;
border-left: 0.25em solid #c0c0c0;
color: #222222;
display: block;
margin-left: 1em;
padding-bottom: 0.5em;
padding-left: 1em;
}
</style>
</head>
<body>
<section id="abstract">This specification defines the web developer (author) rules (conformance requirements) for the use of [[!wai-aria]] attributes on [[!SVG11]] elements. It also defines the requirements for Conformance Checking tools.
</section>
<section>
<h2>User agent implementation note</h2>
<div class="advisement">
<p>This specification <strong>only defines</strong> web developer conformance requirements. i.e. which [[!wai-aria]] roles, states and properties a web developer may use on [[!SVG11]] elements.</p>
<p>The web developer conformance and user agent implementation requirements for ARIA in SVG2 are defined in section <a href="https://svgwg.org/svg2-draft/single-page.html#struct-WAIARIAAttributes">5.10. WAI-ARIA attributes</a> of the [[SVG2]] specification.</p>
<p>The user agent implementation requirements for mapping of SVG features to accessibility APIs are defined in the <a href="http://rawgit.com/w3c/aria/master/svg-aam/svg-aam.html">SVG2 Accessibility API Mappings</a> specification.</p>
</div>
</section>
<section>
<h2 id="rules-wd">Rules of ARIA use in SVG1.1 for web developers</h2>
<p>The following table defines the implicit native semantics and corresponding default <a href="http://www.w3.org/TR/wai-aria/host_languages#implicit_semantics">implicit ARIA semantics</a> that apply to <a href="http://www.w3.org/TR/SVG/eltindex.html">SVG 1.1 elements</a>. Each language feature (element) in a cell in the first column implies the ARIA semantics (role, states, and/or properties) given in the cell in the second column of the same row. The third column defines restrictions as to what WAI-ARIA semantic (role, state, or property) may or may not apply. </p>
<p>Documents MUST not use any <a href="http://www.w3.org/TR/wai-aria-1.1/#dfn-role">role</a> values with elements in the following table other than those listed for that element in the second column unless allowed by the restrictions defined in the third column.</p>
<p>Web Developers MUST not use any <a href="http://www.w3.org/TR/wai-aria-1.1/#dfn-role">role</a> values with elements in the following table other than those listed for that element in the second column unless allowed by the restrictions defined in the third column.</p>
<table id="struct-table-aria-implicit">
<caption>
default implicit ARIA semantics and role restrictions
</caption>
<thead>
<tr>
<th>Language feature</th>
<th>Default implied ARIA semantics</th>
<th>Restrictions</th>
</tr>
</thead>
<tbody>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/linking.html#AElement">a</a>’</td>
<td>link role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#AltGlyphElement">altGlyph</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#AltGlyphDefElement">altGlyphDef</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>'<a href="http://www.w3.org/TR/SVG/text.html#AltGlyphItemElement">altGlyphItem</a>'</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/animate.html#AnimateElement">animate</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/animate.html#AnimateColorElement">animateColor</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/animate.html#AnimateMotionElement">animateMotion</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/animate.html#AnimateTransformElement">animateTransform</a>’</td>
<td>none</td>
<td>no role may be appplied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/shapes.html#CircleElement">circle</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/masking.html#ClipPathElement">clipPath</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/color.html#ColorProfileElement">color-profile</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/interact.html#CursorElement">cursor</a>’</td>
<td>none</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#DefsElement">defs</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#DescElement">desc</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/shapes.html#EllipseElement">ellipse</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feBlendElement">feBlend</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feColorMatrixElement">feColorMatrix</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feComponentTransferElement">feComponentTransfer</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feCompositeElement">feComposite</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feConvolveMatrixElement">feConvolveMatrix</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feDiffuseLightingElement">feDiffuseLighting</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feDisplacementMapElement">feDisplacementMap</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feDistantLightElement">feDistantLight</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feFloodElement">feFlood</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feFuncAElement">feFuncA</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feFuncBElement">feFuncB</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feFuncGElement">feFuncG</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feFuncRElement">feFuncR</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement">feGaussianBlur</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feImageElement">feImage</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feMergeElement">feMerge</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feMergeNodeElement">feMergeNode</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feMorphologyElement">feMorphology</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feOffsetElementt">feOffset</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#fePointLightElement">fePointLight</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feSpecularLightingElement">feSpecularLighting</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feSpotLightElement">feSpotLight</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feTileElement">feTile</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#feTurbulenceElement">feTurbulence</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/filters.html#FilterElement">filter</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#FontElement">font</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#FontFaceElement">font-face</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#FontFaceFormatElement">font-face-format</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#FontFaceNameElement">font-face-name</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#FontFaceSrcElement">font-face-src</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#FontFaceURIElement">font-face-uri</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/extend.html#ForeignObjectElement">foreignObject</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-GElement">g</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#GlyphElement">glyph</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#GlyphRefElement">glyphRef</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#ImageElement">image</a>’</td>
<td>img role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/shapes.html#LineElement">line</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/pservers.html#LinearGradientElement">linearGradient</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/painting.html#MarkerElement">marker</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/masking.html#MaskElement">mask</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/metadata.html#MetadataElement">metadata</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#MissingGlyphElement">missing-glyph</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/animate.html#MPathElement">mpath</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/paths.html#PathElement">path</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/pservers.html#PatternElement">pattern</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/shapes.html#PolygonElement">polygon</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/shapes.html#PolylineElement">polyline</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/pservers.html#RadialGradientElement">radialGradient</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/shapes.html#RectElement">rect</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/script.html#ScriptElement">script</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/animate.html#SetElement">set</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/pservers.html#StopElement">stop</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/styling.html#StyleElement">style</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#SVGElement">svg</a>’</td>
<td>group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#SwitchElement">switch</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#SymbolElement">symbol</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#TextElement">text</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#TextPathElement">textPath</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#TitleElement">title</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#TRefElement">tref</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/text.html#TextElement">tspan</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/struct.html#UseElement">use</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/linking.html#ViewElement">view</a>’</td>
<td><code>presentation</code> role provided no associated ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-TitleElement">title</a>’ element, ‘<a href="https://svgwg.org/svg2-draft/single-page.html#struct-DescElement">desc</a>’ element, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-label">aria-label</a>’ attribute, ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-labelledby">aria-labelledby</a>’ attribute, or ‘<a href="http://www.w3.org/TR/wai-aria-1.1/states_and_properties#aria-describedby">aria-describedby</a>’ attribute; otherwise, group role</td>
<td>no restrictions</td>
</tr>
<tr>
<td>‘<a href="http://www.w3.org/TR/SVG/fonts.html#VKernElement">vkern</a>’</td>
<td>none</td>
<td>no role may be applied</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Conformance Requirements</h2>
<p>All diagrams, examples, and notes in this specification are non-normative, as are all sections
explicitly marked non-normative. Everything else in this specification is normative.</p>
<p>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD
NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of
this document are to be interpreted as described in RFC2119. The key word "OPTIONALLY" in the
normative parts of this document is to be interpreted with the same normative meaning as "MAY" and
"OPTIONAL". For readability, these words do not appear in all uppercase letters in this
specification. [[!RFC2119]]]</p>
</section>
</body>
</html>