-
Notifications
You must be signed in to change notification settings - Fork 8
/
output.json
3499 lines (3499 loc) · 101 KB
/
output.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
{
"status": "FAIL",
"errors": [
{
"line": 121,
"column": 52,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
},
{
"line": 126,
"column": 196,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
},
{
"line": 127,
"column": 189,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
},
{
"line": 145,
"column": 174,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
},
{
"line": 179,
"column": 195,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
},
{
"line": 205,
"column": 184,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
},
{
"line": 224,
"column": 181,
"message": "I (italic) element used.",
"solution": "Replace your i elements with em or strong."
}
],
"potentialProblems": [
{
"line": 31,
"column": 3,
"message": "Title might not describe the document.",
"source": "The White House | whitehouse.gov"
},
{
"line": 53,
"column": 3,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_oCVMDTeSNt-_QxknevWyf6yO5Oz ..."
},
{
"line": 53,
"column": 3,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_oCVMDTeSNt-_QxknevWyf6yO5Oz ..."
},
{
"line": 53,
"column": 3,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_oCVMDTeSNt-_QxknevWyf6yO5Oz ..."
},
{
"line": 54,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_tnoWH5WZ3v9klnPMMF8AWWM_SOc ..."
},
{
"line": 54,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_tnoWH5WZ3v9klnPMMF8AWWM_SOc ..."
},
{
"line": 54,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_tnoWH5WZ3v9klnPMMF8AWWM_SOc ..."
},
{
"line": 55,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_O43wZusCLVxKBDz0JAUAdyBxb3o ..."
},
{
"line": 55,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_O43wZusCLVxKBDz0JAUAdyBxb3o ..."
},
{
"line": 55,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_O43wZusCLVxKBDz0JAUAdyBxb3o ..."
},
{
"line": 56,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_uGQ35h9Qy6VM3CieC5-ZXDiiq2x ..."
},
{
"line": 56,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_uGQ35h9Qy6VM3CieC5-ZXDiiq2x ..."
},
{
"line": 56,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_uGQ35h9Qy6VM3CieC5-ZXDiiq2x ..."
},
{
"line": 57,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src="
},
{
"line": 57,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src="
},
{
"line": 57,
"column": 1,
"message": "Script may use color alone.",
"source": "script src="
},
{
"line": 58,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_ct24UWMWPKKo5bnlJvoY3cpH2AQ ..."
},
{
"line": 58,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_ct24UWMWPKKo5bnlJvoY3cpH2AQ ..."
},
{
"line": 58,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_ct24UWMWPKKo5bnlJvoY3cpH2AQ ..."
},
{
"line": 59,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "var _gaq = _gaq || [];_gaq.push([, _gat._anonymiz ..."
},
{
"line": 59,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "var _gaq = _gaq || [];_gaq.push([, _gat._anonymiz ..."
},
{
"line": 59,
"column": 1,
"message": "Script may use color alone.",
"source": "var _gaq = _gaq || [];_gaq.push([, _gat._anonymiz ..."
},
{
"line": 60,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_8KucECgZs_ocOAnIzSvUrPjF1I3 ..."
},
{
"line": 60,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_8KucECgZs_ocOAnIzSvUrPjF1I3 ..."
},
{
"line": 60,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_8KucECgZs_ocOAnIzSvUrPjF1I3 ..."
},
{
"line": 61,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_BnLp98TAFdrK4aTBmEXyC9rHYtf ..."
},
{
"line": 61,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_BnLp98TAFdrK4aTBmEXyC9rHYtf ..."
},
{
"line": 61,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_BnLp98TAFdrK4aTBmEXyC9rHYtf ..."
},
{
"line": 62,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_S4ZZGC9DHcaMDgTpvRN7MBcmXkz ..."
},
{
"line": 62,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_S4ZZGC9DHcaMDgTpvRN7MBcmXkz ..."
},
{
"line": 62,
"column": 1,
"message": "Script may use color alone.",
"source": "script src=https://www.whitehouse.gov/sites/whitehouse.gov/files/js/js_S4ZZGC9DHcaMDgTpvRN7MBcmXkz ..."
},
{
"line": 63,
"column": 1,
"message": "Script user interface may not be accessible.",
"source": "jQuery.extend(Drupal.settings, {fo ..."
},
{
"line": 63,
"column": 1,
"message": "Script may cause screen flicker.",
"source": "jQuery.extend(Drupal.settings, {fo ..."
},
{
"line": 63,
"column": 1,
"message": "Script may use color alone.",
"source": "jQuery.extend(Drupal.settings, {fo ..."
},
{
"line": 68,
"column": 1,
"message": "Dir attribute may be required to identify changes in text direction.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Words or phrases that are not in the document's primary language may not be identified.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Text may refer to items by shape, size, or relative position alone.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Long quotations may not be marked using the blockquote element.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Unicode right-to-left marks or left-to-right marks may be required.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Groups of links with a related purpose are not marked.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Repeated components may not appear in the same relative order each time they appear.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Site missing site map.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Visual lists may not be properly marked.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 68,
"column": 1,
"message": "Document may be missing a skip to content link.",
"source": "body class=html not-front not-logged-in no-sidebars page-node page-node- page-node-5596 node-type- ..."
},
{
"line": 70,
"column": 7,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=element-invisible element-focusableJump ..."
},
{
"line": 70,
"column": 7,
"message": "Link text may not be meaningful.",
"source": "a href= class=element-invisible element-focusableJump ..."
},
{
"line": 102,
"column": 206,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=Contact the Whitehouse. class=Conta ..."
},
{
"line": 102,
"column": 206,
"message": "Link text may not be meaningful.",
"source": "a href= title=Contact the Whitehouse. class=Conta ..."
},
{
"line": 103,
"column": 187,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=Get Email Updates. class=Get ..."
},
{
"line": 103,
"column": 187,
"message": "Link text may not be meaningful.",
"source": "a href= title=Get Email Updates. class=Get ..."
},
{
"line": 114,
"column": 3,
"message": "Anchor text may not identify the link destination.",
"source": "a href= rel= id= title=img src=https://www.whitehouse.gov/profiles/forall/m ..."
},
{
"line": 114,
"column": 3,
"message": "Link text may not be meaningful.",
"source": "a href= rel= id= title=img src=https://www.whitehouse.gov/profiles/forall/m ..."
},
{
"line": 114,
"column": 49,
"message": "Image may contain text that is not in Alt text.",
"source": "img src=https://www.whitehouse.gov/profiles/forall/modules/custom/gov_whitehouse_www/images/icons/ ..."
},
{
"line": 114,
"column": 49,
"message": "Alt text is not empty and image may be decorative.",
"source": "img src=https://www.whitehouse.gov/profiles/forall/modules/custom/gov_whitehouse_www/images/icons/ ..."
},
{
"line": 114,
"column": 49,
"message": "Img element may require a long description.",
"source": "img src=https://www.whitehouse.gov/profiles/forall/modules/custom/gov_whitehouse_www/images/icons/ ..."
},
{
"line": 114,
"column": 49,
"message": "Image may be using color alone.",
"source": "img src=https://www.whitehouse.gov/profiles/forall/modules/custom/gov_whitehouse_www/images/icons/ ..."
},
{
"line": 114,
"column": 49,
"message": "Image may contain text with poor contrast.",
"source": "img src=https://www.whitehouse.gov/profiles/forall/modules/custom/gov_whitehouse_www/images/icons/ ..."
},
{
"line": 121,
"column": 7,
"message": "Anchor text may not identify the link destination.",
"source": "a href= role='tab' id=i class=fa fa-bars"
},
{
"line": 121,
"column": 7,
"message": "Link text may not be meaningful.",
"source": "a href= role='tab' id=i class=fa fa-bars"
},
{
"line": 126,
"column": 142,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=i class='fa fa-angle-down'"
},
{
"line": 126,
"column": 142,
"message": "Link text may not be meaningful.",
"source": "a href= class=i class='fa fa-angle-down'"
},
{
"line": 127,
"column": 130,
"message": "Anchor text may not identify the link destination.",
"source": "a href=Briefing Roomi class='fa fa-angle-down'"
},
{
"line": 127,
"column": 130,
"message": "Link text may not be meaningful.",
"source": "a href=Briefing Roomi class='fa fa-angle-down'"
},
{
"line": 127,
"column": 674,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=Read the latest blog posts from 1600 Pennsylvania Ave c ..."
},
{
"line": 127,
"column": 674,
"message": "Link text may not be meaningful.",
"source": "a href= title=Read the latest blog posts from 1600 Pennsylvania Ave c ..."
},
{
"line": 128,
"column": 151,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=Check out the most popular infographics and videos cla ..."
},
{
"line": 128,
"column": 151,
"message": "Link text may not be meaningful.",
"source": "a href= title=Check out the most popular infographics and videos cla ..."
},
{
"line": 129,
"column": 150,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=View the photo of the day and other galleries class= ..."
},
{
"line": 129,
"column": 150,
"message": "Link text may not be meaningful.",
"source": "a href= title=View the photo of the day and other galleries class= ..."
},
{
"line": 130,
"column": 190,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=Watch behind-the-scenes videos and more class=menu-fe ..."
},
{
"line": 130,
"column": 190,
"message": "Link text may not be meaningful.",
"source": "a href= title=Watch behind-the-scenes videos and more class=menu-fe ..."
},
{
"line": 131,
"column": 150,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=Tune in to White House events and statements as they happen class=menu-feat ..."
},
{
"line": 131,
"column": 150,
"message": "Link text may not be meaningful.",
"source": "a href= title=Tune in to White House events and statements as they happen class=menu-feat ..."
},
{
"line": 132,
"column": 156,
"message": "Anchor text may not identify the link destination.",
"source": "a href= title=See the lineup of artists and performers at the ..."
},
{
"line": 132,
"column": 156,
"message": "Link text may not be meaningful.",
"source": "a href= title=See the lineup of artists and performers at the ..."
},
{
"line": 134,
"column": 377,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Your Weekly Address ..."
},
{
"line": 134,
"column": 377,
"message": "Link text may not be meaningful.",
"source": "a href= class=Your Weekly Address ..."
},
{
"line": 135,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Speeches ..."
},
{
"line": 135,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Speeches ..."
},
{
"line": 136,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Press Briefings"
},
{
"line": 136,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class=Press Briefings"
},
{
"line": 137,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Statements ..."
},
{
"line": 137,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Statements ..."
},
{
"line": 138,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=White House Schedule"
},
{
"line": 138,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class=White House Schedule"
},
{
"line": 139,
"column": 160,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Presidential A ..."
},
{
"line": 139,
"column": 160,
"message": "Link text may not be meaningful.",
"source": "a href= class=Presidential A ..."
},
{
"line": 140,
"column": 159,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 140,
"column": 159,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 141,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Nomina ..."
},
{
"line": 141,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Nomina ..."
},
{
"line": 142,
"column": 141,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Disclos ..."
},
{
"line": 142,
"column": 141,
"message": "Link text may not be meaningful.",
"source": "a href= class=Disclos ..."
},
{
"line": 145,
"column": 129,
"message": "Anchor text may not identify the link destination.",
"source": "a href=i class='fa fa-angle-down'"
},
{
"line": 145,
"column": 129,
"message": "Link text may not be meaningful.",
"source": "a href=i class='fa fa-angle-down'"
},
{
"line": 145,
"column": 639,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=2015 State of the Union"
},
{
"line": 145,
"column": 639,
"message": "Link text may not be meaningful.",
"source": "a href= class=2015 State of the Union"
},
{
"line": 146,
"column": 138,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=2014: The Year in Review"
},
{
"line": 146,
"column": 138,
"message": "Link text may not be meaningful.",
"source": "a href= class=2014: The Year in Review"
},
{
"line": 147,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Immigration ..."
},
{
"line": 147,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Immigration ..."
},
{
"line": 148,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Raise the Wage"
},
{
"line": 148,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Raise the Wage"
},
{
"line": 149,
"column": 141,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=See All"
},
{
"line": 149,
"column": 141,
"message": "Link text may not be meaningful.",
"source": "a href= class=See All"
},
{
"line": 151,
"column": 360,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 151,
"column": 360,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 152,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 152,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 153,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Foreign Policy"
},
{
"line": 153,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class=Foreign Policy"
},
{
"line": 154,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Health Care"
},
{
"line": 154,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Health Care"
},
{
"line": 155,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 155,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 156,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Climate Change"
},
{
"line": 156,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Climate Change"
},
{
"line": 157,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Energy and Environment"
},
{
"line": 157,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Energy and Environment"
},
{
"line": 158,
"column": 142,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Civil Rights"
},
{
"line": 158,
"column": 142,
"message": "Link text may not be meaningful.",
"source": "a href= class=Civil Rights"
},
{
"line": 160,
"column": 353,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 160,
"column": 353,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 161,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 161,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 162,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 162,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 163,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Equal Pay"
},
{
"line": 163,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class=Equal Pay"
},
{
"line": 164,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Homeland Security"
},
{
"line": 164,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class=Homeland Security"
},
{
"line": 165,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 165,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 166,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 166,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 167,
"column": 142,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 167,
"column": 142,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 169,
"column": 359,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Seniors ..."
},
{
"line": 169,
"column": 359,
"message": "Link text may not be meaningful.",
"source": "a href= class=Seniors ..."
},
{
"line": 170,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 170,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 171,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 171,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 172,
"column": 138,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 172,
"column": 138,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 173,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Urban and Econ ..."
},
{
"line": 173,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class=Urban and Econ ..."
},
{
"line": 174,
"column": 137,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 174,
"column": 137,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 175,
"column": 136,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Violence Preventio ..."
},
{
"line": 175,
"column": 136,
"message": "Link text may not be meaningful.",
"source": "a href= class=Violence Preventio ..."
},
{
"line": 176,
"column": 142,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class="
},
{
"line": 176,
"column": 142,
"message": "Link text may not be meaningful.",
"source": "a href= class="
},
{
"line": 179,
"column": 130,
"message": "Anchor text may not identify the link destination.",
"source": "a href=The Administrationi class='fa fa-angle-down'/a ..."
},
{
"line": 179,
"column": 130,
"message": "Link text may not be meaningful.",
"source": "a href=The Administrationi class='fa fa-angle-down'/a ..."
},
{
"line": 179,
"column": 638,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=President Barack Obama"
},
{
"line": 179,
"column": 638,
"message": "Link text may not be meaningful.",
"source": "a href= class=President Barack Obama"
},
{
"line": 180,
"column": 138,
"message": "Anchor text may not identify the link destination.",
"source": "a href= class=Vice President Joe Biden"
},
{
"line": 180,
"column": 138,
"message": "Link text may not be meaningful.",
"source": "a href= class=Vice President Joe Biden"