-
Notifications
You must be signed in to change notification settings - Fork 84
/
index-temp.html
1237 lines (1171 loc) · 103 KB
/
index-temp.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>HTML5 accessibility - work in progress June 2015</title>
<script>
function noimage()
{
var imagesOn = (function(){var i=new
Image();i.src='data:image/gif,GIF89a%01%00%01%00%80%00%00%00%00%00%FF%FF%FF!%F9%04%01%00%00%00%00%2C%00%00%00%00%01%00%01%00%00%02%01D%00%3B';return!!i.width})();
//alert(imagesOn);
if
((document.images[0].readyState='uninitialized'&&document.images[0].naturalHeight=='undefined'&&window.opera==null&&checkHC()!=true)||(document.images[0].naturalHeight>=1&&window.opera==null&&checkHC()!=true)||(imagesOn==true&&window.opera!=null))
{
var objHead = document.getElementsByTagName('head');
var objCSS = objHead[0].appendChild(document.createElement('link'));
objCSS.rel = 'stylesheet';
objCSS.href = 'alt.css';
objCSS.type = 'text/css';
}
}
function checkHC(){
var e,c;
//Create a test div
e=document.createElement("div");
//Set its color style to something unusual
e.style.color="rgb(31,41,59)";
//Attach to body so we can inspect it
document.body.appendChild(e);
//Use standard means if available, otherwise use the IE methods
c=document.defaultView?document.defaultView.getComputedStyle(e,null).color:e.currentStyle.color;
//Delete the test DIV
document.body.removeChild(e);
//get rid of extra spaces in result
c=c.replace(/ /g,"");
//Check if we got back what we set
//If not we are in high contrast mode
if (c!="rgb(31,41,59)"){
return true;
}
}
</script>
<style>
body {
font-family: arial, Verdana, helvetica, sans-serif;
color: #333;
background: #D6D6AB;
padding: 0;
font-size: 90%
}
caption {
text-align: left;
font-weight: bold;
font-size: large
}
h1, h2 {
font-family: Verdana, arial, helvetica, sans-serif;
font-size: larger;
}
header {
border: 1px dashed #ffd700;
padding:1em;
margin: 0;
}
.navlist li {
display: inline;
list-style-type: none;
padding-right: 20px;
}
table {
border-collapse: collapse;
border: 1px solid #630;
font: normal 80% arial, Verdana, helvetica, sans-serif;
}
th, td {
text-align: left;
vertical-align: top;
padding: .3em;
border: 1px solid #630;
}
th { font-size: 150%; }
td { font-size: 130%; }
th small { font-size: 70%; }
td p { margin: 0; }
thead th, thead td {
font-weight: bold;
text-align: center;
}
td span {
display: inline-block;
padding: 2px;
}
span:focus {
background: #f5f5f5;
border: 2px solid #a0522d;
}
/*td:focus {background:#f5f5f5;border: 2px solid #a0522d;}*/
caption { text-align: left }
.support { background: #90ee90; }
.partial { background: #eee8aa;}
td.nosupport{ background: #ffb6c1;}
td p.note{
border: 1px dashed red;
padding: 5px;
margin-top:5px;
background:#FFF;
}
td ul { padding-left: 12px; }
/* img {border: 1px solid #630;}*/
.test {
border: 1px solid #666;
padding: 4px;
margin-top: 15px;
background: #FFFFCC;
}
h3 { font-size: 150%; }
p, li { font-family: arial; }
h2 { color: #008000; }
#float { float: right; }
.float { float: left; }
.nvda {
border:1px #ff7f50 solid;
font-size: 80%;
padding: 5px;
}
#banner {
float:left;
font-size: 250%;
}
#subheader { clear: both; }
span.cap { display: inline-block; }
ul.sumry li {
display: inline;
list-style-type: none;
padding-right: 1em;
font-weight: bold;
color:#C00;
}
span.hidden {
position: relative;
left: 0;
top: auto;
width: inherit;
height: inherit;
overflow: inherit;
}
header {
border: 1px dashed #ff8c00;
padding: 1em;
}
#wrapper {
width: 90%;
background-color:#FFF;
padding: 1em ;
}
.style1 {
color: #006600;
font-size: large;
}
.style2 { color: #CC3300; }
.style3 { font-size: large; }
.style4 {
font-size: large;
color: #006600;
}
.style5 { color: #FF00FF; }
</style>
</head>
<body onload="noimage();checkHC();">
<div id="wrapper">
<header role="banner"> <div id="float">
<p class="nvda">Use and <a href="http://www.nvaccess.org/wiki/Donate">support</a> <a href="http://www.nvda-project.org/"><abbr title="NonVisual Desktop Access ">NVDA</abbr></a> the open source screen reader for Windows.</p>
<p class="nvda"><strong>HTML5accessibility.com <a href="http://www.paciellogroup.com">developed by TPG</a> <em>your accessibility partner</em>. <br>
<a href="http://www.paciellogroup.com/contact/">Contact us</a> for solutions to your accessibility issues.</strong></p>
</div><div><img src="images/HTML5_Logo.png" alt="HTML5" width="128" height="128" border="0"> <img src="images/logo_reasonably_small.png" alt="Accessibility" width="128" height="128"></div>
<h1>A work in progress: February 2016</h1>
<p><strong>Editors Draft February 03, 2016</strong></p>
<p><strong>WARNING!</strong> the data below is under continued revision</p>
<ul class=navlist>
<li><strong>elsewhere:</strong></li>
<li><a href="http://thepaciellogroup.github.io/AT-browser-tests/">Aural UI of HTML</a></li>
<li><a href="http://w3c.github.io/aria-in-html/">Notes on Using ARIA in HTML</a>
<li><a href="http://rawgit.com/w3c/aria/master/html-aam/html-aam.html">HTML Accessibility API Mappings 1.0</a>
<li><a href="https://github.com/stevefaulkner/HTML5accessibility">Fork HTML5Accessibility</a> on Github</li>
</ul>
</header>
<div role="main">
<div class=windows>
<h3><a href="#wbdetails">Major Browsers</a> Summary - Chrome and Firefox Rock! </h3>
<p><strong>HTML5 Accessibility Support Score</strong></p>
<ul class="sumry">
<li><img src="images/safari_64x64.png" alt="Safari" width="64" height="64" border="0" id="safari-img"> <meter min="0" max="100" value="62"></meter>
<span class="style1">62/100</span>
</li>
<li><img src="images/chrome.png" alt="Chrome" width="64" height="64" border="0" id="chrome-img"> + <img src="images/opera.png" alt="Opera" width="24" height="24" border="0" id="opera-img"><meter min="0" max="100" value="93"></meter>
<span class="style1">93/100</span></li>
<li><img src="images/firefox.png" alt="Firefox" width="64" height="64" border="0" id="FF-img">
<meter min="0" max="100" value="89"></meter>
<span class="style1">89/100</span></li>
<li><img src="images/ie.png" alt="Internet Explorer" width="64" height="64" border="0" id="ie-img"><meter min="0" max="100" value="35"></meter>
<span class="style3" id="ie">35</span><span class="style3">/100</span></li>
<li><img src="images/edge.png" alt="Edge"><meter min="0" max="100" value="40"></meter> <span class="style3" id="ie">40/100</span></li>
</ul>
</div>
<!-- <div class=mac><h3><img src="images/mac-logo.png" width="64" height="64"> Mac Summary</h3>
<ul class="sumry">
<li><img src="images/chrome.png" alt="Chrome" width="62" height="61" border="0" id="chrome-img"><meter min="0" max="370" value="145" aria-labelledby="chrome-img chrome"><span id="chrome">145/370</span></meter></li>
<li><img src="images/firefox.png" alt="Firefox" width="62" height="61" border="0" id="FF-img"><meter min="0" max="100" value="40" aria-labelledby="FF-img FF">Getting better</meter></li>
<li><img src="images/opera.png" alt="Opera" width="62" height="61" border="0" id="opera-img"><meter min="0" max="100" value="5" aria-labelledby="opera-img op"><span id="op">Poor -</span></meter></li>
<li><img src="images/safari.png" alt="Safari/WebKit" width="62" height="61" border="0" id="wk-img"><meter min="0" max="100" value="15" aria-labelledby="wk-img wk"><span id="wk">Poor</span></meter></li>
</ul>
</div>-->
<!-- <h3><img src="images/mac-logo.png" alt="" width="64" height="64"> <a href="#mbdetails">Mac Browsers</a> Summary - Safari has the best HTML5 Accessibility Support Score</h3>
<p><strong>HTML5 Accessibility Support Score</strong></p>
<ul class="sumry">
<li><img src="images/chrome.png" alt="Chrome" width="62" height="61" border="0" id="chrome-img2">
<meter min="0" max="100" value=""></meter>
<span class="style3">xx/100</span></li>
<li><img src="images/firefox.png" alt="Firefox" width="62" height="61" border="0" id="FF-img2">
<meter min="0" max="100" value=""></meter>
<li><span class="style3">xx/100</span></li>
<li><img src="images/opera.png" alt="Opera" width="62" height="61" border="0" id="opera-img2">
<meter min="0" max="100" value=""></meter>
<span class="style3">xx/100</span></li>
<li><img src="images/safari.png" alt="Safari/WebKit" width="62" height="61" border="0" id="wk-img2">
<meter min="0" max="100" value=""></meter>
<span class="style1">xx/100</span></li>
</ul>-->
<h3>Overview</h3>
<p>This site is a resource to provide information about which <strong>new <a href="http://dev.w3.org/html5/spec/spec.html">HTML5</a> user interface features</strong> are accessibility supported in browsers, making them usable by people who rely upon assistive technology (AT) to use the web.</p>
<p><strong>Note:</strong> Browsers may not have practical accessibility support for HTML features on particular operating systems. Refer to <a href="http://www.paciellogroup.com/blog/2012/02/rough-guide-browsers-operating-systems-and-screen-reader-support/">Rough Guide: browsers, operating systems and screen reader support</a> for details.</p>
<p>It is not intended to dissuade developers from <strong>using new <a href="http://www.w3.org/html/wg/drafts/html/master/">HTML5</a> features</strong>. Sometimes there are better choices, sometimes developers have to add a little extra to make the feature useful or usable, and other times features have simply not been implemented by any browser or only by browsers that do not yet support assistive technologies. As a consequence it may not yet be practical to use a particular <a href="http://www.w3.org/html/wg/drafts/html/master/">HTML5</a> feature. </p>
<p>The information in the support table is updated on a semi-regular basis, to keep up with support improvements made in browsers as new versions are released.</p>
<p><a href="#legend">Support Tables - Legend & notes</a></p>
<p><strong id="note" tabindex="-1">NOTE: </strong> Opera is now under Chrome as it uses Chrome's rendering engine and any accessibility support it may have is provided by Chrome's accessibility implementation.</p>
<h3><a name="wbdetails"></a>Major browsers - Details</h3>
<table width="96%" border="1">
<caption>
HTML5 feature accessibility support in Major Browsers
</caption>
<tr>
<th width="14%" scope="col">HTML5 elements (links to test files)</th>
<th width="13%" scope="col"><img src="images/safari_64x64.png" alt="" width="64" height="64" border="0"> <span style="display:block">Safari 8 - OSX</span></th>
<th width="13%" scope="col"><img src="images/chrome.png" alt="" width="64" height="64" border="0">
<span style="display:block">Chrome 43 - windows</span><img src="images/opera.png" width="24" height="24" border="0" alt=""><small>Opera </small></th>
<th width="11%" scope="col"><img src="images/firefox.png" width="64" height="64" border="0" alt="">
<span style="display:block">Firefox 38 - windows</span></th>
<th width="13%" scope="col"><img src="images/ie.png" width="64" height="64" border="0" alt="">
<span style="display:block">IE 11 - windows</span></th>
<th width="13%" scope="col"><img src="images/edge.png" width="64" height="69" alt="Edge"><span style="display:block">Edge 13 - windows</span></th>
<th width="49%" scope="col">Notes</th>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/article.html">article</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>)
</p>
<p><strong>Firefox:</strong> exposes element with a <code>document</code> role in MSAA/IA2 </p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/aside.html">aside</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>)
</p>
<p><strong>Firefox:</strong> exposes as ARIA <code>role="complementary"</code> via IA2 object attribute and IA2 <code>note</code> role. </p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/audio.html"><code>audio</code></a></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Safari: </strong>requires VoiceOver to be enabled to be usable with the keyboard.</p>
<p><strong>Firefox: (funky) </strong>keyboard access is provided via <a href="http://support.mozilla.org/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin#w_keyboard-controls">Firefox specific shortcuts</a></p>
<p><strong>Chrome</strong>: Full support!</p>
<p><strong>IE 11 / Edge:</strong> Full Support</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/canvas.html">canvas</a></code></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td><td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>IE, Edge, Chrome, Firefox: </strong>supports the accessible canvas element sub-DOM.<strong><br>
Firefox, Chrome</strong>: support drawfocus ring.</p>
<p><strong>Safari:</strong> supports the accessible canvas element sub-DOM. <strong>Note:</strong> VoiceOver does not appear to announce text in canvas sub-DOM.</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/datalist.html">datalist</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Chrome:</strong> keyboard accessible. Does not expose datalist as list. (<a href="https://code.google.com/p/chromium/issues/detail?id=282005">related bug</a>)</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/details-summary.html"><code>details</code></a></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Safari:</strong> refer to <a href="https://bugs.webkit.org/show_bug.cgi?id=131111">bug131111</a>.</p></td>
</tr>
<tr>
<th scope="row"><a href="http://codepen.io/stevef/debug/dPxgZq"><code>dialog</code></a></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Chrome: </strong>exposes correct role for dialog and traps focus in dialog in the modal state. <br>
<strong>Note:</strong> Currently Chrome keyboard support is incomplete, does not move focus back to trigger control on dialog close (<a href="https://code.google.com/p/chromium/issues/detail?id=298078">chrome dialog bug</a>) .</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/figure-figcaption.html">figcaption</a></code></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr>.<br>
</p>
<p><strong>Chrome, Firefox:</strong> exposes element as IA2 <code>caption</code> role and the element name as an IA2 object attribute. </p>
<p><strong>Firefox: </strong>exposes the <code>figcaption</code> content as an accessible name for its parent <code>figure</code>.</p>
<p><strong>Safari:</strong> <a href="https://bugs.webkit.org/show_bug.cgi?id=108996">figcaption bug</a></p></td>
</tr>
<tr>
<th scope="row"><code><A href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/figure.html">figure</A></code></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>IE:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr>.<br>
</p>
<p><strong>Firefox & Chrome:</strong> exposes element <code>role=group</code> with accessible name from <code>figcaption</code>.</p>
<p><strong>Safari: </strong>dependent on <a href="https://bugs.webkit.org/show_bug.cgi?id=108996">figcaption bug</a></p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/footer.html">footer</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>)
</p>
<p><strong>Firefox, Chrome:</strong> exposes as ARIA landmark <code>role="contentinfo"</code> when not a child of <code>article</code> or <code>section</code> elements</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/header.html">header</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>)
</p>
<p><strong>Firefox:</strong> exposes as ARIA landmark <code>role="banner"</code> when not a child of <code>article</code> or <code>section</code> elements</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-color.html"><code>color</code></a><code> input</code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Chrome</strong>: has keyboard support, exposes button as IA2 color chooser exposes color information in RGB as accValue.</p>
<p><strong>Firefox:</strong> keyboard accessible, exposed as a button but color value not exposed to AT. Refer to <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=559767">bug 559767</a></p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-date.html"><code>Date</code></a> <code>input</code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Chrome:</strong> keyboard operable. role state and property information exposed for input , but not for datepicker interface. Datepicker can be opened using <kbd>alt+down</kbd> arrow keys.</p>
<p> </p></td>
</tr>
<!--<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#date-and-time-state-(type=datetime)"><code>Date and Time</code></a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p>not implemented</p>
<p> </p></td>
</tr>-->
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-datetime-local.html" title="attr-input-type-datetime-local">Local Date and Time</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Chrome:</strong> keyboard operable, spin buttons exposed correctly (except for accname). No role state and property information exposed for calendar interface. No indication that the control can expose a date picker control.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-email.html"><code>E-mail</code></a> <code>input</code></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Firefox:</strong> supported in Version 27: </p>
<p><a href="https://bugs.webkit.org/show_bug.cgi?id=145973">Safari bug</a></p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-month.html"><code>Month</code></a> <code>input</code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Chrome:</strong> keyboard operable. role state and property information exposed for input , but not for datepicker interface. Datepicker can be opened using <kbd>alt+down</kbd> arrow keys.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-number.html"><code>Number</code></a> <code>input</code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Chrome</strong>: <del>chrome bug <a href="https://code.google.com/p/chromium/issues/detail?id=385014">385014</a></del> fixed</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-range.html"><code>Range</code></a> <code>input</code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>all good</strong></p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-search.html"><code>Search</code></a> <code>input</code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Firefox:</strong> supported in Version 27: see resolved bug <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=924896">Expose whether the input is a search, url, tel, etc.<br>
</a><a href="https://code.google.com/p/chromium/issues/detail?id=323161"><del>Chrome bug filed</del> - fixed</a></p>
<p><strong>Safari: </strong>AXSubRole: Searchfield</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-tel.html"><code>Telephone</code></a> <code>input</code> </th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Firefox:</strong> supported in Version 27: see resolved bug <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=924896">Expose whether the input is a search, url, tel, etc.<br>
</a><a href="https://code.google.com/p/chromium/issues/detail?id=323161"><del>Chrome bug filed</del> - fixed</a></p>
<p><a href="https://bugs.webkit.org/show_bug.cgi?id=145973">Safari bug</a></p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-time.html"><code>Time</code></a> <code>input</code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><strong>Chrome:</strong> Full support.</td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-url.html"><code>URL</code></a> <code>input</code> </th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Firefox:</strong> supported in Version 27: see resolved bug <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=924896">Expose whether the input is a search, url, tel, etc.</a></p>
<p><a href="https://code.google.com/p/chromium/issues/detail?id=323161">Chrome bug filed - resolved fixed!</a></p>
<p><a href="https://bugs.webkit.org/show_bug.cgi?id=145973">Safari bug</a></p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/input-week.html"><code>Week</code></a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Chrome:</strong> keyboard operable. role state and property information exposed for input , and datepicker interface. Datepicker can be opened using <kbd>alt+down</kbd> arrow keys.</p>
<p> </p></td>
</tr>
<tr>
<th><A href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/mark.html"><code>mark</code></A></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td>Currently provides the same amount of semantic information to AT as a span element. Firefox bug: <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=982125">make <mark> element accessible</a> <a href="https://code.google.com/p/chromium/issues/detail?id=494612">Chrome bug: 494612</a> , <a href="https://bugs.webkit.org/show_bug.cgi?id=145974">Safari Bug 145974</a></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/main.html"><code>main</code></a></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><strong>Firefox and Chrome:</strong> implements as <code>role=main.<br>
</code><strong>Edge:</strong> provides no semantic information via accessibility APIs (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>) </td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/menu-context.html"><code>menu</code></a><code> - <a href="http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#popup-menu-state">popup menu</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><strong>Firefox: </strong>does not indicate presence of popup menu.</td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/menu-toolbar.html"><code>menu</code></a><code> - <a href="http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#toolbar-state">toolbar</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td>not implemented </td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/menuitem.html"><code>menuitem</code></a></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><strong>Firefox:</strong> Supports menu item role and keyboard interaction.</td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/meter.html"><code>meter</code></a></th>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><p>Safari: role= AXProgressIndicator, both current vlaue and fallback content exposed.</p>
<p><strong>Firefox: </strong> role exposed as meter in MSAA, properties not exposed. <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=559770">Firefox bug 1</a> (API) and <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=687202">Firefox bug 2</a> (UI) </p>
<p><strong>Chrome:</strong> exposed as progressbar and value announced, refer to firefox bugs for implementation details that need working out.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/nav.html">nav</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt="Supported"> <span class="hidden">Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>)
</p>
<p><strong>Firefox:</strong> exposes as ARIA landmark <code>role="navigation"</code> via IA2 object attribute</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/output.html">output</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span> </td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span> </td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span> </td>
<td><p><strong>Firefox:</strong> accessibility support implemented - IA2 <code>section</code> role, with <code>aria-live=polite</code> and hasIA2 <code>controlled_by relation</code> defined by <code>@for</code> attribute.</p>
<p><strong>Chrome: </strong>implemented with role=status, <s>refer to <a href="https://code.google.com/p/chromium/issues/detail?id=323143">Chrome bug</a></s>.</p>
<p><strong>IE/Edge:</strong> not supported, <a href="https://connect.microsoft.com/IE/feedback/details/809569/implement-html5-output-element-accessibility">IE bug filed</a></p>
<p><strong>Note:</strong> there is currently disagreement amongst implementers as to how the sematnics of the output element should be exposed: <a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=26135">bug 26135</a> - is <code>role=status</code> correct for output element?</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/progress.html">progress</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>all good</strong></p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/section.html">section</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> (<a href="http://connect.microsoft.com/IE/feedback/details/804723/html5-structural-elements-not-exposed-via-accessibility-api">related bug</a>)</p>
<p><strong>Chrome:</strong> exposes element with a <code>section</code> role in IA2</p>
<p><strong>Firefox:</strong> exposes element with a <code>paragraph</code> role in IA2 (Unsure about the correctness of this mapping). Refer to <a href="http://www.paciellogroup.com/blog/2011/03/html5-accessibility-chops-section-elements/">HTML5 Accessibility Chops: section elements</a></p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/details-summary.html">summary</a></code></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>IE/Edge:</strong> provides no semantic information via accessibility APIs<abbr title="assistive technology"></abbr> as its not implemented.</p>
<p><strong>Chrome:</strong><del> keyboard support, correct role, (implemented but not in release - expanded/collapsed state). chrome bug: Issue <a href="https://code.google.com/p/chromium/issues/detail?id=282016">282016</a></del> - fixed</p>
<p><strong>Safari:</strong> not exposed as a control - see <a href="https://bugs.webkit.org/show_bug.cgi?id=131111">bug131111</a>.</p>
<p></p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/time.html"><code>time</code></a></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Safari, IE, Edge:</strong> Currently provides the same amount of semantic information to AT as a span element. </p>
<p><a href="https://connect.microsoft.com/IE/feedback/details/1274286/feature-request-expose-html-time-element-semantics-in-acc-layer">Edge bug</a></p>
<p><strong>Firefox & Chrome:</strong> exposes as iA2 object attributes - <code>xml-roles:time</code> and <code>datetime</code></p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/video.html"><code>track</code></a></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>IE/Edge:</strong> supports both WebVTT and TTML</p>
<p><strong>Chrome/Firefox:</strong> only support WebVTT</p>
<p>Refer to <a href="http://www.w3.org/community/texttracks/2012/08/23/webvtt-support-in-browsers/">WebVTT support in browsers</a> for more details</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/video.html"><code>video</code></a></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""><span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Safari: </strong>requires VoiceOver to be enabled to be usable with the keyboard.</p>
<p><strong>Firefox:</strong> keyboard support <em>suboptimal</em> - cannot interact with individual controls. refer to <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494175">Bug 494175</a> -<span id="summary_alias_container2"> <span id="short_desc_nonedit_display2">Make <video> and <audio> controls keyboard navigable</span></span></p>
<p><strong>Chrome:</strong> full support! </p>
<p><strong>IE 11 / Edge: </strong>Full support!</p></td>
</tr>
</table>
</div>
<hr>
<table width="96%" border="1">
<caption>
Selected HTML5 attribute accessibility support in Major Browsers
</caption>
<tr>
<th width="13%" scope="col">selected HTML5 attributes (note: this is not all of them!)</th>
<th scope="col"><img src="images/safari_64x64.png" alt="" width="64" height="64" border="0"> <span style="display:block">Safari 8 - OSX</span></th>
<th scope="col"><img src="images/chrome.png" alt="" width="64" height="64" border="0"> <span style="display:block">Chrome 43 - windows</span><img src="images/opera.png" width="24" height="24" border="0" alt=""><small>Opera </small></th>
<th scope="col"><img src="images/firefox.png" width="64" height="64" border="0" alt=""> <span style="display:block">Firefox 38 - windows</span></th>
<th scope="col"><img src="images/ie.png" width="64" height="64" border="0" alt=""> <span style="display:block">IE 11 - windows</span></th>
<th scope="col"><img src="images/edge.png" width="64" height="69" alt="Edge"><span style="display:block">Edge</span></th>
<th width="47%" scope="col">Notes</th>
</tr>
<!--<tr>
<td><code><a href="http://dev.w3.org/html5/spec/dnd.html#the-draggable-attribute">draggable</a></code> attribute</td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td> </td>
</tr>-->
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/hidden-att.html"><code>hidden</code></a></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Chrome, Firefox, IE, Edge: </strong>Content within elements that have a hidden attribute are not displayed or navigable. </p>
<p><strong>Note:</strong> In all supporting browsers CSS <code>display:none</code> is applied to elements with the <code>hidden</code> attribute.<br>
</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/required-att.html"><code>required</code></a></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Firefox:</strong> exposes popup message as alert and identifies the field as invalid.</p>
<p><strong>Chrome</strong>: exposes as IA2 <code>required and invalid </code> states, does not expose popup message.</p>
<p><strong>IE:</strong> required state exposed via (UIA - CurrentHelpText;This is a required field;<br>
CurrentIsRequiredForForm;True;) No MSAA.</p>
<p><strong>Safari:</strong> exposes <code>AXrequired</code> state, does not expose <code>AXinvalid</code> state.</p></td>
</tr>
<tr>
<th scope="row"><a href="http://thepaciellogroup.github.io/AT-browser-tests/test-files/placeholder-att.html"><code>placeholder</code></a></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Safari:</strong> Note VoiceOver always announces the placeholder attribute content before label text.</p>
<p><strong>Note:</strong> there are incompatibilities between the IE, Firefox and Chrome accessibility implementations of placeholder. </p>
<p>Refer to: <a href="http://www.html5accessibility.com/tests/placeholder-labelling.html">HTML5 accessibility Chops: the placeholder attribute</a></p></td>
</tr>
</table>
<hr>
<!--<h3><a name="mbdetails">Mac browsers - Details</a></h3>
<p><strong><em>COMING SOON!</em></strong></p><table width="96%" border="1">
<caption>
<img src="images/mac-logo.png" width="64" height="64" alt=""> New HTML5 feature accessibility support in Mac Browsers
</caption>
<tr>
<th scope="col">new HTML5 elements</th>
<th scope="col"><img src="images/chrome.png" alt="" width="62" height="61" border="0"> <span style="display:block">chrome 23.0.1260.1 </span></th>
<th scope="col"><img src="images/firefox.png" alt="" width="62" height="61" border="0"> <span style="display:block">Firefox 17.0a1</span></th>
<th class="partial" scope="col"><img src="images/opera.png" alt="" width="62" height="61" border="0"> <span style="display:block">Opera <small>11.6.1</small><sup><a href="#note">note</a></sup></span></th>
<th scope="col"><img src="images/safari.png" alt="" width="62" height="61" border="0"> <span style="display:block">Safari (6)</span></th>
<th scope="col">Notes</th>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/html/wg/drafts/html/master/sections.html#the-article-element">article</a></code> element </th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Chrome,Firefox,Opera: </strong>provide the same amount of semantic information to <abbr title="assistive technology">AT</abbr> as a div element</p>
<p><strong>Safari: </strong>Exposed in Mac API as AXRole: "AXGroup", AXSubrole: "AXDocumentArticle", AXRoleDescription: "article".</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/html/wg/drafts/html/master/sections.html#the-aside-element">aside</a></code> element </th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Chrome,Firefox,Opera: </strong>provide the same amount of semantic information to <abbr title="assistive technology">AT</abbr> as a div element</p>
<p><strong>Safari: </strong>Exposed in Mac API as AXRole: "AXGroup", AXSubrole: "AXLandmarkComplementary",<br>
AXRoleDescription: "complementary"</p></td>
</tr>
<tr>
<th scope="row"><a href="http://dev.w3.org/html5/spec/video.html#audio"><code>audio</code></a></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td class="partial"><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Firefox & </strong><strong>Opera</strong>: have keyboard support, but no AT support.</p>
<p><strong>Safari & Chrome:</strong> Appears to be no keyboard access unless voiceover is running.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://dev.w3.org/html5/spec/the-canvas-element.html#the-canvas-element">canvas</a></code></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Chrome:</strong> partial support, interactive elements in sub dom in tab order, but sub dom content not exposed.</p></td>
</tr>
<!--<tr>
<td><a href="http://dev.w3.org/html5/spec/interactive-elements.html#the-command">command</a> element</td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td>not implemented</td>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/TR/html5/forms.html#the-datalist-element">datalist</a></code> element </th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td class="partial"><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera</strong>: keyboard accessible. </p>
<p><strong>Firefox</strong>: keyboard accessible. </p>
<p><strong>Chrome:</strong> keyboard accessible. Does not expose datalist as list, does not convey presence of data list from the edit box</p></td>
</tr>
<tr>
<th scope="row"><a href="http://dev.w3.org/html5/spec/interactive-elements.html#the-details-element"><code>details</code></a></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><p><strong>Firefox,Opera: </strong>provide the same amount of semantic information to <abbr title="assistive technology">AT</abbr> as a div element</p>
<p><strong>Chrome & Safari: </strong>keyboard support only.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://dev.w3.org/html5/spec/grouping-content.html#the-figcaption-element">figcaption</a></code></th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Chrome,Firefox,Opera, Safari: </strong>provide the same amount of semantic information to <abbr title="assistive technology">AT</abbr> as a div element</p></td>
</tr>
<tr>
<th scope="row"><code><A href="http://dev.w3.org/html5/spec/grouping-content.html#the-figure-element">figure</A></code></th>
<td><img src="images/cross.png" alt="not supported" width="16" height="16" border="0"><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><p><strong>Chrome,Firefox,Opera, Safari: </strong>provide the same amount of semantic information to <abbr title="assistive technology">AT</abbr> as a div element</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/html/wg/drafts/html/master/sections.html#the-footer-element">footer</a></code> element </th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p> </p>
<p><strong>Safari & Firefox:</strong> exposes as AXRole: "AXGroup", AXSubrole: "AXLandmarkContentInfo", </p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/html/wg/drafts/html/master/sections.html#the-header-element">header</a></code> element </th>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p>Currently provides the same amount of semantic information to AT as a <code>div</code> element.</p>
<p><strong>Safari:</strong> exposes as AXRole: "AXGroup", AXSubrole: "AXLandmarkBanner", AXRoleDescription: "banner" Note: is every header element announced as banner?</p></td>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/html/wg/drafts/html/master/sections.html#the-hgroup-element">hgroup</a></code> element </th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p>not implemented</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/number-state.html#color-state">color</a><code> <a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera:</strong> partially keyboard accessible (cannot access 'other' button. No information exposed to assistive technology.</p>
<p><strong>Chrome:</strong> Keyboard support only</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#date-state" title="attr-input-type-date">Date</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><span class="hidden">Not supported</span><img src="images/cross.png" width="16" height="16" alt=""></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera</strong>: date picker cannot be activated using the keybaord, no information exposed to assistive technology.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#date-and-time-state" title="attr-input-type-datetime">Date and Time</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><span class="hidden">Not supported</span><img src="images/cross.png" width="16" height="16" alt=""></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera</strong>: date picker cannot be activated using the keybaord, no information exposed to assistive technology.</p>
<p> </p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#local-date-and-time-state" title="attr-input-type-datetime-local">Local Date and Time</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><span class="hidden">Not supported</span><img src="images/cross.png" width="16" height="16" alt=""></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera</strong>: date picker cannot be activated using the keybaord, no information exposed to assistive technology.</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#e-mail-state" title="attr-input-type-email">E-mail</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td>? mostly not implemented.</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#month-state" title="attr-input-type-month">Month</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><span class="hidden">Not supported</span><img src="images/cross.png" width="16" height="16" alt=""></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera</strong>: date picker cannot be activated using the keybaord, no information exposed to assistive technology.</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#number-state" title="attr-input-type-number">Number</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Opera</strong>: keyboard accessible.</p>
<p><strong>Safari: </strong>Note: stepper controls are assigned role seperately from the edit box. The stepper is not currently recognized by VoiceOver.</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#range-state" title="attr-input-type-range">Range</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><p><strong>Chrome:</strong> correct role, partial keyboard support, slider value not exposed.</p>
<p><strong>Opera:</strong> no role, partial keyboard support, slider value not exposed.</p>
<p><strong>Safari:</strong> exposed as AXRole: "AXSlider", AXSubrole: "(null)", AXRoleDescription: "slider"</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#text-state-and-search-state" title="attr-input-type-search">Search</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/tick.png" width="16" height="16" alt=""><span class="hidden"> Supported</span></td>
<td>The difference between <code>input type="search"</code> and <code>type="text"</code> is '<a href="http://dev.w3.org/html5/spec/states-of-the-type-attribute.html#text-state-and-search-state">primarily stylistic</a>'.</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#telephone-state" title="attr-input-type-tel">Telephone</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td>?</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#time-state" title="attr-input-type-time">Time</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.gif" width="16" height="16" alt=""> <img src="images/tick.png" width="16" height="16" alt=""> <span class="hidden">Partially supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><p><strong>Opera</strong>: keyboard accessible.</p></td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#url-state" title="attr-input-type-url">URL</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td>?</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/TR/html5/forms.html#week-state" title="attr-input-type-week">Week</a> <code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#the-input-element">input</a></code></th>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td><img src="images/ni.gif" width="25" height="25" alt=""><span class="hidden">Not implemented</span></td>
<td class="partial"><img src="images/cross.png" width="16" height="16" alt=""><span class="hidden">Not supported</span></td>