forked from DISIC/rgaa_referentiel_en
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcriteria.html
5687 lines (5446 loc) · 414 KB
/
criteria.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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RGAA 3 2016 Criteria - English translation</title>
<meta content="English translation of the RGAA 3 2016, French official accessibility guidelines. Criteria and tests." name="description" />
<meta content="RGAA, RGAA 3 2016, French accessibility guidelines, English translation, criteria, tests" name="keywords" />
<link type="text/css" rel="stylesheet" href="Css/knacss.css" />
<link type="text/css" rel="stylesheet" href="Css/RGAA3-en.css" />
</head>
<body class="mw1140p center">
<header role="banner">
<p id="skiplinks"><a href="#toc">Skip to Table of Contents</a> - <a href="#main">Skip to main content</a></p>
<nav id="nav" role="navigation" aria-label="Main navigation">
<ul>
<li><a href="./introduction-RGAA.html">Introduction to RGAA</a></li>
<li><a href="./rgaa-companion-guide.html">RGAA companion guide</a></li>
<li>Technical reference
<ul>
<li>Criteria - current page</li>
<li><a href="./glossary.html">Glossary</a></li>
<li><a href="./particular-cases.html">Particular cases</a></li>
<li><a href="./technical-notes.html">Technical notes</a></li>
<li><a href="./baseline.html">Baseline</a></li>
<li><a href="./references.html">References</a></li>
</ul>
</li>
</ul>
</nav>
<h1>
<abbr lang="fr" title="Référentiel Général d'Accessibilité pour les Administrations">RGAA</abbr> 3 2016 - Criteria - English translation
</h1>
<p>The RGAA is the French government's General Accessibility Reference for Administrations. It is meant to provide a way to check conformity to <abbr title="Web Content Accessibility Guidelines, version 2.0">WCAG 2.0</abbr>.</p>
<h2 tabindex="-1" id="toc">
Table of Contents
</h2>
<nav id="toc-list" role="navigation" aria-labelledby="toc">
<ul>
<li><a href="#howto">How to use the RGAA</a></li>
<li><a href="#images">Images</a></li>
<li><a href="#cadres">Frames</a></li>
<li><a href="#couleurs">Colors</a></li>
<li><a href="#multimedia">Multimedia</a></li>
<li><a href="#tableaux">Tables</a></li>
<li><a href="#liens">Links</a></li>
<li><a href="#script">Scripts</a></li>
<li><a href="#elements">Mandatory elements</a></li>
<li><a href="#structure">Information structure</a></li>
<li><a href="#presentation">Presentation of information</a></li>
<li><a href="#formulaire">Forms</a></li>
<li><a href="#navigation">Navigation</a></li>
<li><a href="#consultation">Consultation</a></li>
</ul>
</nav>
</header>
<main id="main" role="main">
<h2 id="howto">How to use the RGAA</h2>
<p>
The RGAA applies to any HTML content (HTML4, XHTML1, HTML5). For some tests, a reference baseline is used. This baseline takes into account a set of assistive technologies, browsers and operating systems, on which the accessibility of JavaScript-based interface components must be tested, among others. A detailed description is provided here: <a href="./baseline.html">Baseline</a>.
</p>
<h3>Important notice regarding HTML content prior to HTML5 specification</h3>
<p>When the HTML code of the page is <em>not</em> HTML5, the HTML5 elements (tags and attributes) required by a criterion or test, are not applicable. Every other criteria or tests remain applicable, including those related to ARIA attributes, states or properties. The following criteria and tests are not applicable:
</p>
<ul>
<li>Criterion 1.10;</li>
<li>Criterion 9.2;</li>
<li>Test 11.10.1 (condition 2, relative to the HTML5 attribute <code>required</code>).</li>
</ul>
<h3>Validation process</h3>
<p>
For each criterion, compliance is defined as follows:
</p>
<ul>
<li>Conforming (C): all applicable tests are passed</li>
<li>Non Conforming (NC): at least one applicable test is failed</li>
<li>Not Applicable (NA): there is no content targeted by the criterion.</li>
</ul>
<p>
The RGAA proposes two additional compliance statuses:
</p>
<ul>
<li>Derogated (D): some contents targeted by the criterion will meet compliance by derogation</li>
<li>Not tested (NT): the criterion has not been tested.</li>
</ul>
<p>You can get further information about the RGAA validation process in the <a href="./rgaa-companion-guide.html">RGAA companion guide</a>: How is RGAA conformance verified?</p>
<article id="images" class="theme">
<header>
<h2>Images</h2>
<p>WCAG principle: perceivable.</p>
<h3>General guidelines</h3>
<p>Give each <a href="./glossary.html#mImgInfo">image
conveying information</a> a relevant <a href="./glossary.html#mAltTexteImg">text
alternative</a> and a <a href="./glossary.html#mDescDetaillee">detailed description</a> if necessary. Replace images of text with <a href="./glossary.html#mTexteStyle">styled text</a> when possible.
</p>
</header>
<section class="criteria">
<h3 id="crit-1-1">
Criterion 1.1 [A] Does each image have a <a href="./glossary.html#mAltTexteImg">text alternative</a>?
</h3>
<ul class="test-list">
<li id="test-1-1-1">
<strong>Test 1.1.1:</strong> Does each image (<code>img</code> tag) have an <code>alt</code> attribute?
</li>
<li id="test-1-1-2">
<strong>Test 1.1.2:</strong> Does each <a href="./glossary.html#mZone">area</a> (<code>area</code> tag) of an
<a href="./glossary.html#mImgReactive">image map</a> have an <code>alt</code> attribute?
</li>
<li id="test-1-1-3">
<strong>Test 1.1.3:</strong> Does each form <a href="./glossary.html#mBtnForm">button</a>
(<code>input</code> tag with the <code>type="image"</code> attribute) have an <code>alt</code>
attribute?
</li>
<li id="test-1-1-4">
<strong>Test 1.1.4:</strong> Does each <a href="./glossary.html#mZoneCliquable">clickable area</a> of a server-side <a href="./glossary.html#mImgReactive">image map</a> have an equivalent link in the page?
</li>
</ul>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0</h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/H36.html">H36</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/H37.html">H37</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/H53.html">H53</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/H24.html">H24</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/F65.html">F65</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-2">
Criterion 1.2 [A] For each <a href="./glossary.html#mImgDeco">decorative
image</a> with a <a href="./glossary.html#mAltTexteImg">text
alternative</a>, is this alternative empty?
</h3>
<ul class="test-list">
<li id="test-1-2-1">
<strong>Test 1.2.1:</strong> Does each <a href="./glossary.html#mImgDeco">decorative
image</a> (<code>img</code> tag), without <a href="./glossary.html#mImageCaption">caption</a> and with an
<code>alt</code> attribute, meet the following conditions:
<ul>
<li>The <code>alt</code> attribute has an empty value (<code>alt=""</code>)</li>
<li>The decorative image does not have a <code>title</code> attribute</li>
<li>The <code>img</code> tag does not have any ARIA role, property or state meant to label the image (<code>aria-label</code>, <code>aria-describedby</code>, <code>aria-labelledby</code>, for example).</li>
</ul>
</li>
<li id="test-1-2-2">
<strong>Test 1.2.2:</strong> Does each <a href="./glossary.html#mZoneNonCliquable">non clickable area</a> (<code>area</code> tag with no
<code>href</code> attribute), not conveying any information, and with an <code>alt</code> attribute,
meet the following conditions:
<ul>
<li>The <code>alt</code> attribute has an empty value (<code>alt=""</code>)</li>
<li>The non clickable area does not have a <code>title</code> attribute</li>
<li>The <code>area</code> tag does not have any ARIA role, property or state meant to label the image (<code>aria-label</code>, <code>aria-describedby</code>, <code>aria-labelledby</code>, for example).</li>
</ul>
</li>
<li id="test-1-2-3">
<strong>Test 1.2.3:</strong> Does each <a href="./glossary.html#mImgDeco">decorative</a> <a href="./glossary.html#mImgObj">image object</a> (<code>object</code> tag with the attribute <code>type="image/…"</code>), without <a href="./glossary.html#mImageCaption">caption</a>, not conveying any information, meet these conditions:
<ul>
<li>The <code>object</code> tag has an <code>aria-hidden="true"</code> attribute</li>
<li>The alternative text between <code><object></code> and <code></object></code> is empty</li>
<li>The <code>object</code> tag or one of its descendants does not have any ARIA role, property or state meant to label the image (<code>aria-label</code>, <code>aria-describedby</code>, <code>aria-labelledby</code>, for example).</li>
</ul>
</li>
<li id="test-1-2-4">
<strong>Test 1.2.4:</strong> Does each <a href="./glossary.html#mImgDeco">decorative</a> vector image (<code>svg</code> tag), without <a href="./glossary.html#mImageCaption">caption</a>, meet the following conditions:
<ul>
<li>The <code>svg</code> tag as an <code>aria-hidden="true"</code> attribute</li>
<li>The <code>title</code> and <code>desc</code> tags are missing, or empty</li>
<li>The <code>svg</code> tag, or one of its descendants, has no <code>title</code> attribute</li>
<li>The <code>svg</code> tag, or one of its descendants, has no ARIA role, property or state, that aims at labelling the vector image (<code>aria-label</code>, <code>aria-describedby</code>, or
<code>aria-labelledby</code>, for example)</li>
</ul>
</li>
<li id="test-1-2-5">
<strong>Test 1.2.5:</strong> Does each <a href="./glossary.html#mImgDeco">decorative</a> bitmap image (<code>canvas</code> tag), without <a href="./glossary.html#mImageCaption">caption</a>, meet the follwing conditions?
<ul>
<li>The <code>canvas</code> tag as an <code>aria-hidden="true"</code> attribute</li>
<li>There is no text content between <code><canvas></code> and <code></canvas></code></li>
<li>The <code>canvas</code> tag, or one of its descendants, has no ARIA role, property or state, that aims at labelling the vector image (<code>aria-label</code>, <code>aria-describedby</code>, or
<code>aria-labelledby</code>, for example)</li>
</ul>
</li>
<li id="test-1-2-6">
<strong>Test 1.2.6:</strong> Does each <a href="./glossary.html#mImgDeco">decorative</a> embedded image (<code>embed</code> tag with the attribute <code>type="image/…"</code>), without <a href="./glossary.html#mImageCaption">caption</a>, meet these conditions:
<ul>
<li>The <code>embed</code> tag has an <code>aria-hidden="true"</code> attribute</li>
<li>The <code>embed</code> tag or one of its descendants does not have any ARIA role, property or state meant to label the image (<code>aria-label</code>, <code>aria-describedby</code>, <code>aria-labelledby</code>, for example).</li>
</ul>
</li>
</ul>
<p><strong>Technical note:</strong> read the <a href="./technical-notes.html#TNcrit1-2">technical note about the <code>presentation</code> role</a>.
</p>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0</h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a> - <a href="http://www.w3.org/TR/WCAG20/#ensure-compat-rsv">4.1.2</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/H67.html">H67</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G196.html">G196</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/C9.html">C9</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/F39.html">F39</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/F38.html">F38</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/ARIA4.html">ARIA4</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/ARIA10.html">ARIA10</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-3">
Criterion 1.3 [A] For each <a href="./glossary.html#mImgInfo">image conveying information</a> with a <a href="./glossary.html#mAltTexteImg">text alternative</a>, is this alternative relevant (except in
<a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
</h3>
<ul class="test-list">
<li id="test-1-3-1">
<strong>Test 1.3.1:</strong> Does each image (<code>img</code> tag)
<a href="./glossary.html#mImgInfo">conveying information</a>, with an <code>alt</code> attribute, meet
the following conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>):
<ul>
<li>The <code>alt</code> attribute has a relevant value</li>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>alt</code> attribute</li>
<li>If present, the value of the <code>aria-label</code> property
matches the value of the <code>alt</code> attribute</li>
<li>If present, the content of the chunk of text linked via the <code>aria-labelledby</code> property
matches the value of the <code>alt</code> attribute.</li>
</ul>
</li>
<li id="test-1-3-2">
<strong>Test 1.3.2:</strong> Does each <a href="./glossary.html#mZone">area</a> (<code>area</code> tag),
<a href="./glossary.html#mImgInfo">conveying information</a>, and with an <code>alt</code> attribute,
meet the following conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>):
<ul>
<li>The <code>alt</code> attribute has a relevant value</li>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>alt</code> attribute</li>
<li>If present, the value of the <code>aria-label</code> property
matches the value of the <code>alt</code> attribute</li>
<li>If present, the content of the chunk of text linked via the <code>aria-labelledby</code> property
matches the value of the <code>alt</code> attribute.</li>
</ul>
</li>
<li id="test-1-3-3">
<strong>Test 1.3.3:</strong> Does each <a href="./glossary.html#mBtnForm">button</a> associated
with an image (<code>input</code> tag with the attribute
<code>type="image"</code>), and with an <code>alt</code> attribute, meet the following conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular cases</a>)?
<ul>
<li>The <code>alt</code> attribute has a relevant value</li>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>alt</code> attribute</li>
<li>If present, the value of the <code>aria-label</code> property
matches the value of the <code>alt</code> attribute</li>
<li>If present, the content of the chunk of text linked via the <code>aria-labelledby</code> property
matches the value of the <code>alt</code> attribute.</li>
</ul>
</li>
<li id="test-1-3-4">
<strong>Test 1.3.4:</strong> Does each <a href="./glossary.html#image object">image object</a>
(<code>object</code> tag with the attribute <code>type="image/…"</code>),
<a href="./glossary.html#mImgInfo">conveying information</a>, meet one of the following
conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
<ul>
<li>The image object is immediately followed by an
<a href="./glossary.html#mLienAdj">adjacent link</a> giving access to a page or a chunk
of text containing a relevant alternative</li>
<li>The user can replace the image
object by a relevant text alternative, via a provided mechanism</li>
<li>The user can replace the image
object by an image with a relevant alternative, via a provided mechanism.</li>
</ul>
</li>
<li id="test-1-3-5">
<strong>Test 1.3.5:</strong> Does each <a href="./glossary.html#image object">image object</a>
(<code>object</code> tag with the attribute <code>type="image/…"</code>),
<a href="./glossary.html#mImgInfo">conveying information</a>, having an <code>aria-label</code> or an <code>aria-labelledby</code> property, or a <code>title</code> attribute, meet one of the following
conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
<ul>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>aria-label</code> property</li>
<li>If present, the value of the <code>title</code> attribute matches the content of the chunk of text linked via the <code>aria-labelledby</code> property.</li>
</ul>
</li>
<li id="test-1-3-6">
<strong>Test 1.3.6:</strong> Does each embedded image
(<code>embed</code> tag with the attribute <code>type="image/…"</code>),
<a href="./glossary.html#mImgInfo">conveying information</a>, meet one of the following
conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
<ul>
<li>The embedded image is immediately followed by an
<a href="./glossary.html#mLienAdj">adjacent link</a> giving access to a page or a chunk
of text containing a relevant alternative</li>
<li>The user can replace the embedded image
by a relevant text alternative, via a provided mechanism</li>
<li>The user can replace the embedded image
by an image with a relevant alternative, via a provided mechanism.</li>
</ul>
</li>
<li id="test-1-3-7">
<strong>Test 1.3.7:</strong> Does each embedded image
(<code>embed</code> tag with the attribute <code>type="image/…"</code>),
<a href="./glossary.html#mImgInfo">conveying information</a>, meet the following
conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
<ul>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>aria-label</code> property</li>
<li>If present, the value of the <code>title</code> attribute matches the content of the chunk of text linked via the <code>aria-labelledby</code> property.</li>
</ul>
</li>
<li id="test-1-3-8">
<strong>Test 1.3.8:</strong> Does each vector image (<code>svg</code>
tag) <a href="./glossary.html#mImgInfo">conveying information</a>, and with no <a href="./glossary.html#alternative-svg">alternative</a>, meet
one of the following conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>):
<ul>
<li>The <code>svg</code> tag has a <code>role="img"</code> </li>
<li>The <code>svg</code> tag has an <code>aria-label</code> property with a
relevant value, matching the <code>title</code> attribute of the
<code>svg</code> tag, if present</li>
<li>The <code>svg</code> tag has a <code>desc</code> tag with a relevant
content, equal to the <code>title</code> attribute of the <code>svg</code>
tag, if present.</li>
</ul>
</li>
<li id="test-1-3-9">
<strong>Test 1.3.9:</strong> For each vector image (<code>svg</code> tag), <a href="./glossary.html#mImgInfo">conveying information</a>, and with an alternative,
is this alternative <a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by
assistive technologies?
</li>
<li id="test-1-3-10">
<strong>Test 1.3.10:</strong> Does each bitmap image
(<code>canvas</code> tag)
<a href="./glossary.html#mImgInfo">conveying information</a> meet one of the following
conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
<ul>
<li>The alternative content (between <canvas> and </canvas>) is relevant</li>
<li>The bitmap image is immediately followed by an
<a href="./glossary.html#mLienAdj">adjacent link</a> giving access to a page or a chunk
of text containing a relevant alternative</li>
<li>The user can replace the bitmap image
by a relevant text alternative, via a provided mechanism</li>
<li>The user can replace the bitmap image
by an image with a relevant alternative, via a provided mechanism.</li>
</ul>
</li>
<li id="test-1-3-11">
<strong>Test 1.3.11:</strong> Does each bitmap image
(<code>canvas</code> tag),
<a href="./glossary.html#mImgInfo">conveying information</a>, meet the following
conditions (except in <a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
<ul>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>aria-label</code> property</li>
<li>If present, the value of the <code>title</code> attribute matches the content of the chunk of text linked via the <code>aria-labelledby</code> property.</li>
</ul>
</li>
<li id="test-1-3-12">
<strong>Test 1.3.12:</strong> For each bitmap image (<code>canvas</code> tag),
<a href="./glossary.html#mImgInfo">conveying information</a>, and with an alternative
(content between <code><canvas></code> and
<code></canvas></code>), is this alternative <a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive technologies?
</li>
<li id="test-1-3-13">
<strong>Test 1.3.13:</strong> For each <a href="./glossary.html#mImgInfo">image
conveying information</a> and with a <a href="./glossary.html#mAltTexteImg">text
alternative</a>, is the
text alternative <a href="./glossary.html#mAltCC">short and concise</a> (except in
<a title="Particular cases for criterion 1.3" href="./particular-cases.html#cpCrit1-3">particular
cases</a>)?
</li>
</ul>
<p><strong>Technical note:</strong> read the <a href="./technical-notes.html#TNcrit1-3a">technical note about the <code>title</code> attribute for images</a>.
</p>
<p><strong>Technical note:</strong> read the <a href="./technical-notes.html#TNcrit1-3b">technical note about the <code><title></code> tags in vector images</a>.
</p><aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a> - <a href="http://www.w3.org/TR/WCAG20/#ensure-compat-rsv">4.1.2</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G94.html">G94</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G95.html">G95</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/F30.html">F30</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/F71.html">F71</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G196.html">G196</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/ARIA4.html">ARIA4</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-4">Criterion 1.4 [A] For each image used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a>
or as a <a href="./glossary.html#mImgTest">test image</a>, with a <a href="./glossary.html#mAltTexteImg">text
alternative</a>, does this alternative describe the nature and the purpose of the image?</h3>
<ul class="test-list">
<li id="test-1-4-1">
<strong>Test 1.4.1:</strong> Does each image (<code>img</code> tag)
used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with an <code>alt</code> attribute, meet the following conditions?
<ul>
<li>
The content of the <code>alt</code> attribute describes the nature and purpose of the image</li>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>alt</code> attribute</li>
<li>If present, the value of the <code>aria-label</code> property
matches the value of the <code>alt</code> attribute</li>
<li>If present, the content of the chunk of text linked via the <code>aria-labelledby</code> property
matches the value of the <code>alt</code> attribute.</li>
</ul>
</li>
<li id="test-1-4-2">
<strong>Test 1.4.2:</strong> Does each <a href="./glossary.html#mZone">area</a> (<code>area</code> tag) of an <a href="./glossary.html#mImgReactive">image map</a> used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with an <code>alt</code> attribute, meet the following conditions?
<ul>
<li>The content of the <code>alt</code> attribute describes the nature and purpose of the image </li>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>alt</code> attribute</li>
<li>If present, the value of the <code>aria-label</code> property
matches the value of the <code>alt</code> attribute</li>
<li>If present, the content of the chunk of text linked via the <code>aria-labelledby</code> property
matches the value of the <code>alt</code> attribute.</li>
</ul>
</li>
<li id="test-1-4-3">
<strong>Test 1.4.3:</strong> For each <a href="./glossary.html#mBtnForm">button</a> associated
with an image (<code>input</code> tag with the attribute
<code>type="image"</code>), used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with an
<code>alt</code> attribute, meet the following conditions?
<ul>
<li>The content of the <code>alt</code> attribute describes the nature and purpose of the image </li>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>alt</code> attribute</li>
<li>If present, the value of the <code>aria-label</code> property
matches the value of the <code>alt</code> attribute</li>
<li>If present, the content of the chunk of text linked via the <code>aria-labelledby</code> property
matches the value of the <code>alt</code> attribute.</li>
</ul>
</li>
<li id="test-1-4-4">
<strong>Test 1.4.4:</strong> Does each <a href="./glossary.html#mImgObj">image object</a> (<code>object</code>
tag with the attribute <code>type="image/…"</code>), used
as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, meet one of the following conditions?
<ul>
<li>The image object is immediately followed by an
<a href="./glossary.html#mLienAdj">adjacent link</a> giving access to a page or a chunk
of text describing the nature and purpose of the image</li>
<li>The user can replace the image
object by a text describing the nature and purpose of the image, via a provided mechanism</li>
<li>The user can replace the image
object by an image with an alternative describing the nature and purpose of the image, via a provided mechanism.</li>
</ul>
</li>
<li id="test-1-4-5">
<strong>Test 1.4.5:</strong> Does each <a href="./glossary.html#mImgObj">image object</a> (<code>object</code>
tag with the attribute <code>type="image/…"</code>), used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with a text alternative provided
via the <code>aria-label</code> or the <code>aria-labelledby</code> property or the <code>title</code> attribute, meet the following conditions?
<ul>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>aria-label</code> property</li>
<li>If present, the value of the <code>title</code> attribute matches the content of the chunk of text linked via the <code>aria-labelledby</code> property.</li>
</ul>
</li>
<li id="test-1-4-6">
<strong>Test 1.4.6:</strong> Does each embedded image
(<code>embed</code> tag with the attribute <code>type="image/…"</code>), used
as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with a text
alternative, meet one of these conditions?
<ul>
<li>The embedded image is immediately followed by an
<a href="./glossary.html#mLienAdj">adjacent link</a> giving access to a page or a chunk
of text describing the nature and purpose of the image</li>
<li>The user can replace the embedded image by a text describing the nature and purpose of the image, via a provided mechanism</li>
<li>The user can replace the embedded image by an image with an alternative describing the nature and purpose of the image, via a provided mechanism.</li>
</ul>
</li>
<li id="test-1-4-7">
<strong>Test 1.4.7:</strong> Does each embedded image (<code>object</code>
tag with the attribute <code>type="image/…"</code>), used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with a text alternative provided
via the <code>aria-label</code> or the <code>aria-labelledby</code> property or the <code>title</code> attribute, meet the following conditions?
<ul>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>aria-label</code> property</li>
<li>If present, the value of the <code>title</code> attribute matches the content of the chunk of text linked via the <code>aria-labelledby</code> property.</li>
</ul>
</li>
<li id="test-1-4-8">
<strong>Test 1.4.8:</strong> Does each vector image (<code>svg</code>
tag), used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with no <a href="./glossary.html#alternative-svg">text alternative</a>, meet the following conditions?
<ul>
<li>The <code>svg</code> tag has a <code>role="img"</code></li>
<li>The <code>svg</code> tag has an
<code>aria-label</code> property that describes the nature and purpose of the
image, and matches the value of the <code>title</code>
attribute, if present
</li>
<li>The <code>svg</code> tag has a <code>desc</code>
tag that describes the nature and purpose of the
image, and matches the value of the <code>aria-label</code>
property and of the <code>title</code>
attribute of the <code>svg</code> tag, if present
</li>
<li>An <a href="./glossary.html#mLienAdj">adjacent link</a> gives access to an alternative that describes the nature and purpose of the
image, and matches the value of the <code>aria-label</code>
property and of the <code>title</code>
attribute of the <code>svg</code> tag, if present
</li>
</ul>
</li>
<li id="test-1-4-9">
<strong>Test 1.4.9:</strong> For each vector image (<code>svg</code> tag), used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with a <a href="./glossary.html#alternative-svg">text alternative</a>, is this alternative <a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive technologies?
</li>
<li id="test-1-4-10">
<strong>Test 1.4.10:</strong> Does each bitmap image (<code>canvas</code> tag), used
as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, meet one of the following conditions?
<ul>
<li>The alternative content (between <canvas> and </canvas>) describes the nature and purpose of the image</li>
<li>The bitmap image is immediately followed by an
<a href="./glossary.html#mLienAdj">adjacent link</a> giving access to a page or a chunk
of text containing an alternative describing the nature and purpose of the image</li>
<li>The user can replace the bitmap image
by an alternative describing the nature and purpose of the image, via a provided mechanism</li>
<li>The user can replace the bitmap image
by an image with an alternative describing the nature and purpose of the image, via a provided mechanism.</li>
</ul>
</li>
<li id="test-1-4-11">
<strong>Test 1.4.11:</strong> Does each bitmap image (<code>canvas</code>
tag), used as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with a text alternative provided
via the <code>aria-label</code> or the <code>aria-labelledby</code> property or the <code>title</code> attribute, meet the following conditions?
<ul>
<li>If present, the value of the <code>title</code> attribute
matches the value of the <code>aria-label</code> property</li>
<li>If present, the value of the <code>title</code> attribute matches the content of the chunk of text linked via the <code>aria-labelledby</code> property.</li>
</ul>
</li>
<li id="test-1-4-12"><strong>Test 1.4.12:</strong> For each bitmap image (<code>canvas</code> tag), used
as a <a href="./glossary.html#mcaptcha">CAPTCHA</a> or <a href="./glossary.html#mImgTest">test image</a>, with a text
alternative, is this alternative
<a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive technologies?
</li>
</ul>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G143.html">G143</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G100.html">G100</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-5">
Criterion 1.5 [A] For each image used as <a href="./glossary.html#mcaptcha">CAPTCHA</a>,
is a solution for alternative access to the content or to
the purpose of the CAPTCHA available?
</h3>
<ul class="test-list">
<li id="test-1-5-1">
<strong>Test 1.5.1:</strong> Does each image (<code>img</code>,
area, <code>object</code>, <code>embed</code>, <code>svg</code>, <code>canvas</code> tags) used as <a href="./glossary.html#mcaptcha">CAPTCHA</a> meet one of the following conditions?
<ul>
<li>Another non graphic form of CAPTCHA
is available, at least</li>
<li>Another solution to access the functionality
protected by the CAPTCHA
is available</li>
</ul>
</li>
<li id="test-1-5-2"> <strong>Test 1.5.2:</strong> Does each <a href="./glossary.html#mBtnForm">button</a>
associated with an image (<code>input</code> tag with the attribute
<code>type="image"</code>) used as <a href="./glossary.html#mcaptcha">CAPTCHA</a>
meet one of the following conditions?
<ul>
<li>Another non graphic form of CAPTCHA
is available, at least
</li>
<li>Another solution to access the functionality
protected by the CAPTCHA
is available</li>
</ul>
</li>
</ul>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G144.html">G144</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-6">Criterion 1.6 [A] Does each <a href="./glossary.html#mImgInfo">image
conveying information</a> have a <a href="./glossary.html#mDescDetaillee">detailed
description</a> if necessary?</h3>
<ul class="test-list">
<li id="test-1-6-1"> <strong>Test 1.6.1:</strong> Does each <a href="./glossary.html#mImgInfo">image
conveying information</a> (<code>img</code> tag) needing a <a href="./glossary.html#mDescDetaillee">detailed description</a>, meet one of the following conditions?
<ul>
<li> A <code>longdesc</code> attribute providing the <a href="./glossary.html#mUrl">URL</a>
of a page that contains the detailed description is available</li>
<li> An <code>alt</code> attribute that contains the reference to a
detailed description, adjacent to the image, is available</li>
<li> There is an <a href="./glossary.html#mLienAdj">adjacent
link</a> (<a href="./glossary.html#mUrl">URL</a> or <a href="./glossary.html#mAncreNom">anchor</a>) giving access to the detailed description.</li>
</ul>
</li>
<li id="test-1-6-2"> <strong>Test 1.6.2:</strong> Does each <a href="./glossary.html#mImgObj">image object</a>
(<code>object</code> tag with an attribute <code>type="image/…"</code>)
<a href="./glossary.html#mImgInfo">conveying information</a> needing a <a href="./glossary.html#mDescDetaillee">detailed
description</a>, meet one of the following conditions?
<ul>
<li>There is an <a href="./glossary.html#mLienAdj">adjacent
link</a> (<a href="./glossary.html#mUrl">URL</a> or <a href="./glossary.html#mAncreNom">anchor</a>) giving access to the detailed description</li>
<li>There is a clearly identifiable detailed description adjacent to the image object.
</li>
</ul>
</li>
<li id="test-1-6-3"> <strong>Test 1.6.3:</strong> Does each embedded image
(<code>embed</code> tag with an attribute <code>type="image/…"</code>) <a href="./glossary.html#mImgInfo">conveying information</a> needing a <a href="./glossary.html#mDescDetaillee">detailed description</a>, meet one of the following conditions?
<ul>
<li>There is an <a href="./glossary.html#mLienAdj">adjacent
link</a> (<a href="./glossary.html#mUrl">URL</a> or <a href="./glossary.html#mAncreNom">anchor</a>) giving access to the detailed description</li>
<li>There is a clearly identifiable detailed description adjacent to the embedded image.
</li>
</ul>
</li>
<li id="test-1-6-4"><strong>Test 1.6.4:</strong>
Does each image <a href="./glossary.html#mBtnForm">button</a> (<code>input</code> tag with the attribute
<code>type="image"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>, needing a <a href="./glossary.html#mDescDetaillee">detailed
description</a>, meet one of the following conditions?
<ul>
<li>
An <code>alt</code> attribute containing the reference to a detailed description adjacent to the image is available</li>
<li> There is an <a href="./glossary.html#mLienAdj">adjacent
link</a> (<a href="./glossary.html#mUrl">URL</a>
or <a href="./glossary.html#mAncreNom">anchor</a>) giving access to the detailed description.</li>
<li>
An <code>aria-describedby</code> property references a chunk of text serving as a detailed description.</li>
</ul>
</li>
<li id="test-1-6-5"><strong>Test 1.6.5:</strong>
Does each image <a href="./glossary.html#mBtnForm">button</a> (<code>input</code> tag with the attribute
<code>type="image"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>, that references a <a href="./glossary.html#mDescDetaillee">detailed description</a> via an <code>aria-describedby</code> property, meet the following conditions?
<ul>
<li>The chunk of text is identified via an <code>id</code> attribute</li>
<li>The value of the <code>id</code> attribute is unique in the page</li>
<li>The value of the <code>aria-describedby</code> property matches the value of the <code>id</code> attribute.</li>
</ul>
</li>
<li id="test-1-6-6"><strong>Test 1.6.6:</strong> Does each vector image
(<code>svg</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>, needing a <a href="./glossary.html#mDescDetaillee">detailed description</a>, meet one of the following conditions?
<ul>
<li>There is an <code>aria-label</code> property referencing a
detailed description adjacent to the vector image</li>
<li>There is a <code>desc</code> tag containing a reference to a
detailed description adjacent to the vector image</li>
<li>There is a <code>desc</code> tag containing a detailed
description</li>
<li>There is an <a href="./glossary.html#mLienAdj">adjacent
link</a> (<a href="./glossary.html#mUrl">URL</a> or <a href="./glossary.html#mAncreNom">anchor</a>) giving access to the detailed description.
</li>
</ul>
</li>
<li id="test-1-6-7"><strong>Test 1.6.7:</strong> For each vector image (<code>svg</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>, with a
reference to a detailed description provided via an
<code>aria-label</code> property or a <code>desc</code> tag, is this reference
<a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive technologies?</li>
<li id="test-1-6-8"><strong>Test 1.6.8:</strong> Does each bitmap image
(<code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a> needing a <a href="./glossary.html#mDescDetaillee">detailed description</a>, meet one of the following conditions?
<ul>
<li>There is a chunk of text between <code><canvas></code>
and <code></canvas></code> referencing a detailed description adjacent to the bitmap image</li>
<li>There is a text content between <code><canvas></code> and
<code></canvas></code> serving as a detailed description</li>
<li>There is an <a href="./glossary.html#mLienAdj">adjacent
link</a> (<a href="./glossary.html#mUrl">URL</a> or <a href="./glossary.html#mAncreNom">anchor</a>) giving access to the detailed description.</li>
</ul>
</li>
<li id="test-1-6-9"><strong>Test 1.6.9:</strong> For each bitmap image (<code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>,
with a reference to an adjacent <a href="./glossary.html#mDescDetaillee">detailed description</a>, is this reference <a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive technologies?
</li>
<li id="test-1-6-10"><strong>Test 1.6.10:</strong> For each image (<code>img</code>, <code>area</code>, <code>object</code>, <code>embed</code>, <code>svg</code>, or <code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>,
with a reference to a <a href="./glossary.html#mDescDetaillee">detailed description</a>, and having an <code>aria-describedby</code> property, does the <code>aria-describedby</code> property reference the detailed description?
</li>
</ul>
<p><strong>Technical note:</strong> read the <a href="./technical-notes.html#TNcrit1-6">technical note about vector images and the use of the <code>aria-describedby</code> property</a>. </p>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G92.html">G92</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G74.html">G74</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G73.html">G73</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/H45.html">H45</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/ARIA6.html">ARIA6</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-7">Criterion 1.7 [A] For each <a href="./glossary.html#mImgInfo">image
conveying information</a> with a <a href="./glossary.html#mDescDetaillee">detailed
description</a>, is this description relevant?</h3>
<ul class="test-list">
<li id="test-1-7-1"><strong>Test 1.7.1:</strong> Does each <a href="./glossary.html#mImgInfo">image
conveying information</a> (<code>img</code> tag, or <code>input</code> tag with the
attribute <code>type="image"</code>) with a <a href="./glossary.html#mDescDetaillee">detailed
description</a> meet one of the following conditions?
<ul>
<li> The detailed description referenced via the <a href="./glossary.html#mUrl">URL</a> in the
<code>longdesc</code> attribute is relevant</li>
<li> The detailed description available in the page and
identified in the <code>alt</code> attribute is relevant</li>
<li> The detailed description available via an <a href="./glossary.html#mLienAdj">adjacent
link</a> is relevant.</li>
</ul>
</li>
<li id="test-1-7-2"><strong>Test 1.7.2:</strong>
Does each image <a href="./glossary.html#mBtnForm">button</a> (<code>input</code> tag with the attribute
<code>type="image"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>, with a <a href="./glossary.html#mDescDetaillee">detailed
description</a>, meet one of the following conditions?
<ul>
<li>The detailed description available in the page and
identified in the <code>alt</code> attribute is relevant</li>
<li>The detailed description available via an <a href="./glossary.html#mLienAdj">adjacent
link</a> is relevant.</li>
<li> The detailed description available via an <code>aria-describedby</code> property is relevant.</li>
</ul>
</li>
<li id="test-1-7-3"><strong>Test 1.7.3:</strong> Does each <a href="./glossary.html#mImgObj">image object</a>
(<code>object</code> tag with the attribute <code>type="image/…"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>, with a
<a href="./glossary.html#mDescDetaillee">detailed description</a>, meet one of the following conditions?
<ul>
<li> The detailed description adjacent to the object image is
relevant</li>
<li>The detailed description available via an <a href="./glossary.html#mLienAdj">adjacent
link</a> is relevant.</li>
</ul>
</li>
<li id="test-1-7-4"><strong>Test 1.7.4:</strong> Does each embedded image
(<code>embed</code> tag with the attribute <code>type="image/…"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>, with a
<a href="./glossary.html#mDescDetaillee">detailed description</a>, meet one of the following
conditions?
<ul>
<li>The detailed description adjacent to the embedded
image is relevant</li>
<li>The detailed description available via an <a href="./glossary.html#mLienAdj">adjacent
link</a> is relevant.</li>
</ul>
</li>
<li id="test-1-7-5"><strong>Test 1.7.5:</strong> Does each vector image
(<code>svg</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>, with a <a href="./glossary.html#mDescDetaillee">detailed description</a> meet one of the
following conditions?
<ul>
<li>The detailed description adjacent to the vector
image is relevant</li>
<li>The detailed description contained in the <code>desc</code> tag is relevant</li>
<li>The detailed description available via an <a href="./glossary.html#mLienAdj">adjacent
link</a> is relevant.</li>
</ul>
</li>
<li id="test-1-7-6"><strong>Test 1.7.6:</strong> For each vector image (<code>svg</code>
tag) <a href="./glossary.html#mImgInfo">conveying information</a>, with a <a href="./glossary.html#mDescDetaillee">detailed description</a> implemented with the <code>desc</code> tag, is this detailed
description <a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive
technologies?</li>
<li id="test-1-7-7"><strong>Test 1.7.7:</strong> Does each bitmap image
(<code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>, with a <a href="./glossary.html#mDescDetaillee">detailed description</a> meet one of the
following conditions?
<ul>
<li>The detailed description adjacent to the bitmap
image is relevant</li>
<li>The detailed description available between
<code><canvas></code> and <code></canvas></code> is relevant</li>
<li>The detailed description available via an <a href="./glossary.html#mLienAdj">adjacent
link</a> is relevant.</li>
</ul>
</li>
<li id="test-1-7-8"><strong>Test 1.7.8:</strong> For each bitmap image
(<code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a>, with a <a href="./glossary.html#mDescDetaillee">detailed description</a> between
<code><canvas></code> and <code></canvas></code>, is this detailed
description <a href="./glossary.html#mCorrectlyRendered">correctly rendered</a> by assistive
technologies?</li>
</ul>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G92.html">G92</a> - <a href="http://www.w3.org/TR/WCAG-TECHS/F67.html">F67</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-8">Criterion 1.8 [AA] When an <a href="./glossary.html#mMecaRempl">alternate
mechanism</a> is missing, each <a href="./glossary.html#mImgText">image
of text</a> <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with
<a href="./glossary.html#mTexteStyle">styled
text</a>, if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.8"
href="./particular-cases.html#cpCrit1-8">particular cases</a>)?</h3>
<ul class="test-list">
<li id="test-1-8-1"> <strong>Test 1.8.1:</strong> When an <a href="./glossary.html#mMecaRempl">alternate
mechanism</a> is missing, each <a href="./glossary.html#mImgText">image
of text</a> (<code>img</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a> must be
replaced with <a href="./glossary.html#mTexteStyle">styled
text</a>, if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.8" href="./particular-cases.html#cpCrit1-8">particular cases</a>)?</li>
<li id="test-1-8-2"> <strong>Test 1.8.2:</strong> When
an <a href="./glossary.html#mMecaRempl">alternate
mechanism</a> is missing, each button bearing an image of text
(<code>input</code> tag with the attribute <code>type="image"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>, must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a>, if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.8" href="./particular-cases.html#cpCrit1-8">particular cases</a>)?</li>
<li id="test-1-8-3"> <strong>Test 1.8.3:</strong> When an <a href="./glossary.html#mMecaRempl">alternate
mechanism</a> is missing, each <a href="./glossary.html#mImgTextObj">object
image of text</a> (<code>object</code> tag with the attribute
<code>type="image/…"</code>) <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced
with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.8" href="./particular-cases.html#cpCrit1-8">particular cases</a>)?</li>
<li id="test-1-8-4"> <strong>Test 1.8.4:</strong> When an <a href="./glossary.html#mMecaRempl">alternate
mechanism</a> is missing, each embedded image of text
(<code>embed</code> tag with the attribute <code>type="image/…"</code>)
<a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.8" href="./particular-cases.html#cpCrit1-8">particular cases</a>)?</li>
<li id="test-1-8-5"><strong>Test 1.8.5:</strong> When an <a href="./glossary.html#mMecaRempl">alternate
mechanism</a> is missing, each bitmap image of text
(<code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with
<a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.8" href="./particular-cases.html#cpCrit1-8">particular cases</a>)?</li>
</ul>
<aside class="correspondance">
<p><strong>Technical note:</strong> read the <a href="./technical-notes.html#TNcrit1-8">technical note about vector images of type text</a>.
</p>
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#visual-audio-contrast-text-presentation">1.4.5</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G136.html">G136</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/G140.html">G140</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/C22.html">C22</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/C30.html">C30</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-9">Criterion 1.9 [AAA] Each <a href="./glossary.html#mImgText">image
of text</a> <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with
<a href="./glossary.html#mTexteStyle">styled
text</a>. Has this rule been followed (except in <a title="Particular cases for criterion 1.9"
href="./particular-cases.html#cpCrit1-9">particular cases</a>)?</h3>
<ul class="test-list">
<li id="test-1-9-1"> <strong>Test 1.9.1:</strong> Each <a href="./glossary.html#mImgText">image
of text</a> (<code>img</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.9" href="./particular-cases.html#cpCrit1-9">particular cases</a>)?</li>
<li id="test-1-9-2"> <strong>Test 1.9.2:</strong> Each
<a href="./glossary.html#mBtnForm">button</a> bearing an <a href="./glossary.html#mImgText">image
of text</a> (<code>input</code> tag with the attribute
<code>type="image"</code>) <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.9" href="./particular-cases.html#cpCrit1-9">particular cases</a>)?</li>
<li id="test-1-9-3"> <strong>Test 1.9.3:</strong> Each <a href="./glossary.html#mImgTextObj">text
image object</a> (<code>object</code> tag with the attribute
<code>type="image/…"</code>) <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.9" href="./particular-cases.html#cpCrit1-9">particular cases</a>)?</li>
<li id="test-1-9-4"> <strong>Test 1.9.4:</strong> Each embedded image of
text (<code>embed</code> tag with the attribute <code>type="image/…"</code>) <a href="./glossary.html#mImgInfo">conveying information</a>
must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.9" href="./particular-cases.html#cpCrit1-9">particular cases</a>)?</li>
<li id="test-1-9-5"> <strong>Test 1.9.5:</strong> Each bitmap image of text
(<code>canvas</code> tag) <a href="./glossary.html#mImgInfo">conveying information</a> must be replaced with <a href="./glossary.html#mTexteStyle">styled
text</a> if possible. Has this rule been followed (except in <a title="Particular cases for criterion 1.9" href="./particular-cases.html#cpCrit1-9">particular cases</a>)?</li>
</ul>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="https://www.w3.org/TR/WCAG20/#visual-audio-contrast-text-images">1.4.9</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G140.html">G140</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/C22.html">C22</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/C30.html">C30</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-1-10">Criterion 1.10
[A] Is each <a href="./glossary.html#mImageCaption">image caption</a> correctly associated with the
corresponding image, if necessary?</h3>
<ul class="test-list">
<li id="test-1-10-1"><strong>Test 1.10.1:</strong> Does each image with a
<a href="./glossary.html#mImageCaption">caption</a> (<code>img</code> tag or <code>input</code> tag with the attribute
<code>type="image"</code>, associated with an adjacent caption) meet,
if necessary, the following conditions?
<ul>
<li> The image (<code>img</code> tag) and its caption are contained
in a <code>figure</code> tag</li>
<li>The <code>figure</code> tag has an attribute <code>role="group"</code></li>
<li>The content of the <code>alt</code> attribute contains a
reference to the adjacent caption.</li>
</ul>
</li>
<li id="test-1-10-2"><strong>Test 1.10.2:</strong> Does each <a href="./glossary.html#mImgObj">image object</a> with a <a href="./glossary.html#mImageCaption">caption</a> (<code>object</code> tag with the attribute <code>type="image/…"</code>,
associated with an adjacent caption) meet, if necessary,
the following conditions?
<ul>
<li> The image (<code>object</code> tag) and its caption are
contained in a <code>figure</code> tag</li>
<li>The <code>figure</code> tag has an attribute <code>role="group".</code></li>
</ul>
</li>
<li id="test-1-10-3"><strong>Test 1.10.3:</strong> Does each embedded image
with a <a href="./glossary.html#mImageCaption">caption</a> (<code>embed</code> tag with the attribute
<code>type="image/…"</code>, associated with an adjacent caption)
meet, if necessary, the following conditions?
<ul>
<li> The embedded image (<code>embed</code> tag) and its caption
are contained in a <code>figure</code> tag</li>
<li>The <code>figure</code> tag has an attribute <code>role="group"</code></li>
<li>The content of the text alternative contains a
reference to the adjacent caption.</li>
</ul>
</li>
<li id="test-1-10-4"><strong>Test 1.10.4:</strong> Does each vector image
with a <a href="./glossary.html#mImageCaption">caption</a> (<code>svg</code> tag associated with an adjacent
caption) meet, if necessary, the following conditions?
<ul>
<li> The vector image (<code>svg</code> tag) and its caption are
contained in a <code>figure</code> tag</li>
<li>The <code>figure</code> tag has an attribute <code>role="group"</code></li>
<li>The content of the <code>aria-label</code> property or the <code>desc</code>
tag of the vector image contains a reference to the
adjacent caption</li>
</ul>
</li>
<li id="test-1-10-5"><strong>Test 1.10.5:</strong> Does each bitmap image
with a <a href="./glossary.html#mImageCaption">caption</a> (<code>canvas</code> tag associated with an adjacent
caption) meet, if necessary, the following conditions?
<ul>
<li> The bitmap image (<code>canvas</code> tag) and its caption are
contained in a <code>figure</code> tag</li>
<li>The <code>figure</code> tag has an attribute <code>role="group"</code></li>
<li>The content between <code><canvas></code> and
<code></canvas></code> contains a reference to the adjacent
caption</li>
</ul>
</li>
</ul>
<p><strong>Technical note:</strong> read the <a href="./technical-notes.html#TNcrit1-10">technical note about captioned images</a>.
</p>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#text-equiv-all">1.1.1</a>
- <a href="http://www.w3.org/TR/WCAG20/#ensure-compat-rsv">4.1.2</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/G140.html">G140</a>
- <a href="http://www.w3.org/TR/WCAG-TECHS/ARIA4.html">ARIA4</a>- <a href="http://www.w3.org/TR/WCAG-TECHS/ARIA6.html">ARIA6</a></p>
</aside>
</section>
</article>
<!-- ==================================================================== -->
<!-- Theme 02 -->
<!-- ==================================================================== -->
<article id="cadres" class="theme">
<header>
<h2>Frames </h2>
<p>WCAG principle: robust.</p>
<h3>General guidelines</h3>
<p>
Provide each <a href="./glossary.html#mCadreEnLigne">inline frame</a> with a relevant title.
</p>
</header>
<section class="criteria">
<h3 id="crit-2-1">Criterion 2.1 [A] Does each <a href="./glossary.html#mCadreEnLigne">inline frame</a>
have a <a href="./glossary.html#mTitreCadre">frame
title</a>?</h3>
<ul class="test-list">
<li id="test-2-1-1"><strong>Test 2.1.1:</strong> Does each <a href="./glossary.html#mCadreEnLigne">inline frame</a>
(<code>iframe</code> tag) have a <code>title</code> attribute?</li>
</ul>
<aside class="correspondance">
<h4>Mapping with WCAG 2.0 </h4>
<p>WCAG 2.0 success criterion:
<a href="http://www.w3.org/TR/WCAG20/#ensure-compat-rsv">4.1.2</a></p>
<p>WCAG 2.0 sufficient technique(s) and/or
failure(s): <a href="http://www.w3.org/TR/WCAG-TECHS/H64.html">H64</a></p>
</aside>
</section>
<section class="criteria">
<h3 id="crit-2-2">Criterion 2.2 [A] For each <a href="./glossary.html#mCadreEnLigne">inline frame</a>
with a <a href="./glossary.html#mTitreCadre">frame title</a>, is this frame title relevant?</h3>
<ul class="test-list">