-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.json
2191 lines (2191 loc) · 230 KB
/
report.json
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
{
"captchaResult": "CAPTCHA_NOT_NEEDED",
"kind": "pagespeedonline#result",
"id": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/",
"loadingExperience": {
"id": "https://fiw.thws.de",
"metrics": {
"CUMULATIVE_LAYOUT_SHIFT_SCORE": {
"percentile": 14,
"distributions": [
{
"min": 0,
"max": 10,
"proportion": 0.4496124031007748
},
{
"min": 10,
"max": 25,
"proportion": 0.5399886557005099
},
{
"min": 25,
"proportion": 0.0103989411987143
}
],
"category": "AVERAGE"
},
"EXPERIMENTAL_TIME_TO_FIRST_BYTE": {
"percentile": 450,
"distributions": [
{
"min": 0,
"max": 800,
"proportion": 0.8526696105981535
},
{
"min": 800,
"max": 1800,
"proportion": 0.13107185869128868
},
{
"min": 1800,
"proportion": 0.016258530710558022
}
],
"category": "FAST"
},
"FIRST_CONTENTFUL_PAINT_MS": {
"percentile": 783,
"distributions": [
{
"min": 0,
"max": 1800,
"proportion": 0.958845328652232
},
{
"min": 1800,
"max": 3000,
"proportion": 0.02789155451531106
},
{
"min": 3000,
"proportion": 0.013263116832455549
}
],
"category": "FAST"
},
"FIRST_INPUT_DELAY_MS": {
"percentile": 2,
"distributions": [
{
"min": 0,
"max": 100,
"proportion": 0.9982078853046623
},
{
"min": 100,
"max": 300,
"proportion": 0.0005973715651135024
},
{
"min": 300,
"proportion": 0.0011947431302270063
}
],
"category": "FAST"
},
"INTERACTION_TO_NEXT_PAINT": {
"percentile": 36,
"distributions": [
{
"min": 0,
"max": 200,
"proportion": 0.9894905593159927
},
{
"min": 200,
"max": 500,
"proportion": 0.008371927324545751
},
{
"min": 500,
"proportion": 0.0021375133594584853
}
],
"category": "FAST"
},
"LARGEST_CONTENTFUL_PAINT_MS": {
"percentile": 1082,
"distributions": [
{
"min": 0,
"max": 2500,
"proportion": 0.9597568037058469
},
{
"min": 2500,
"max": 4000,
"proportion": 0.02904844624589844
},
{
"min": 4000,
"proportion": 0.011194750048253158
}
],
"category": "FAST"
}
},
"overall_category": "AVERAGE",
"initial_url": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/",
"origin_fallback": true
},
"originLoadingExperience": {
"id": "https://fiw.thws.de",
"metrics": {
"CUMULATIVE_LAYOUT_SHIFT_SCORE": {
"percentile": 14,
"distributions": [
{
"min": 0,
"max": 10,
"proportion": 0.4496124031007748
},
{
"min": 10,
"max": 25,
"proportion": 0.5399886557005099
},
{
"min": 25,
"proportion": 0.0103989411987143
}
],
"category": "AVERAGE"
},
"EXPERIMENTAL_TIME_TO_FIRST_BYTE": {
"percentile": 450,
"distributions": [
{
"min": 0,
"max": 800,
"proportion": 0.8526696105981535
},
{
"min": 800,
"max": 1800,
"proportion": 0.13107185869128868
},
{
"min": 1800,
"proportion": 0.016258530710558022
}
],
"category": "FAST"
},
"FIRST_CONTENTFUL_PAINT_MS": {
"percentile": 783,
"distributions": [
{
"min": 0,
"max": 1800,
"proportion": 0.958845328652232
},
{
"min": 1800,
"max": 3000,
"proportion": 0.02789155451531106
},
{
"min": 3000,
"proportion": 0.013263116832455549
}
],
"category": "FAST"
},
"FIRST_INPUT_DELAY_MS": {
"percentile": 2,
"distributions": [
{
"min": 0,
"max": 100,
"proportion": 0.9982078853046623
},
{
"min": 100,
"max": 300,
"proportion": 0.0005973715651135024
},
{
"min": 300,
"proportion": 0.0011947431302270063
}
],
"category": "FAST"
},
"INTERACTION_TO_NEXT_PAINT": {
"percentile": 36,
"distributions": [
{
"min": 0,
"max": 200,
"proportion": 0.9894905593159927
},
{
"min": 200,
"max": 500,
"proportion": 0.008371927324545751
},
{
"min": 500,
"proportion": 0.0021375133594584853
}
],
"category": "FAST"
},
"LARGEST_CONTENTFUL_PAINT_MS": {
"percentile": 1082,
"distributions": [
{
"min": 0,
"max": 2500,
"proportion": 0.9597568037058469
},
{
"min": 2500,
"max": 4000,
"proportion": 0.02904844624589844
},
{
"min": 4000,
"proportion": 0.011194750048253158
}
],
"category": "FAST"
}
},
"overall_category": "AVERAGE",
"initial_url": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/"
},
"lighthouseResult": {
"requestedUrl": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/",
"finalUrl": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/",
"mainDocumentUrl": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/",
"finalDisplayedUrl": "https://fiw.thws.de/en/studies/student-projects/guided-telepresence-robot-tour/",
"lighthouseVersion": "11.4.0",
"userAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/121.0.6167.85 Safari/537.36",
"fetchTime": "2024-02-21T13:14:36.989Z",
"environment": {
"networkUserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36",
"hostUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/121.0.6167.85 Safari/537.36",
"benchmarkIndex": 464,
"credits": {
"axe-core": "4.8.1"
}
},
"runWarnings": [],
"configSettings": {
"emulatedFormFactor": "desktop",
"formFactor": "desktop",
"locale": "en-US",
"onlyCategories": [
"accessibility"
],
"channel": "lr"
},
"audits": {
"label": {
"id": "label",
"title": "Form elements have associated labels",
"description": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more about form element labels](https://dequeuniversity.com/rules/axe/4.8/label).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"type": "table",
"items": [],
"headings": []
}
},
"target-size": {
"id": "target-size",
"title": "Touch targets have sufficient size and spacing.",
"description": "Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. [Learn more about touch targets](https://dequeuniversity.com/rules/axe/4.8/target-size).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"select-name": {
"id": "select-name",
"title": "Select elements have associated label elements.",
"description": "Form elements without effective labels can create frustrating experiences for screen reader users. [Learn more about the `select` element](https://dequeuniversity.com/rules/axe/4.8/select-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"aria-valid-attr": {
"id": "aria-valid-attr",
"title": "`[aria-*]` attributes are valid and not misspelled",
"description": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more about valid ARIA attributes](https://dequeuniversity.com/rules/axe/4.8/aria-valid-attr).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"items": [],
"headings": [],
"type": "table"
}
},
"button-name": {
"id": "button-name",
"title": "Buttons have an accessible name",
"description": "When a button doesn't have an accessible name, screen readers announce it as \"button\", making it unusable for users who rely on screen readers. [Learn how to make buttons more accessible](https://dequeuniversity.com/rules/axe/4.8/button-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"label-content-name-mismatch": {
"id": "label-content-name-mismatch",
"title": "Elements with visible text labels have matching accessible names.",
"description": "Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. [Learn more about accessible names](https://dequeuniversity.com/rules/axe/4.8/label-content-name-mismatch).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"table-duplicate-name": {
"id": "table-duplicate-name",
"title": "Tables have different content in the summary attribute and `<caption>`.",
"description": "The summary attribute should describe the table structure, while `<caption>` should have the onscreen title. Accurate table mark-up helps users of screen readers. [Learn more about summary and caption](https://dequeuniversity.com/rules/axe/4.8/table-duplicate-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"frame-title": {
"id": "frame-title",
"title": "`<frame>` or `<iframe>` elements have a title",
"description": "Screen reader users rely on frame titles to describe the contents of frames. [Learn more about frame titles](https://dequeuniversity.com/rules/axe/4.8/frame-title).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"image-redundant-alt": {
"id": "image-redundant-alt",
"title": "Image elements do not have `[alt]` attributes that are redundant text.",
"description": "Informative elements should aim for short, descriptive alternative text. Alternative text that is exactly the same as the text adjacent to the link or image is potentially confusing for screen reader users, because the text will be read twice. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.8/image-redundant-alt).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"type": "table",
"items": []
}
},
"html-lang-valid": {
"id": "html-lang-valid",
"title": "`<html>` element has a valid value for its `[lang]` attribute",
"description": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) helps screen readers announce text properly. [Learn how to use the `lang` attribute](https://dequeuniversity.com/rules/axe/4.8/html-lang-valid).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"items": [],
"type": "table"
}
},
"aria-hidden-focus": {
"id": "aria-hidden-focus",
"title": "`[aria-hidden=\"true\"]` elements contain focusable descendents",
"description": "Focusable descendents within an `[aria-hidden=\"true\"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn how `aria-hidden` affects focusable elements](https://dequeuniversity.com/rules/axe/4.8/aria-hidden-focus).",
"score": 0,
"scoreDisplayMode": "binary",
"details": {
"debugData": {
"type": "debugdata",
"tags": [
"cat.name-role-value",
"wcag2a",
"wcag412",
"TTv5",
"TT6.a",
"EN-301-549",
"EN-9.4.1.2"
],
"impact": "serious"
},
"items": [
{
"subItems": {
"type": "subitems",
"items": [
{
"relatedNode": {
"path": "1,HTML,1,BODY,7,FOOTER,0,DIV,2,DIV,0,DIV,1,DIV,1,DIV,0,A",
"type": "node",
"nodeLabel": "Münzstraße 12, 97070 Würzburg",
"selector": "div.col-sm-6 > div.row > div.col-md-6 > a",
"boundingRect": {
"top": 2383,
"bottom": 2645,
"right": 660,
"width": 263,
"left": 398,
"height": 263
},
"snippet": "<a href=\"https://www.google.com/maps/place/M%C3%BCnzstra%C3%9Fe%2012%0A97070%20W%C3…\" target=\"_blank\">",
"lhId": "1-1-A"
}
}
]
},
"node": {
"type": "node",
"nodeLabel": "Münzstraße 12, 97070 Würzburg",
"explanation": "Fix all of the following:\n Focusable content should have tabindex=\"-1\" or be removed from the DOM",
"lhId": "1-0-DIV",
"snippet": "<div class=\"col-md-6\" aria-hidden=\"true\">",
"boundingRect": {
"left": 383,
"top": 2383,
"right": 675,
"width": 293,
"height": 263,
"bottom": 2645
},
"path": "1,HTML,1,BODY,7,FOOTER,0,DIV,2,DIV,0,DIV,1,DIV,1,DIV",
"selector": "div.row > div.col-sm-6 > div.row > div.col-md-6"
}
},
{
"subItems": {
"type": "subitems",
"items": [
{
"relatedNode": {
"snippet": "<a href=\"https://www.google.com/maps/place/Sanderheinrichsleitenweg%2020%0A97074%20…\" target=\"_blank\">",
"lhId": "1-3-A",
"boundingRect": {
"height": 263,
"bottom": 2645,
"left": 983,
"width": 263,
"right": 1245,
"top": 2383
},
"selector": "div.col-sm-6 > div.row > div.col-md-6 > a",
"type": "node",
"path": "1,HTML,1,BODY,7,FOOTER,0,DIV,2,DIV,1,DIV,1,DIV,1,DIV,0,A",
"nodeLabel": "Sanderheinrichsleitenweg 20, 97074 Würzburg"
}
}
]
},
"node": {
"selector": "div.row > div.col-sm-6 > div.row > div.col-md-6",
"path": "1,HTML,1,BODY,7,FOOTER,0,DIV,2,DIV,1,DIV,1,DIV,1,DIV",
"nodeLabel": "Sanderheinrichsleitenweg 20, 97074 Würzburg",
"snippet": "<div class=\"col-md-6\" aria-hidden=\"true\">",
"explanation": "Fix all of the following:\n Focusable content should have tabindex=\"-1\" or be removed from the DOM",
"lhId": "1-2-DIV",
"type": "node",
"boundingRect": {
"width": 293,
"right": 1260,
"height": 263,
"bottom": 2645,
"left": 968,
"top": 2383
}
}
}
],
"type": "table",
"headings": [
{
"label": "Failing Elements",
"valueType": "node",
"key": "node",
"subItemsHeading": {
"valueType": "node",
"key": "relatedNode"
}
}
]
}
},
"aria-tooltip-name": {
"id": "aria-tooltip-name",
"title": "ARIA `tooltip` elements have accessible names",
"description": "When a tooltip element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to name `tooltip` elements](https://dequeuniversity.com/rules/axe/4.8/aria-tooltip-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"video-caption": {
"id": "video-caption",
"title": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`",
"description": "When a video provides a caption it is easier for deaf and hearing impaired users to access its information. [Learn more about video captions](https://dequeuniversity.com/rules/axe/4.8/video-caption).",
"score": null,
"scoreDisplayMode": "informative",
"details": {
"headings": [
{
"valueType": "node",
"subItemsHeading": {
"key": "relatedNode",
"valueType": "node"
},
"label": "Failing Elements",
"key": "node"
}
],
"items": [
{
"node": {
"nodeLabel": "div.row > main.col-md-9 > div.embed-responsive > video",
"explanation": "Fix all of the following:\n Check that captions is available for the element",
"snippet": "<video controls=\"\">",
"boundingRect": {
"height": 477,
"bottom": 1272,
"left": 398,
"top": 796,
"width": 848,
"right": 1245
},
"lhId": "1-19-VIDEO",
"type": "node",
"path": "1,HTML,1,BODY,6,DIV,0,DIV,1,MAIN,9,DIV,0,VIDEO",
"selector": "div.row > main.col-md-9 > div.embed-responsive > video"
}
}
],
"debugData": {
"type": "debugdata",
"tags": [
"cat.text-alternatives",
"wcag2a",
"wcag122",
"section508",
"section508.22.a",
"TTv5",
"TT17.a",
"EN-301-549",
"EN-9.1.2.2"
],
"impact": "critical"
},
"type": "table"
}
},
"html-xml-lang-mismatch": {
"id": "html-xml-lang-mismatch",
"title": "`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.",
"description": "If the webpage does not specify a consistent language, then the screen reader might not announce the page's text correctly. [Learn more about the `lang` attribute](https://dequeuniversity.com/rules/axe/4.8/html-xml-lang-mismatch).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"listitem": {
"id": "listitem",
"title": "List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements",
"description": "Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. [Learn more about proper list structure](https://dequeuniversity.com/rules/axe/4.8/listitem).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"items": [],
"type": "table"
}
},
"offscreen-content-hidden": {
"id": "offscreen-content-hidden",
"title": "Offscreen content is hidden from assistive technology",
"description": "Offscreen content is hidden with display: none or aria-hidden=true. [Learn how to properly hide offscreen content](https://developer.chrome.com/docs/lighthouse/accessibility/offscreen-content-hidden/).",
"score": null,
"scoreDisplayMode": "manual"
},
"definition-list": {
"id": "definition-list",
"title": "`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements.",
"description": "When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. [Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.8/definition-list).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"tabindex": {
"id": "tabindex",
"title": "No element has a `[tabindex]` value greater than 0",
"description": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more about the `tabindex` attribute](https://dequeuniversity.com/rules/axe/4.8/tabindex).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"visual-order-follows-dom": {
"id": "visual-order-follows-dom",
"title": "Visual order on the page follows DOM order",
"description": "DOM order matches the visual order, improving navigation for assistive technology. [Learn more about DOM and visual ordering](https://developer.chrome.com/docs/lighthouse/accessibility/visual-order-follows-dom/).",
"score": null,
"scoreDisplayMode": "manual"
},
"aria-dialog-name": {
"id": "aria-dialog-name",
"title": "Elements with `role=\"dialog\"` or `role=\"alertdialog\"` have accessible names.",
"description": "ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. [Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.8/aria-dialog-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"aria-meter-name": {
"id": "aria-meter-name",
"title": "ARIA `meter` elements have accessible names",
"description": "When a meter element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to name `meter` elements](https://dequeuniversity.com/rules/axe/4.8/aria-meter-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"aria-allowed-role": {
"id": "aria-allowed-role",
"title": "Values assigned to `role=\"\"` are valid ARIA roles.",
"description": "ARIA `role`s enable assistive technologies to know the role of each element on the web page. If the `role` values are misspelled, not existing ARIA `role` values, or abstract roles, then the purpose of the element will not be communicated to users of assistive technologies. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.8/aria-allowed-role).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"items": [],
"type": "table"
}
},
"aria-command-name": {
"id": "aria-command-name",
"title": "`button`, `link`, and `menuitem` elements have accessible names",
"description": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to make command elements more accessible](https://dequeuniversity.com/rules/axe/4.8/aria-command-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"meta-refresh": {
"id": "meta-refresh",
"title": "The document does not use `<meta http-equiv=\"refresh\">`",
"description": "Users do not expect a page to refresh automatically, and doing so will move focus back to the top of the page. This may create a frustrating or confusing experience. [Learn more about the refresh meta tag](https://dequeuniversity.com/rules/axe/4.8/meta-refresh).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"aria-input-field-name": {
"id": "aria-input-field-name",
"title": "ARIA input fields have accessible names",
"description": "When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more about input field labels](https://dequeuniversity.com/rules/axe/4.8/aria-input-field-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"heading-order": {
"id": "heading-order",
"title": "Heading elements appear in a sequentially-descending order",
"description": "Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. [Learn more about heading order](https://dequeuniversity.com/rules/axe/4.8/heading-order).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"items": [],
"type": "table"
}
},
"aria-required-parent": {
"id": "aria-required-parent",
"title": "`[role]`s are contained by their required parent element",
"description": "Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. [Learn more about ARIA roles and required parent element](https://dequeuniversity.com/rules/axe/4.8/aria-required-parent).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"duplicate-id-aria": {
"id": "duplicate-id-aria",
"title": "ARIA IDs are unique",
"description": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn how to fix duplicate ARIA IDs](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"input-button-name": {
"id": "input-button-name",
"title": "Input buttons do not have discernible text.",
"description": "Adding discernable and accessible text to input buttons may help screen reader users understand the purpose of the input button. [Learn more about input buttons](https://dequeuniversity.com/rules/axe/4.8/input-button-name).",
"score": 0,
"scoreDisplayMode": "binary",
"details": {
"type": "table",
"debugData": {
"impact": "critical",
"tags": [
"cat.name-role-value",
"wcag2a",
"wcag412",
"section508",
"section508.22.a",
"TTv5",
"TT5.c",
"EN-301-549",
"EN-9.4.1.2",
"ACT"
],
"type": "debugdata"
},
"items": [
{
"node": {
"snippet": "<input class=\"sb-search-submit\" type=\"submit\" value=\"\">",
"boundingRect": {
"height": 40,
"left": 905,
"bottom": 40,
"width": 40,
"right": 945,
"top": 0
},
"nodeLabel": "li > div#sb-search > form > input.sb-search-submit",
"path": "1,HTML,1,BODY,2,HEADER,0,DIV,0,DIV,1,NAV,0,UL,0,LI,0,DIV,0,FORM,1,INPUT",
"explanation": "Fix any of the following:\n Element has a value attribute and the value attribute is empty\n Element has an empty value attribute\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute\n Element's default semantics were not overridden with role=\"none\" or role=\"presentation\"",
"type": "node",
"lhId": "1-14-INPUT",
"selector": "li > div#sb-search > form > input.sb-search-submit"
}
}
],
"headings": [
{
"valueType": "node",
"label": "Failing Elements",
"subItemsHeading": {
"key": "relatedNode",
"valueType": "node"
},
"key": "node"
}
]
}
},
"interactive-element-affordance": {
"id": "interactive-element-affordance",
"title": "Interactive elements indicate their purpose and state",
"description": "Interactive elements, such as links and buttons, should indicate their state and be distinguishable from non-interactive elements. [Learn how to decorate interactive elements with affordance hints](https://developer.chrome.com/docs/lighthouse/accessibility/interactive-element-affordance/).",
"score": null,
"scoreDisplayMode": "manual"
},
"td-headers-attr": {
"id": "td-headers-attr",
"title": "Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table.",
"description": "Screen readers have features to make navigating tables easier. Ensuring `<td>` cells using the `[headers]` attribute only refer to other cells in the same table may improve the experience for screen reader users. [Learn more about the `headers` attribute](https://dequeuniversity.com/rules/axe/4.8/td-headers-attr).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"skip-link": {
"id": "skip-link",
"title": "Skip links are focusable.",
"description": "Including a skip link can help users skip to the main content to save time. [Learn more about skip links](https://dequeuniversity.com/rules/axe/4.8/skip-link).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"dlitem": {
"id": "dlitem",
"title": "Definition list items are wrapped in `<dl>` elements",
"description": "Definition list items (`<dt>` and `<dd>`) must be wrapped in a parent `<dl>` element to ensure that screen readers can properly announce them. [Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.8/dlitem).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"aria-required-children": {
"id": "aria-required-children",
"title": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.",
"description": "Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. [Learn more about roles and required children elements](https://dequeuniversity.com/rules/axe/4.8/aria-required-children).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"focusable-controls": {
"id": "focusable-controls",
"title": "Interactive controls are keyboard focusable",
"description": "Custom interactive controls are keyboard focusable and display a focus indicator. [Learn how to make custom controls focusable](https://developer.chrome.com/docs/lighthouse/accessibility/focusable-controls/).",
"score": null,
"scoreDisplayMode": "manual"
},
"bypass": {
"id": "bypass",
"title": "The page contains a heading, skip link, or landmark region",
"description": "Adding ways to bypass repetitive content lets keyboard users navigate the page more efficiently. [Learn more about bypass blocks](https://dequeuniversity.com/rules/axe/4.8/bypass).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"form-field-multiple-labels": {
"id": "form-field-multiple-labels",
"title": "No form fields have multiple labels",
"description": "Form fields with multiple labels can be confusingly announced by assistive technologies like screen readers which use either the first, the last, or all of the labels. [Learn how to use form labels](https://dequeuniversity.com/rules/axe/4.8/form-field-multiple-labels).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"accesskeys": {
"id": "accesskeys",
"title": "`[accesskey]` values are unique",
"description": "Access keys let users quickly focus a part of the page. For proper navigation, each access key must be unique. [Learn more about access keys](https://dequeuniversity.com/rules/axe/4.8/accesskeys).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"list": {
"id": "list",
"title": "Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).",
"description": "Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. [Learn more about proper list structure](https://dequeuniversity.com/rules/axe/4.8/list).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"type": "table",
"items": []
}
},
"td-has-header": {
"id": "td-has-header",
"title": "`<td>` elements in a large `<table>` have one or more table headers.",
"description": "Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. [Learn more about table headers](https://dequeuniversity.com/rules/axe/4.8/td-has-header).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"meta-viewport": {
"id": "meta-viewport",
"title": "`[user-scalable=\"no\"]` is not used in the `<meta name=\"viewport\">` element and the `[maximum-scale]` attribute is not less than 5.",
"description": "Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. [Learn more about the viewport meta tag](https://dequeuniversity.com/rules/axe/4.8/meta-viewport).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"items": [],
"type": "table"
}
},
"aria-text": {
"id": "aria-text",
"title": "Elements with the `role=text` attribute do not have focusable descendents.",
"description": "Adding `role=text` around a text node split by markup enables VoiceOver to treat it as one phrase, but the element's focusable descendents will not be announced. [Learn more about the `role=text` attribute](https://dequeuniversity.com/rules/axe/4.8/aria-text).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"focus-traps": {
"id": "focus-traps",
"title": "User focus is not accidentally trapped in a region",
"description": "A user can tab into and out of any control or region without accidentally trapping their focus. [Learn how to avoid focus traps](https://developer.chrome.com/docs/lighthouse/accessibility/focus-traps/).",
"score": null,
"scoreDisplayMode": "manual"
},
"aria-progressbar-name": {
"id": "aria-progressbar-name",
"title": "ARIA `progressbar` elements have accessible names",
"description": "When a `progressbar` element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to label `progressbar` elements](https://dequeuniversity.com/rules/axe/4.8/aria-progressbar-name).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"identical-links-same-purpose": {
"id": "identical-links-same-purpose",
"title": "Identical links have the same purpose.",
"description": "Links with the same destination should have the same description, to help users understand the link's purpose and decide whether to follow it. [Learn more about identical links](https://dequeuniversity.com/rules/axe/4.8/identical-links-same-purpose).",
"score": null,
"scoreDisplayMode": "informative",
"details": {
"items": [
{
"subItems": {
"type": "subitems",
"items": [
{
"relatedNode": {
"selector": "div.row > div.col-md-6 > p > a",
"nodeLabel": "Map",
"path": "1,HTML,1,BODY,7,FOOTER,0,DIV,2,DIV,1,DIV,1,DIV,0,DIV,2,P,7,A",
"snippet": "<a href=\"https://www.google.com/maps/place/Sanderheinrichsleitenweg%2020%0A97074%20…\" target=\"_blank\">",
"lhId": "1-18-A",
"boundingRect": {
"right": 738,
"width": 30,
"top": 2525,
"left": 708,
"bottom": 2544,
"height": 19
},
"type": "node"
}
}
]
},
"node": {
"nodeLabel": "Map",
"path": "1,HTML,1,BODY,7,FOOTER,0,DIV,2,DIV,0,DIV,1,DIV,0,DIV,2,P,7,A",
"snippet": "<a href=\"https://www.google.com/maps/place/M%C3%BCnzstra%C3%9Fe%2012%0A97070%20W%C3…\" target=\"_blank\">",
"selector": "div.row > div.col-md-6 > p > a",
"lhId": "1-17-A",
"explanation": "Fix all of the following:\n Check that links have the same purpose, or are intentionally ambiguous.",
"type": "node",
"boundingRect": {
"right": 153,
"top": 2525,
"height": 19,
"width": 30,
"left": 123,
"bottom": 2544
}
}
}
],
"debugData": {
"impact": "minor",
"type": "debugdata",
"tags": [
"cat.semantics",
"wcag2aaa",
"wcag249"
]
},
"headings": [
{
"label": "Failing Elements",
"key": "node",
"valueType": "node",
"subItemsHeading": {
"key": "relatedNode",
"valueType": "node"
}
}
],
"type": "table"
}
},
"managed-focus": {
"id": "managed-focus",
"title": "The user's focus is directed to new content added to the page",
"description": "If new content, such as a dialog, is added to the page, the user's focus is directed to it. [Learn how to direct focus to new content](https://developer.chrome.com/docs/lighthouse/accessibility/managed-focus/).",
"score": null,
"scoreDisplayMode": "manual"
},
"custom-controls-labels": {
"id": "custom-controls-labels",
"title": "Custom controls have associated labels",
"description": "Custom interactive controls have associated labels, provided by aria-label or aria-labelledby. [Learn more about custom controls and labels](https://developer.chrome.com/docs/lighthouse/accessibility/custom-controls-labels/).",
"score": null,
"scoreDisplayMode": "manual"
},
"document-title": {
"id": "document-title",
"title": "Document has a `<title>` element",
"description": "The title gives screen reader users an overview of the page, and search engine users rely on it heavily to determine if a page is relevant to their search. [Learn more about document titles](https://dequeuniversity.com/rules/axe/4.8/document-title).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"items": [],
"type": "table"
}
},
"th-has-data-cells": {
"id": "th-has-data-cells",
"title": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` have data cells they describe.",
"description": "Screen readers have features to make navigating tables easier. Ensuring table headers always refer to some set of cells may improve the experience for screen reader users. [Learn more about table headers](https://dequeuniversity.com/rules/axe/4.8/th-has-data-cells).",
"score": null,
"scoreDisplayMode": "notApplicable"
},
"image-alt": {
"id": "image-alt",
"title": "Image elements have `[alt]` attributes",
"description": "Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.8/image-alt).",
"score": 1,
"scoreDisplayMode": "binary",
"details": {
"headings": [],
"type": "table",
"items": []
}
},
"color-contrast": {
"id": "color-contrast",
"title": "Background and foreground colors do not have a sufficient contrast ratio.",
"description": "Low-contrast text is difficult or impossible for many users to read. [Learn how to provide sufficient color contrast](https://dequeuniversity.com/rules/axe/4.8/color-contrast).",
"score": 0,
"scoreDisplayMode": "binary",
"details": {
"items": [
{
"node": {
"lhId": "1-4-H2",
"explanation": "Fix any of the following:\n Element has insufficient color contrast of 2.92 (foreground color: #ee750d, background color: #ffffff, font size: 19.5pt (26px), font weight: normal). Expected contrast ratio of 3:1",
"path": "1,HTML,1,BODY,6,DIV,0,DIV,1,MAIN,4,H2",
"nodeLabel": "What’s it about?",
"snippet": "<h2>",
"boundingRect": {
"height": 34,
"top": 592,
"right": 1245,
"bottom": 626,
"left": 398,
"width": 848
},
"selector": "div.container > div.row > main.col-md-9 > h2",
"type": "node"
},
"subItems": {
"items": [