summaryrefslogtreecommitdiff
path: root/test/data/validator/attributes.test
blob: 2815976bff806cb5e2a66e012380f1538e87a758 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
{"tests": [

{"description": "allowed 'class' attribute on <span>",
"input": "<span class>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'contenteditable' attribute on <span>",
"input": "<span contenteditable>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'contextmenu' attribute on <span>",
"input": "<span contextmenu>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'dir' attribute on <span>",
"input": "<span dir>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'draggable' attribute on <span>",
"input": "<span draggable>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'id' attribute on <span>",
"input": "<span id>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'irrelevant' attribute on <span>",
"input": "<span irrelevant>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'lang' attribute on <span>",
"input": "<span lang>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ref' attribute on <span>",
"input": "<span ref>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'tabindex' attribute on <span>",
"input": "<span tabindex>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'template' attribute on <span>",
"input": "<span template>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'title' attribute on <span>",
"input": "<span title>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onabort' attribute on <span>",
"input": "<span onabort>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onbeforeunload' attribute on <span>",
"input": "<span onbeforeunload>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onblur' attribute on <span>",
"input": "<span onblur>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onchange' attribute on <span>",
"input": "<span onchange>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onclick' attribute on <span>",
"input": "<span onclick>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'oncontextmenu' attribute on <span>",
"input": "<span oncontextmenu>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondblclick' attribute on <span>",
"input": "<span ondblclick>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondrag' attribute on <span>",
"input": "<span ondrag>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondragend' attribute on <span>",
"input": "<span ondragend>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondragenter' attribute on <span>",
"input": "<span ondragenter>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondragleave' attribute on <span>",
"input": "<span ondragleave>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondragover' attribute on <span>",
"input": "<span ondragover>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondragstart' attribute on <span>",
"input": "<span ondragstart>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ondrop' attribute on <span>",
"input": "<span ondrop>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onerror' attribute on <span>",
"input": "<span onerror>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onfocus' attribute on <span>",
"input": "<span onfocus>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onkeydown' attribute on <span>",
"input": "<span onkeydown>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onkeypress' attribute on <span>",
"input": "<span onkeypress>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onkeyup' attribute on <span>",
"input": "<span onkeyup>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onload' attribute on <span>",
"input": "<span onload>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmessage' attribute on <span>",
"input": "<span onmessage>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmousedown' attribute on <span>",
"input": "<span onmousedown>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmousemove' attribute on <span>",
"input": "<span onmousemove>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmouseout' attribute on <span>",
"input": "<span onmouseout>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmouseover' attribute on <span>",
"input": "<span onmouseover>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmouseup' attribute on <span>",
"input": "<span onmouseup>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onmousewheel' attribute on <span>",
"input": "<span onmousewheel>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onresize' attribute on <span>",
"input": "<span onresize>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onscroll' attribute on <span>",
"input": "<span onscroll>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onselect' attribute on <span>",
"input": "<span onselect>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onsubmit' attribute on <span>",
"input": "<span onsubmit>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onunload' attribute on <span>",
"input": "<span onunload>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <command>",
"input": "<command type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'label' attribute on <command>",
"input": "<command label>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'icon' attribute on <command>",
"input": "<command icon>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'hidden' attribute on <command>",
"input": "<command hidden>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <command>",
"input": "<command disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'checked' attribute on <command>",
"input": "<command checked>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'radiogroup' attribute on <command>",
"input": "<command radiogroup>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'default' attribute on <command>",
"input": "<command default>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'value' attribute on <meter>",
"input": "<meter value>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'min' attribute on <meter>",
"input": "<meter min>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'low' attribute on <meter>",
"input": "<meter low>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'high' attribute on <meter>",
"input": "<meter high>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'max' attribute on <meter>",
"input": "<meter max>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'optimum' attribute on <meter>",
"input": "<meter optimum>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'cite' attribute on <ins>",
"input": "<ins cite>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'datetime' attribute on <ins>",
"input": "<ins datetime>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'multiple' attribute on <datagrid>",
"input": "<datagrid multiple>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <datagrid>",
"input": "<datagrid disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <meta>",
"input": "<meta name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'http-equiv' attribute on <meta>",
"input": "<meta http-equiv>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'content' attribute on <meta>",
"input": "<meta content>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'charset' attribute on <meta>",
"input": "<meta charset>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <video>",
"input": "<video src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'autoplay' attribute on <video>",
"input": "<video autoplay>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'start' attribute on <video>",
"input": "<video start>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'loopstart' attribute on <video>",
"input": "<video loopstart>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'loopend' attribute on <video>",
"input": "<video loopend>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'end' attribute on <video>",
"input": "<video end>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'loopcount' attribute on <video>",
"input": "<video loopcount>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'controls' attribute on <video>",
"input": "<video controls>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'style' attribute on <font>",
"input": "<font style>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'media' attribute on <style>",
"input": "<style media>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <style>",
"input": "<style type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'scoped' attribute on <style>",
"input": "<style scoped>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'alt' attribute on <img>",
"input": "<img alt>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <img>",
"input": "<img src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'usemap' attribute on <img>",
"input": "<img usemap>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ismap' attribute on <img>",
"input": "<img ismap>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'height' attribute on <img>",
"input": "<img height>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'width' attribute on <img>",
"input": "<img width>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'alt' attribute on <area>",
"input": "<area alt>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'coords' attribute on <area>",
"input": "<area coords>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'shape' attribute on <area>",
"input": "<area shape>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'href' attribute on <area>",
"input": "<area href>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'target' attribute on <area>",
"input": "<area target>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ping' attribute on <area>",
"input": "<area ping>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'rel' attribute on <area>",
"input": "<area rel>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'media' attribute on <area>",
"input": "<area media>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'hreflang' attribute on <area>",
"input": "<area hreflang>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <area>",
"input": "<area type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <menu>",
"input": "<menu type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'label' attribute on <menu>",
"input": "<menu label>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'autosubmit' attribute on <menu>",
"input": "<menu autosubmit>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <param>",
"input": "<param name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'value' attribute on <param>",
"input": "<param value>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'value' attribute on <li>",
"input": "<li value>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <source>",
"input": "<source src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <source>",
"input": "<source type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'media' attribute on <source>",
"input": "<source media>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'xmlns' attribute on <html>",
"input": "<html xmlns>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'open' attribute on <details>",
"input": "<details open>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'colspan' attribute on <th>",
"input": "<th colspan>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'rowspan' attribute on <th>",
"input": "<th rowspan>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'scope' attribute on <th>",
"input": "<th scope>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'value' attribute on <progress>",
"input": "<progress value>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'max' attribute on <progress>",
"input": "<progress max>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'colspan' attribute on <td>",
"input": "<td colspan>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'rowspan' attribute on <td>",
"input": "<td rowspan>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'cite' attribute on <blockquote>",
"input": "<blockquote cite>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'data' attribute on <object>",
"input": "<object data>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <object>",
"input": "<object type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'usemap' attribute on <object>",
"input": "<object usemap>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'height' attribute on <object>",
"input": "<object height>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'width' attribute on <object>",
"input": "<object width>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'height' attribute on <canvas>",
"input": "<canvas height>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'width' attribute on <canvas>",
"input": "<canvas width>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'href' attribute on <base>",
"input": "<base href>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'target' attribute on <base>",
"input": "<base target>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'href' attribute on <link>",
"input": "<link href>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'rel' attribute on <link>",
"input": "<link rel>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'media' attribute on <link>",
"input": "<link media>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'hreflang' attribute on <link>",
"input": "<link hreflang>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <link>",
"input": "<link type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'href' attribute on <a>",
"input": "<a href>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'target' attribute on <a>",
"input": "<a target>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'ping' attribute on <a>",
"input": "<a ping>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'rel' attribute on <a>",
"input": "<a rel>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'media' attribute on <a>",
"input": "<a media>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'hreflang' attribute on <a>",
"input": "<a hreflang>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <a>",
"input": "<a type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <event-source>",
"input": "<event-source src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'start' attribute on <ol>",
"input": "<ol start>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'span' attribute on <colgroup>",
"input": "<colgroup span>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <script>",
"input": "<script src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'defer' attribute on <script>",
"input": "<script defer>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'async' attribute on <script>",
"input": "<script async>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <script>",
"input": "<script type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'cite' attribute on <q>",
"input": "<q cite>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'cite' attribute on <del>",
"input": "<del cite>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'datetime' attribute on <del>",
"input": "<del datetime>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <iframe>",
"input": "<iframe src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'datetime' attribute on <time>",
"input": "<time datetime>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'src' attribute on <audio>",
"input": "<audio src>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'autoplay' attribute on <audio>",
"input": "<audio autoplay>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'start' attribute on <audio>",
"input": "<audio start>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'loopstart' attribute on <audio>",
"input": "<audio loopstart>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'loopend' attribute on <audio>",
"input": "<audio loopend>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'end' attribute on <audio>",
"input": "<audio end>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'loopcount' attribute on <audio>",
"input": "<audio loopcount>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'controls' attribute on <audio>",
"input": "<audio controls>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'span' attribute on <col>",
"input": "<col span>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <fieldset>",
"input": "<fieldset disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'form' attribute on <fieldset>",
"input": "<fieldset form>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onsubmit' attribute on <form>",
"input": "<form onsubmit>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <form>",
"input": "<form name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onreset' attribute on <form>",
"input": "<form onreset>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'accept' attribute on <form>",
"input": "<form accept>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'replace' attribute on <form>",
"input": "<form replace>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'accept-charset' attribute on <form>",
"input": "<form accept-charset>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'action' attribute on <form>",
"input": "<form action>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'data' attribute on <form>",
"input": "<form data>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'method' attribute on <form>",
"input": "<form method>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'enctype' attribute on <form>",
"input": "<form enctype>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'rows' attribute on <textarea>",
"input": "<textarea rows>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <textarea>",
"input": "<textarea name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'form' attribute on <textarea>",
"input": "<textarea form>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'required' attribute on <textarea>",
"input": "<textarea required>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'cols' attribute on <textarea>",
"input": "<textarea cols>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'accept' attribute on <textarea>",
"input": "<textarea accept>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <textarea>",
"input": "<textarea disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'readonly' attribute on <textarea>",
"input": "<textarea readonly>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'wrap' attribute on <textarea>",
"input": "<textarea wrap>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'autofocus' attribute on <textarea>",
"input": "<textarea autofocus>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'maxlength' attribute on <textarea>",
"input": "<textarea maxlength>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'a' attribute on <datalist>",
"input": "<datalist a>",
"fail-unless": "unknown-attribute"},

{"description": "allowed 'd' attribute on <datalist>",
"input": "<datalist d>",
"fail-unless": "unknown-attribute"},

{"description": "allowed 't' attribute on <datalist>",
"input": "<datalist t>",
"fail-unless": "unknown-attribute"},

{"description": "allowed 'action' attribute on <button>",
"input": "<button action>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'enctype' attribute on <button>",
"input": "<button enctype>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'method' attribute on <button>",
"input": "<button method>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'replace' attribute on <button>",
"input": "<button replace>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'template' attribute on <button>",
"input": "<button template>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <button>",
"input": "<button name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'form' attribute on <button>",
"input": "<button form>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'value' attribute on <button>",
"input": "<button value>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <button>",
"input": "<button disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'autofocus' attribute on <button>",
"input": "<button autofocus>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'type' attribute on <button>",
"input": "<button type>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'accesskey' attribute on <label>",
"input": "<label accesskey>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'form' attribute on <label>",
"input": "<label form>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'for' attribute on <label>",
"input": "<label for>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <optgroup>",
"input": "<optgroup disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'label' attribute on <optgroup>",
"input": "<optgroup label>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onforminput' attribute on <output>",
"input": "<output onforminput>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'onformchange' attribute on <output>",
"input": "<output onformchange>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <output>",
"input": "<output name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'form' attribute on <output>",
"input": "<output form>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'for' attribute on <output>",
"input": "<output for>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'multiple' attribute on <select>",
"input": "<select multiple>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'name' attribute on <select>",
"input": "<select name>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'form' attribute on <select>",
"input": "<select form>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'accesskey' attribute on <select>",
"input": "<select accesskey>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <select>",
"input": "<select disabled>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'autofocus' attribute on <select>",
"input": "<select autofocus>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'data' attribute on <select>",
"input": "<select data>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'size' attribute on <select>",
"input": "<select size>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'selected' attribute on <option>",
"input": "<option selected>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'value' attribute on <option>",
"input": "<option value>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'label' attribute on <option>",
"input": "<option label>",
"fail-if": "unknown-attribute"},

{"description": "allowed 'disabled' attribute on <option>",
"input": "<option disabled>",
"fail-if": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <command>",
"input": "<command foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <meter>",
"input": "<meter foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <ins>",
"input": "<ins foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <datagrid>",
"input": "<datagrid foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <meta>",
"input": "<meta foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <video>",
"input": "<video foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <font>",
"input": "<font foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <style>",
"input": "<style foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <img>",
"input": "<img foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <area>",
"input": "<area foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <menu>",
"input": "<menu foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <param>",
"input": "<param foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <li>",
"input": "<li foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <source>",
"input": "<source foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <html>",
"input": "<html foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <details>",
"input": "<details foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <th>",
"input": "<th foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <progress>",
"input": "<progress foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <td>",
"input": "<td foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <blockquote>",
"input": "<blockquote foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <object>",
"input": "<object foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <canvas>",
"input": "<canvas foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <base>",
"input": "<base foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <link>",
"input": "<link foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <a>",
"input": "<a foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <event-source>",
"input": "<event-source foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <ol>",
"input": "<ol foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <colgroup>",
"input": "<colgroup foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <script>",
"input": "<script foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <q>",
"input": "<q foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <del>",
"input": "<del foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <iframe>",
"input": "<iframe foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <time>",
"input": "<time foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <audio>",
"input": "<audio foo>",
"fail-unless": "unknown-attribute"},

{"description": "unknown 'foo' attribute on <col>",
"input": "<col foo>",
"fail-unless": "unknown-attribute"},

{"description": "missing required 'href' attribute on <link>",
"input": "<link rel>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'rel' attribute on <link>",
"input": "<link href>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'dir' attribute on <bdo>",
"input": "<bdo>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'src' attribute on <img>",
"input": "<img>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'src' attribute on <embed>",
"input": "<embed>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'name' attribute on <param>",
"input": "<param value>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'value' attribute on <param>",
"input": "<param name>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'src' attribute on <source>",
"input": "<source>",
"fail-unless": "missing-required-attribute"},

{"description": "missing required 'id' attribute on <map>",
"input": "<map>",
"fail-unless": "missing-required-attribute"}

]}