/[suikacvs]/markup/html/whatpm/t/content-model-2.dat
Suika

Contents of /markup/html/whatpm/t/content-model-2.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.24 - (show annotations) (download)
Tue Oct 23 11:32:57 2007 UTC (18 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.23: +0 -3 lines
++ whatpm/t/ChangeLog	23 Oct 2007 11:31:04 -0000
2007-10-23  Wakaba  <wakaba@suika.fam.cx>

	* content-model-2.dat: <script async defer> is now conforming (HTML5
	revision 1085).

++ whatpm/Whatpm/ContentChecker/ChangeLog	23 Oct 2007 11:25:14 -0000
2007-10-23  Wakaba  <wakaba@suika.fam.cx>

	* HTML.pm: Make <script async defer> conforming (HTML5
	revision 1085).

1 #data
2 <unknown u1=""></unknown>
3 #errors
4 /unknown;element;unsupported
5 /unknown/@u1;attribute;unsupported
6
7 #data
8 <unknown u1="" u2=""></unknown>
9 #errors
10 /unknown;element;unsupported
11 /unknown/@u1;attribute;unsupported
12 /unknown/@u2;attribute;unsupported
13
14 #data
15 <unknown u1="" xmlns=""></unknown>
16 #errors
17 /unknown;element;unsupported
18 /unknown/@u1;attribute;unsupported
19
20 #data
21 <unknown xml:lang="!" xmlns=""></unknown>
22 #errors
23 /unknown;element;unsupported
24 /unknown/@lang;LangTag:nosemantics:language;m
25 /unknown/@lang;LangTag:syntax:illegal;m
26
27 #data
28 <unknown u1="" xml:lang="!" xmlns=""></unknown>
29 #errors
30 /unknown;element;unsupported
31 /unknown/@lang;LangTag:nosemantics:language;m
32 /unknown/@lang;LangTag:syntax:illegal;m
33 /unknown/@u1;attribute;unsupported
34
35 #data
36 <unknown u1="" xmlns="http://www.w3.org/1999/xhtml"></unknown>
37 #errors
38 /unknown;element;unsupported
39 /unknown/@u1;attribute;unsupported
40
41 #data
42 <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
43 #errors
44 /unknown;element;unsupported
45 /unknown/@lang;syntax error
46 /unknown/@u1;attribute;unsupported
47
48 #data
49 <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
50 #errors
51 /unknown;element;unsupported
52 /unknown/@lang;syntax error
53 /unknown/@u1;attribute;unsupported
54
55 #data
56 <p xmlns="http://www.w3.org/1999/xhtml"
57 a:b="" xmlns:a="http://www.example.test/"/>
58 #errors
59 /p/@b;attribute;unsupported
60
61 #data
62 <p xmlns="http://www.w3.org/1999/xhtml"
63 id=""></p>
64 #errors
65 /p/@id;empty attribute value
66
67 #data
68 <p xmlns="http://www.w3.org/1999/xhtml"
69 id="a"></p>
70 #errors
71
72 #data
73 <p xmlns="http://www.w3.org/1999/xhtml"
74 id=" "></p>
75 #errors
76 /p/@id;space in ID
77
78 #data
79 <p xmlns="http://www.w3.org/1999/xhtml"
80 id="&#x9;"></p>
81 #errors
82 /p/@id;space in ID
83
84 #data
85 <p xmlns="http://www.w3.org/1999/xhtml"
86 id="&#xA;"></p>
87 #errors
88 /p/@id;space in ID
89
90 #data
91 <?xml version="1.1"?>
92 <p xmlns="http://www.w3.org/1999/xhtml"
93 id="&#xB;"></p>
94 #errors
95 /p/@id;space in ID
96
97 #data
98 <?xml version="1.1"?>
99 <p xmlns="http://www.w3.org/1999/xhtml"
100 id="&#xC;"></p>
101 #errors
102 /p/@id;space in ID
103
104 #data
105 <p xmlns="http://www.w3.org/1999/xhtml"
106 id="&#xD;"></p>
107 #errors
108 /p/@id;space in ID
109
110 #data
111 <p xmlns="http://www.w3.org/1999/xhtml"
112 id="a "></p>
113 #errors
114 /p/@id;space in ID
115
116 #data
117 <p xmlns="http://www.w3.org/1999/xhtml"
118 id="a b"></p>
119 #errors
120 /p/@id;space in ID
121
122 #data
123 <p xmlns="http://www.w3.org/1999/xhtml"
124 id="aaaaaaa"></p>
125 #errors
126
127 #data
128 <p xmlns="http://www.w3.org/1999/xhtml"
129 id="a"><span id="a"></span></p>
130 #errors
131 /p/span/@id;duplicate ID
132
133 #data
134 <p xmlns="http://www.w3.org/1999/xhtml"
135 id="a b"><span id="a b"></span></p>
136 #errors
137 /p/@id;space in ID
138 /p/span/@id;duplicate ID
139 /p/span/@id;space in ID
140
141 #data
142 <p xmlns="http://www.w3.org/1999/xhtml"
143 id=""><span id=""></span></p>
144 #errors
145 /p/@id;empty attribute value
146 /p/span/@id;empty attribute value
147
148 #data
149 <p xmlns="http://www.w3.org/1999/xhtml">
150 <span id="a"/>
151 <span id="b"/>
152 <span id="c"/>
153 </p>
154 #errors
155
156 #data
157 <p xmlns="http://www.w3.org/1999/xhtml">
158 <span id="a "/>
159 <span id=" a"/>
160 <span id=" a "/>
161 </p>
162 #errors
163 /p/span/@id;space in ID
164 /p/span/@id;space in ID
165 /p/span/@id;space in ID
166
167 #data
168 <p xmlns="http://www.w3.org/1999/xhtml">
169 <span id="i"/>
170 <span id="I"/>
171 <span id="&#x0131;"/>
172 </p>
173 #errors
174
175 #data
176 <p title="" xmlns="http://www.w3.org/1999/xhtml"/>
177 #errors
178
179 #data
180 <p title="a" xmlns="http://www.w3.org/1999/xhtml"/>
181 #errors
182
183 #data
184 <p title="AAAAAA" xmlns="http://www.w3.org/1999/xhtml"/>
185 #errors
186
187 #data
188 <p title="XXXX&#x0A;YYYY" xmlns="http://www.w3.org/1999/xhtml"/>
189 #errors
190
191 #data
192 <p title="" xmlns="http://www.w3.org/1999/xhtml"/>
193 #errors
194
195 #data
196 <p title="AAA" xmlns="http://www.w3.org/1999/xhtml">
197 <span title="BBB"/>
198 </p>
199 #errors
200
201 #data
202 <p lang="" xmlns="http://www.w3.org/1999/xhtml"/>
203 #errors
204 /p/@lang;in XML:lang
205
206 #data
207 <p xml:lang="" xmlns="http://www.w3.org/1999/xhtml"/>
208 #errors
209
210 #data html
211 <!DOCTYPE HTML><title></title><p xml:lang=""></p>
212 #errors
213 /html/body/p/@xml:lang;in HTML:xml:lang
214
215 #data
216 <p dir="" xmlns="http://www.w3.org/1999/xhtml"/>
217 #errors
218 /p/@dir;enumerated:invalid
219
220 #data
221 <p dir="ltr" xmlns="http://www.w3.org/1999/xhtml"/>
222 #errors
223
224 #data
225 <p dir=" ltr" xmlns="http://www.w3.org/1999/xhtml"/>
226 #errors
227 /p/@dir;enumerated:invalid
228
229 #data
230 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml"/>
231 #errors
232 /p/@dir;enumerated:invalid
233
234 #data
235 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
236 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml"/>
237 #errors
238
239 #data
240 <?xml version="1.1"?>
241 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
242 <p dir="ltr&#x0C;" xmlns="http://www.w3.org/1999/xhtml"/>
243 #errors
244 /p/@dir;enumerated:invalid
245
246 #data
247 <p dir="LTR" xmlns="http://www.w3.org/1999/xhtml"/>
248 #errors
249
250 #data
251 <p dir="LtR" xmlns="http://www.w3.org/1999/xhtml"/>
252 #errors
253
254 #data
255 <p dir="rtl" xmlns="http://www.w3.org/1999/xhtml"/>
256 #errors
257
258 #data
259 <p dir="Rtl" xmlns="http://www.w3.org/1999/xhtml"/>
260 #errors
261
262 #data
263 <p dir="rtltr" xmlns="http://www.w3.org/1999/xhtml"/>
264 #errors
265 /p/@dir;enumerated:invalid
266
267 #data
268 <p dir="XXXXXX" xmlns="http://www.w3.org/1999/xhtml"/>
269 #errors
270 /p/@dir;enumerated:invalid
271
272 #data
273 <p class="" xmlns="http://www.w3.org/1999/xhtml"/>
274 #errors
275
276 #data
277 <p class=" " xmlns="http://www.w3.org/1999/xhtml"/>
278 #errors
279
280 #data
281 <?xml version="1.1"?>
282 <p class="&#xD;&#xB;" xmlns="http://www.w3.org/1999/xhtml"/>
283 #errors
284
285 #data
286 <p class="a b c d ef g h" xmlns="http://www.w3.org/1999/xhtml"/>
287 #errors
288
289 #data
290 <?xml version="1.1"?>
291 <p class=" a b c d &#xC; efg h &#xC;" xmlns="http://www.w3.org/1999/xhtml"/>
292 #errors
293
294 #data
295 <p class="a a" xmlns="http://www.w3.org/1999/xhtml"/>
296 #errors
297 /p/@class;duplicate token:a
298
299 #data
300 <?xml version="1.1"?>
301 <p class=" aa&#xC; aa" xmlns="http://www.w3.org/1999/xhtml"/>
302 #errors
303 /p/@class;duplicate token:aa
304
305 #data
306 <p class="a a a" xmlns="http://www.w3.org/1999/xhtml"/>
307 #errors
308 /p/@class;duplicate token:a
309 /p/@class;duplicate token:a
310
311 #data
312 <p class="I i &#x0131;" xmlns="http://www.w3.org/1999/xhtml"/>
313 #errors
314
315 #data
316 <p irrelevant="" xmlns="http://www.w3.org/1999/xhtml"/>
317 #errors
318
319 #data
320 <p irrelevant=" " xmlns="http://www.w3.org/1999/xhtml"/>
321 #errors
322 /p/@irrelevant;boolean:invalid
323
324 #data
325 <p irrelevant="irrelevant" xmlns="http://www.w3.org/1999/xhtml"/>
326 #errors
327
328 #data
329 <p irrelevant=" irrelevant" xmlns="http://www.w3.org/1999/xhtml"/>
330 #errors
331 /p/@irrelevant;boolean:invalid
332
333 #data
334 <p irrelevant="irrelevant " xmlns="http://www.w3.org/1999/xhtml"/>
335 #errors
336 /p/@irrelevant;boolean:invalid
337
338 #data
339 <p irrelevant=" irrelevant " xmlns="http://www.w3.org/1999/xhtml"/>
340 #errors
341 /p/@irrelevant;boolean:invalid
342
343 #data
344 <p irrelevant="Irrelevant" xmlns="http://www.w3.org/1999/xhtml"/>
345 #errors
346 /p/@irrelevant;boolean:invalid
347
348 #data
349 <p irrelevant="IRRELEVANT" xmlns="http://www.w3.org/1999/xhtml"/>
350 #errors
351 /p/@irrelevant;boolean:invalid
352
353 #data
354 <p irrelevant="relevant" xmlns="http://www.w3.org/1999/xhtml"/>
355 #errors
356 /p/@irrelevant;boolean:invalid
357
358 #data
359 <p irrelevant="irrelevants" xmlns="http://www.w3.org/1999/xhtml"/>
360 #errors
361 /p/@irrelevant;boolean:invalid
362
363 #data
364 <p irrelevant="false" xmlns="http://www.w3.org/1999/xhtml"/>
365 #errors
366 /p/@irrelevant;boolean:invalid
367
368 #data
369 <p irrelevant="true" xmlns="http://www.w3.org/1999/xhtml"/>
370 #errors
371 /p/@irrelevant;boolean:invalid
372
373 #data
374 <p irrelevant="yes" xmlns="http://www.w3.org/1999/xhtml"/>
375 #errors
376 /p/@irrelevant;boolean:invalid
377
378 #data
379 <p irrelevant="on" xmlns="http://www.w3.org/1999/xhtml"/>
380 #errors
381 /p/@irrelevant;boolean:invalid
382
383 #data
384 <p tabindex="-1" xmlns="http://www.w3.org/1999/xhtml"/>
385 #errors
386
387 #data
388 <p tabindex="0" xmlns="http://www.w3.org/1999/xhtml"/>
389 #errors
390
391 #data
392 <p tabindex="1" xmlns="http://www.w3.org/1999/xhtml"/>
393 #errors
394
395 #data
396 <p tabindex="10000" xmlns="http://www.w3.org/1999/xhtml"/>
397 #errors
398
399 #data
400 <p tabindex="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
401 #errors
402 /p/@tabindex;integer:syntax error
403
404 #data
405 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml"/>
406 #errors
407 /p/@tabindex;integer:syntax error
408
409 #data
410 <p tabindex="1 " xmlns="http://www.w3.org/1999/xhtml"/>
411 #errors
412 /p/@tabindex;integer:syntax error
413
414 #data
415 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml"/>
416 #errors
417 /p/@tabindex;integer:syntax error
418
419 #data
420 <p onabort="alert(1);" xmlns="http://www.w3.org/1999/xhtml"/>
421 #errors
422 /p/@onabort;event handler;unsupported
423
424 #data
425 <p onbeforeunload="alert(1);" xmlns="http://www.w3.org/1999/xhtml"/>
426 #errors
427 /p/@onbeforeunload;event handler;unsupported
428
429 #data
430 <p onblur="alert(1);" xmlns="http://www.w3.org/1999/xhtml"/>
431 #errors
432 /p/@onblur;event handler;unsupported
433
434 #data
435 <p onchange="alert(1);" xmlns="http://www.w3.org/1999/xhtml"/>
436 #errors
437 /p/@onchange;event handler;unsupported
438
439 #data
440 <p onclick="alert(1);" xmlns="http://www.w3.org/1999/xhtml"/>
441 #errors
442 /p/@onclick;event handler;unsupported
443
444 #data
445 <p onxxxx="alert(1);" xmlns="http://www.w3.org/1999/xhtml"/>
446 #errors
447 /p/@onxxxx;attribute;unsupported
448
449 #data html
450 <!DOCTYPE html>
451 <html>
452 <head><title></title></head>
453 <body></body>
454 </html>
455 #errors
456
457 #data html
458 <!DOCTYPE html>
459 <html xmlns="http://www.w3.org/1999/xhtml">
460 <head><title></title></head>
461 <body></body>
462 </html>
463 #errors
464
465 #data html
466 <!DOCTYPE html>
467 <html xmlns="">
468 <head><title></title></head>
469 <body></body>
470 </html>
471 #errors
472 /html/@xmlns;invalid attribute value
473
474 #data html
475 <!DOCTYPE html>
476 <html xmlns="http://www.w3.org/TR/xhtml1/strict">
477 <head><title></title></head>
478 <body></body>
479 </html>
480 #errors
481 /html/@xmlns;invalid attribute value
482
483 #data html
484 <!DOCTYPE html>
485 <html xmlns="http://www.w3.org/TR/REC-html40">
486 <head><title></title></head>
487 <body></body>
488 </html>
489 #errors
490 /html/@xmlns;invalid attribute value
491
492 #data html
493 <!DOCTYPE html>
494 <html xmlns=" http://www.w3.org/1999/xhtml ">
495 <head><title></title></head>
496 <body></body>
497 </html>
498 #errors
499 /html/@xmlns;invalid attribute value
500
501 #data html
502 <!DOCTYPE html>
503 <html xmlns="http://www.w3.org/1999/XHTML">
504 <head><title></title></head>
505 <body></body>
506 </html>
507 #errors
508 /html/@xmlns;invalid attribute value
509
510 #data html
511 <!DOCTYPE html>
512 <html xmlns="http://www.w3.org/1999/html">
513 <head><title></title></head>
514 <body></body>
515 </html>
516 #errors
517 /html/@xmlns;invalid attribute value
518
519 #data
520 <html xmlns="http://www.w3.org/1999/xhtml">
521 <head><title></title></head>
522 <body></body>
523 </html>
524 #errors
525
526 #data
527 <html xmlns="http://www.w3.org/1999/xhtml ">
528 <head><title></title></head>
529 <body></body>
530 </html>
531 #errors
532 /html;element;unsupported
533 /html/head;element;unsupported
534 /html/head/title;element;unsupported
535 /html/body;element;unsupported
536
537 #data html
538 <!DOCTYPE html>
539 <html>
540 <head xmlns="http://www.w3.org/1999/xhtml"><title></title></head>
541 <body></body>
542 </html>
543 #errors
544 /html/head/@xmlns;attribute;unsupported
545
546 #data
547 <head profile="http://www.test/" xmlns="http://www.w3.org/1999/xhtml">
548 <title/>
549 </head>
550 #errors
551 /head/@profile;attribute;unsupported
552
553 #data
554 <base xmlns="http://www.w3.org/1999/xhtml"/>
555 #errors
556
557 #data
558 <base href="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
559 #errors
560 /base/@href;URI::syntax error:iriref3987;m
561
562 #data
563 <base href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
564 #errors
565
566 #data
567 <base href="test" xmlns="http://www.w3.org/1999/xhtml"/>
568 #errors
569
570 #data
571 <base href="http://test/#a" xmlns="http://www.w3.org/1999/xhtml"/>
572 #errors
573
574 #data
575 <base href="http://test/" target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
576 #errors
577
578 #data
579 <base target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
580 #errors
581
582 #data
583 <base target="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
584 #errors
585 /base/@target;reserved browsing context name
586
587 #data
588 <base target="blank" xmlns="http://www.w3.org/1999/xhtml"/>
589 #errors
590
591 #data
592 <head xmlns="http://www.w3.org/1999/xhtml">
593 <link rel="stylesheet" href=""/>
594 <base href=""/>
595 <title/>
596 </head>
597 #errors
598 /head/base;element not allowed
599 /head/base;basehref after URI attribute
600
601 #data
602 <head xmlns="http://www.w3.org/1999/xhtml">
603 <base href=""/>
604 <link rel="stylesheet" href=""/>
605 <title/>
606 </head>
607 #errors
608
609 #data
610 <head xmlns="http://www.w3.org/1999/xhtml">
611 <link rel="stylesheet" href=""/>
612 <base target="_self"/>
613 <title/>
614 </head>
615 #errors
616 /head/base;element not allowed
617
618 #data
619 <head xmlns="http://www.w3.org/1999/xhtml">
620 <base target="_self"/>
621 <link rel="stylesheet" href=""/>
622 <title/>
623 </head>
624 #errors
625
626 #data
627 <head xmlns="http://www.w3.org/1999/xhtml">
628 <link rel="stylesheet" href=""/>
629 <base target="_self" href=""/>
630 <title/>
631 </head>
632 #errors
633 /head/base;element not allowed
634 /head/base;basehref after URI attribute
635
636 #data
637 <head xmlns="http://www.w3.org/1999/xhtml">
638 <base target="_self" href=""/>
639 <link rel="stylesheet" href=""/>
640 <title/>
641 </head>
642 #errors
643
644 #data
645 <head xmlns="http://www.w3.org/1999/xhtml">
646 <link rel="up" href=""/>
647 <base href=""/>
648 <title/>
649 </head>
650 #errors
651 /head/base;element not allowed
652 /head/base;basehref after URI attribute
653
654 #data
655 <head xmlns="http://www.w3.org/1999/xhtml">
656 <base href=""/>
657 <link rel="up" href=""/>
658 <title/>
659 </head>
660 #errors
661
662 #data
663 <head xmlns="http://www.w3.org/1999/xhtml">
664 <link rel="up" href=""/>
665 <base target="_self"/>
666 <title/>
667 </head>
668 #errors
669 /head/base;element not allowed
670 /head/base;basetarget after hyperlink
671
672 #data
673 <head xmlns="http://www.w3.org/1999/xhtml">
674 <base target="_self"/>
675 <link rel="up" href=""/>
676 <title/>
677 </head>
678 #errors
679
680 #data
681 <head xmlns="http://www.w3.org/1999/xhtml">
682 <link rel="up" href=""/>
683 <base target="_self" href=""/>
684 <title/>
685 </head>
686 #errors
687 /head/base;element not allowed
688 /head/base;basehref after URI attribute
689 /head/base;basetarget after hyperlink
690
691 #data
692 <head xmlns="http://www.w3.org/1999/xhtml">
693 <base target="_self" href=""/>
694 <link rel="up" href=""/>
695 <title/>
696 </head>
697 #errors
698
699 #data
700 <head xmlns="http://www.w3.org/1999/xhtml">
701 <link rel="alternate stylesheet" href=""/>
702 <base target="_self"/>
703 <title/>
704 </head>
705 #errors
706 /head/base;element not allowed
707
708 #data
709 <head xmlns="http://www.w3.org/1999/xhtml">
710 <link rel="stylesheet alternate" href=""/>
711 <base target="_self"/>
712 <title/>
713 </head>
714 #errors
715 /head/base;element not allowed
716
717 #data
718 <head xmlns="http://www.w3.org/1999/xhtml">
719 <link rel="alternate stylesheet stylesheet" href=""/>
720 <base target="_self"/>
721 <title/>
722 </head>
723 #errors
724 /head/base;element not allowed
725 /head/link/@rel;duplicate token:stylesheet
726
727 #data
728 <head xmlns="http://www.w3.org/1999/xhtml">
729 <link rel="alternate" type="application/atom+xml" href=""/>
730 <base target="_self"/>
731 <title/>
732 </head>
733 #errors
734 /head/base;element not allowed
735 /head/base;basetarget after hyperlink
736
737 #data
738 <head xmlns="http://www.w3.org/1999/xhtml">
739 <link rel="alternate up stylesheet" href=""/>
740 <base target="_self"/>
741 <title/>
742 </head>
743 #errors
744 /head/base;element not allowed
745 /head/base;basetarget after hyperlink
746
747 #data
748 <head xmlns="http://www.w3.org/1999/xhtml">
749 <link rel="up stylesheet" href=""/>
750 <base target="_self"/>
751 <title/>
752 </head>
753 #errors
754 /head/base;element not allowed
755 /head/base;basetarget after hyperlink
756
757 #data
758 <head xmlns="http://www.w3.org/1999/xhtml">
759 <a href=""/>
760 <base target="_self"/>
761 <title/>
762 </head>
763 #errors
764 /head/a;element not allowed
765 /head/base;basetarget after hyperlink
766
767 #data
768 <head xmlns="http://www.w3.org/1999/xhtml">
769 <area shape="default" href="" alt=""/>
770 <base target="_self"/>
771 <title/>
772 </head>
773 #errors
774 /head/area;element not allowed
775 /head/base;basetarget after hyperlink
776
777 #data
778 <head xmlns="http://www.w3.org/1999/xhtml">
779 <area shape="default" href="" alt=""/>
780 <base href=""/>
781 <title/>
782 </head>
783 #errors
784 /head/area;element not allowed
785 /head/base;basehref after URI attribute
786
787 #data
788 <head xmlns="http://www.w3.org/1999/xhtml">
789 <video src=""/>
790 <base href=""/>
791 <title/>
792 </head>
793 #errors
794 /head/video;element not allowed
795 /head/base;basehref after URI attribute
796
797 #data
798 <html xmlns="http://www.w3.org/1999/xhtml">
799 <head>
800 <base href=""/>
801 <title/>
802 </head>
803 <body>
804 <p><a href=""/></p>
805 </body>
806 </html>
807 #errors
808
809 #data
810 <link xmlns="http://www.w3.org/1999/xhtml"/>
811 #errors
812 /link;attribute missing:href
813 /link;attribute missing:rel
814
815 #data
816 <link href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
817 #errors
818 /link;attribute missing:rel
819
820 #data
821 <link rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
822 #errors
823 /link;attribute missing:href
824
825 #data
826 <link rel="stylesheet" href="http://www.test/"
827 xmlns="http://www.w3.org/1999/xhtml"/>
828 #errors
829
830 #data
831 <link rel="stylesheet" href="://www.test/"
832 xmlns="http://www.w3.org/1999/xhtml"/>
833 #errors
834 /link/@href;URI::syntax error:iriref3987;m
835
836 #data
837 <link rel="stylesheet" href="http://www.test/" type=""
838 xmlns="http://www.w3.org/1999/xhtml"/>
839 #errors
840 /link/@type;IMT:syntax error
841
842 #data
843 <link rel="stylesheet" href="http://www.test/" type="text"
844 xmlns="http://www.w3.org/1999/xhtml"/>
845 #errors
846 /link/@type;IMT:syntax error
847
848 #data
849 <link rel="stylesheet" href="http://www.test/" type="text/css"
850 xmlns="http://www.w3.org/1999/xhtml"/>
851 #errors
852
853 #data
854 <link rel="stylesheet" href="http://www.test/" type="TexT/CsS"
855 xmlns="http://www.w3.org/1999/xhtml"/>
856 #errors
857
858 #data
859 <link rel="stylesheet" href="http://www.test/" type="TEXT/CSS"
860 xmlns="http://www.w3.org/1999/xhtml"/>
861 #errors
862
863 #data
864 <link rel="stylesheet" href="http://www.test/" type="text/css; charset=utf-8"
865 xmlns="http://www.w3.org/1999/xhtml"/>
866 #errors
867
868 #data
869 <link rel="author" href="http://test/"
870 xmlns="http://www.w3.org/1999/xhtml"/>
871 #errors
872
873 #data
874 <link rel="author author" href="http://test/"
875 xmlns="http://www.w3.org/1999/xhtml"/>
876 #errors
877 /link/@rel;duplicate token:author
878
879 #data
880 <link rel="bookmark" href="http://test/"
881 xmlns="http://www.w3.org/1999/xhtml"/>
882 #errors
883 /link/@rel;link type:bad context:bookmark
884
885 #data
886 <link rel="previous" href="http://test/"
887 xmlns="http://www.w3.org/1999/xhtml"/>
888 #errors
889 /link/@rel;link type:non-conforming:previous
890
891 #data
892 <link rel="edit" href="http://test/"
893 xmlns="http://www.w3.org/1999/xhtml"/>
894 #errors
895 /link/@rel;link type:proposed:edit;s
896
897 #data
898 <link rel="script" href="http://test/"
899 xmlns="http://www.w3.org/1999/xhtml"/>
900 #errors
901 /link/@rel;link type:non-conforming:script
902
903 #data
904 <link rel="example-link-type" href="http://test/"
905 xmlns="http://www.w3.org/1999/xhtml"/>
906 #errors
907 /link/@rel;link type:example-link-type;unsupported
908
909 #data
910 <link rel="alternate stylesheet" href="http://test/" title=""
911 xmlns="http://www.w3.org/1999/xhtml"/>
912 #errors
913
914 #data
915 <link rel="author" href="http://test/" hreflang=""
916 xmlns="http://www.w3.org/1999/xhtml"/>
917 #errors
918 /link/@hreflang;LangTag:nosemantics:language;m
919
920 #data
921 <link rel="author" href="http://test/" hreflang="en"
922 xmlns="http://www.w3.org/1999/xhtml"/>
923 #errors
924
925 #data
926 <link media="all"
927 xmlns="http://www.w3.org/1999/xhtml"/>
928 #errors
929 /link;attribute missing:href
930 /link;attribute missing:rel
931 /link/@media;media query;unsupported
932
933 #data
934 <link rel="author" href="http://test/" media="all"
935 xmlns="http://www.w3.org/1999/xhtml"/>
936 #errors
937 /link/@media;media query;unsupported
938
939 #data
940 <link href="http://test/" rel="author" target="_self"
941 xmlns="http://www.w3.org/1999/xhtml"/>
942 #errors
943 /link/@target;attribute;unsupported
944
945 #data
946 <head xmlns="http://www.w3.org/1999/xhtml">
947 <link rel="pingback" href="a"/>
948 <link rel="pingback" href="b"/>
949 <title/>
950 </head>
951 #errors
952 /head/link/@rel;link type:duplicate:pingback
953
954 #data
955 <head xmlns="http://www.w3.org/1999/xhtml">
956 <link rel="pingback" href="a"/>
957 <link rel="pingback feed" href="b"/>
958 <title/>
959 </head>
960 #errors
961 /head/link/@rel;link type:duplicate:pingback
962
963 #data
964 <meta xmlns="http://www.w3.org/1999/xhtml">
965 <!-- TODO: <meta> tests are not complete -->
966 </meta>
967 #errors
968 /meta;attribute missing:name|http-equiv|charset
969
970 #data
971 <meta name="dns" xmlns="http://www.w3.org/1999/xhtml"/>
972 #errors
973 /meta;attribute missing:content
974
975 #data
976 <meta name="dns" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
977 #errors
978
979 #data
980 <meta charset="us-ascii" name="dns" content="example.net"
981 xmlns="http://www.w3.org/1999/xhtml"/>
982 #errors
983 /meta/@charset;attribute not allowed
984 /meta/@charset;in XML:charset
985
986 #data
987 <meta http-equiv="refresh" xmlns="http://www.w3.org/1999/xhtml"/>
988 #errors
989 /meta;attribute missing:content
990
991 #data
992 <meta http-equiv="refresh" content="10; a.html"
993 xmlns="http://www.w3.org/1999/xhtml"/>
994 #errors
995
996 #data
997 <meta http-equiv="refresh" content="10; a.html" name="dns"
998 xmlns="http://www.w3.org/1999/xhtml"/>
999 #errors
1000 /meta/@http-equiv;attribute not allowed
1001
1002 #data
1003 <meta http-equiv="refresh" content="10; a.html" charset="us-ascii"
1004 xmlns="http://www.w3.org/1999/xhtml"/>
1005 #errors
1006 /meta/@charset;attribute not allowed
1007 /meta/@charset;in XML:charset
1008
1009 #data
1010 <meta http-equiv="" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1011 #errors
1012 /meta/@http-equiv;enumerated:invalid
1013
1014 #data
1015 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1016 #errors
1017 /meta/@content;attribute not allowed
1018 /meta;attribute missing:name|http-equiv
1019
1020 #data
1021 <meta charset="us-ascii" content="example.net"
1022 xmlns="http://www.w3.org/1999/xhtml"/>
1023 #errors
1024 /meta/@content;attribute not allowed
1025 /meta/@charset;in XML:charset
1026
1027 #data
1028 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1029 #errors
1030 /meta/@content;attribute not allowed
1031 /meta;attribute missing:name|http-equiv
1032
1033 #data html
1034 <!DOCTYPE HTML><html><head><meta charset="us-ascii"><title></title></head><body>
1035 #errors
1036
1037 #data
1038 <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1039 #errors
1040 /meta/@charset;in XML:charset
1041
1042 #data
1043 <style type="" xmlns="http://www.w3.org/1999/xhtml"/>
1044 #errors
1045 /style/@type;IMT:syntax error
1046 /style;style:;unsupported
1047
1048 #data
1049 <style type="text" xmlns="http://www.w3.org/1999/xhtml"/>
1050 #errors
1051 /style/@type;IMT:syntax error
1052 /style;style:text;unsupported
1053
1054 #data
1055 <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
1056 #errors
1057 /style;style:text/css;unsupported
1058
1059 #data
1060 <style type="Text/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
1061 #errors
1062 /style;style:Text/CSS;unsupported
1063
1064 #data
1065 <style type="TEXT/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
1066 #errors
1067 /style;style:TEXT/CSS;unsupported
1068
1069 #data
1070 <style type="text/css; charset=us-ascii" xmlns="http://www.w3.org/1999/xhtml">
1071 <!-- NOTE: |charset| parameter here is meaningless (or harmful?),
1072 but syntactically correct. -->
1073 </style>
1074 #errors
1075 /style;style:text/css; charset=us-ascii;unsupported
1076
1077 #data
1078 <style media="all" xmlns="http://www.w3.org/1999/xhtml"/>
1079 #errors
1080 /style;style:text/css;unsupported
1081 /style/@media;media query;unsupported
1082
1083 #data
1084 <style media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
1085 #errors
1086 /style;style:text/css;unsupported
1087 /style/@media;media query;unsupported
1088
1089 #data
1090 <head xmlns="http://www.w3.org/1999/xhtml">
1091 <title/>
1092 <style scoped=""/>
1093 </head>
1094 #errors
1095 /head/style;element not allowed
1096 /head/style;style:text/css;unsupported
1097
1098 #data
1099 <article xmlns="http://www.w3.org/1999/xhtml">
1100 <style/>
1101 </article>
1102 #errors
1103 /article/style;element not allowed
1104 /article/style;style:text/css;unsupported
1105
1106 #data
1107 <article xmlns="http://www.w3.org/1999/xhtml">
1108 <style scoped=""/>
1109 </article>
1110 #errors
1111 /article/style;style:text/css;unsupported
1112
1113 #data
1114 <aside xmlns="http://www.w3.org/1999/xhtml">
1115 <style/>
1116 </aside>
1117 #errors
1118 /aside/style;element not allowed
1119 /aside/style;style:text/css;unsupported
1120
1121 #data
1122 <aside xmlns="http://www.w3.org/1999/xhtml">
1123 <style scoped=""/>
1124 </aside>
1125 #errors
1126 /aside/style;style:text/css;unsupported
1127
1128 #data
1129 <div xmlns="http://www.w3.org/1999/xhtml">
1130 <style/>
1131 </div>
1132 #errors
1133 /div/style;element not allowed
1134 /div/style;style:text/css;unsupported
1135
1136 #data
1137 <div xmlns="http://www.w3.org/1999/xhtml">
1138 <style scoped=""/>
1139 </div>
1140 #errors
1141 /div/style;style:text/css;unsupported
1142
1143 #data
1144 <section xmlns="http://www.w3.org/1999/xhtml">
1145 <style/>
1146 </section>
1147 #errors
1148 /section/style;element not allowed
1149 /section/style;style:text/css;unsupported
1150
1151 #data
1152 <section xmlns="http://www.w3.org/1999/xhtml">
1153 <style scoped=""/>
1154 </section>
1155 #errors
1156 /section/style;style:text/css;unsupported
1157
1158 #data
1159 <body text="red" xmlns="http://www.w3.org/1999/xhtml"/>
1160 #errors
1161 /body/@text;attribute;unsupported
1162
1163 #data
1164 <blockquote cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1165 #errors
1166
1167 #data
1168 <blockquote cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml"/>
1169 #errors
1170 /blockquote/@cite;URI::syntax error:iriref3987;m
1171
1172 #data
1173 <h1 align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1174 #errors
1175 /h1/@align;attribute;unsupported
1176
1177 #data
1178 <address align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1179 #errors
1180 /address/@align;attribute;unsupported
1181
1182 #data
1183 <p align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1184 #errors
1185 /p/@align;attribute;unsupported
1186
1187 #data
1188 <hr align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1189 #errors
1190 /hr/@align;attribute;unsupported
1191
1192 #data
1193 <br clear="left" xmlns="http://www.w3.org/1999/xhtml"/>
1194 #errors
1195 /br/@clear;attribute;unsupported
1196
1197 #data
1198 <dialog compact="" xmlns="http://www.w3.org/1999/xhtml"/>
1199 #errors
1200 /dialog/@compact;attribute;unsupported
1201
1202 #data
1203 <pre width="4" xmlns="http://www.w3.org/1999/xhtml"/>
1204 #errors
1205 /pre/@width;attribute;unsupported
1206
1207 #data
1208 <pre xml:space="preserve" xmlns="http://www.w3.org/1999/xhtml"/>
1209 #errors
1210
1211 #data
1212 <pre xml:space="default" xmlns="http://www.w3.org/1999/xhtml"/>
1213 #errors
1214
1215 #data
1216 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
1217 #errors
1218 /ol/@start;integer:syntax error
1219
1220 #data
1221 <ol start="0" xmlns="http://www.w3.org/1999/xhtml"/>
1222 #errors
1223
1224 #data
1225 <ol start="1" xmlns="http://www.w3.org/1999/xhtml"/>
1226 #errors
1227
1228 #data
1229 <ol start="2" xmlns="http://www.w3.org/1999/xhtml"/>
1230 #errors
1231
1232 #data
1233 <ol start="10" xmlns="http://www.w3.org/1999/xhtml"/>
1234 #errors
1235
1236 #data
1237 <ol start="-0" xmlns="http://www.w3.org/1999/xhtml"/>
1238 #errors
1239
1240 #data
1241 <ol start="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1242 #errors
1243
1244 #data
1245 <ol start="-10" xmlns="http://www.w3.org/1999/xhtml"/>
1246 #errors
1247
1248 #data
1249 <ol start="0000" xmlns="http://www.w3.org/1999/xhtml"/>
1250 #errors
1251
1252 #data
1253 <ol start="0001" xmlns="http://www.w3.org/1999/xhtml"/>
1254 #errors
1255
1256 #data
1257 <ol start="00001" xmlns="http://www.w3.org/1999/xhtml"/>
1258 #errors
1259
1260 #data
1261 <ol start="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
1262 #errors
1263
1264 #data
1265 <ol start="-100000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
1266 #errors
1267
1268 #data
1269 <ol start="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
1270 #errors
1271 /ol/@start;integer:syntax error
1272
1273 #data
1274 <ol start="-1.0" xmlns="http://www.w3.org/1999/xhtml"/>
1275 #errors
1276 /ol/@start;integer:syntax error
1277
1278 #data
1279 <ol start="+0" xmlns="http://www.w3.org/1999/xhtml"/>
1280 #errors
1281 /ol/@start;integer:syntax error
1282
1283 #data
1284 <ol start="+1" xmlns="http://www.w3.org/1999/xhtml"/>
1285 #errors
1286 /ol/@start;integer:syntax error
1287
1288 #data
1289 <ol start="-+1" xmlns="http://www.w3.org/1999/xhtml"/>
1290 #errors
1291 /ol/@start;integer:syntax error
1292
1293 #data
1294 <ol start="1aaa" xmlns="http://www.w3.org/1999/xhtml"/>
1295 #errors
1296 /ol/@start;integer:syntax error
1297
1298 #data
1299 <ol start="xxxxx" xmlns="http://www.w3.org/1999/xhtml"/>
1300 #errors
1301 /ol/@start;integer:syntax error
1302
1303 #data
1304 <ol start=" 1" xmlns="http://www.w3.org/1999/xhtml"/>
1305 #errors
1306 /ol/@start;integer:syntax error
1307
1308 #data
1309 <ol start="1 " xmlns="http://www.w3.org/1999/xhtml"/>
1310 #errors
1311 /ol/@start;integer:syntax error
1312
1313 #data
1314 <ol start=" 1 " xmlns="http://www.w3.org/1999/xhtml"/>
1315 #errors
1316 /ol/@start;integer:syntax error
1317
1318 #data
1319 <ol start="_1" xmlns="http://www.w3.org/1999/xhtml"/>
1320 #errors
1321 /ol/@start;integer:syntax error
1322
1323 #data
1324 <ol start="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
1325 #errors
1326 /ol/@start;integer:syntax error
1327
1328 #data
1329 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
1330 #errors
1331 /ol/@start;integer:syntax error
1332
1333 #data
1334 <ol start="&#x2212;1" xmlns="http://www.w3.org/1999/xhtml"/>
1335 #errors
1336 /ol/@start;integer:syntax error
1337
1338 #data
1339 <ol xmlns="http://www.w3.org/1999/xhtml">
1340 <li value=""/>
1341 </ol>
1342 #error
1343 /ol/li/@value;integer:syntax error
1344
1345 #data
1346 <ol xmlns="http://www.w3.org/1999/xhtml">
1347 <li value="1"/>
1348 </ol>
1349 #error
1350
1351 #data
1352 <ol xmlns="http://www.w3.org/1999/xhtml">
1353 <li value="0"/>
1354 </ol>
1355 #error
1356
1357 #data
1358 <ol xmlns="http://www.w3.org/1999/xhtml">
1359 <li value="-1"/>
1360 </ol>
1361 #error
1362
1363 #data
1364 <ol xmlns="http://www.w3.org/1999/xhtml">
1365 <li value="+1"/>
1366 </ol>
1367 #error
1368
1369 #data
1370 <ol xmlns="http://www.w3.org/1999/xhtml">
1371 <li value="xxx"/>
1372 </ol>
1373 #error
1374 /ol/li/@value;integer:syntax error
1375
1376 #data
1377 <ul xmlns="http://www.w3.org/1999/xhtml">
1378 <li value=""/>
1379 </ul>
1380 #error
1381 /ul/li/@value;attribute;unsupported
1382 /ul/li/@value;integer:syntax error
1383
1384 #data
1385 <ul xmlns="http://www.w3.org/1999/xhtml">
1386 <li value="1"/>
1387 </ul>
1388 #error
1389 /ul/li/@value;attribute;unsupported
1390
1391 #data
1392 <ul xmlns="http://www.w3.org/1999/xhtml">
1393 <li value="0"/>
1394 </ul>
1395 #error
1396 /ul/li/@value;attribute;unsupported
1397
1398 #data
1399 <ul xmlns="http://www.w3.org/1999/xhtml">
1400 <li value="-1"/>
1401 </ul>
1402 #error
1403 /ul/li/@value;attribute;unsupported
1404
1405 #data
1406 <ul xmlns="http://www.w3.org/1999/xhtml">
1407 <li value="+1"/>
1408 </ul>
1409 #error
1410 /ul/li/@value;attribute;unsupported
1411
1412 #data
1413 <ul xmlns="http://www.w3.org/1999/xhtml">
1414 <li value="xxx"/>
1415 </ul>
1416 #error
1417 /ul/li/@value;attribute;unsupported
1418 /ul/li/@value;integer:syntax error
1419
1420 #data
1421 <li value="" xmlns="http://www.w3.org/1999/xhtml"/>
1422 #error
1423 /li/@value;attribute;unsupported
1424 /li/@value;integer:syntax error
1425
1426 #data
1427 <li value="1" xmlns="http://www.w3.org/1999/xhtml"/>
1428 #error
1429 /li/@value;attribute;unsupported
1430
1431 #data
1432 <li value="0" xmlns="http://www.w3.org/1999/xhtml"/>
1433 #error
1434 /li/@value;attribute;unsupported
1435
1436 #data
1437 <li value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1438 #error
1439 /li/@value;attribute;unsupported
1440
1441 #data
1442 <li value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
1443 #error
1444 /li/@value;attribute;unsupported
1445
1446 #data
1447 <li value="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
1448 #error
1449 /li/@value;attribute;unsupported
1450 /li/@value;integer:syntax error
1451
1452 #data
1453 <dl compact="" xmlns="http://www.w3.org/1999/xhtml"/>
1454 #error
1455 /dl/@compact;attribute;unsupported
1456
1457 #data
1458 <a xmlns="http://www.w3.org/1999/xhtml"/>
1459 #errors
1460
1461 #data
1462 <a href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1463 #errors
1464
1465 #data
1466 <a href="http://test/[44::]/" xmlns="http://www.w3.org/1999/xhtml"/>
1467 #errors
1468 /a/@href;URI::syntax error:iriref3987;m
1469
1470 #data
1471 <a href="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
1472 #errors
1473 /a/@type;IMT:syntax error
1474
1475 #data
1476 <a href="http://test/" type="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
1477 #errors
1478
1479 #data
1480 <a href="http://test/" rel="" xmlns="http://www.w3.org/1999/xhtml"/>
1481 #errors
1482
1483 #data
1484 <a href="http://test/" rel="author contact"
1485 xmlns="http://www.w3.org/1999/xhtml"/>
1486 #errors
1487
1488 #data
1489 <a href="http://test/" rel="author author" xmlns="http://www.w3.org/1999/xhtml"/>
1490 #errors
1491 /a/@rel;duplicate token:author
1492
1493 #data
1494 <a href="http://test/" rel="bookmark" xmlns="http://www.w3.org/1999/xhtml"/>
1495 #errors
1496
1497 #data
1498 <a href="http://test/" rel="previous" xmlns="http://www.w3.org/1999/xhtml"/>
1499 #errors
1500 /a/@rel;link type:non-conforming:previous
1501
1502 #data
1503 <a href="http://test/" rel="edit" xmlns="http://www.w3.org/1999/xhtml"/>
1504 #errors
1505 /a/@rel;link type:proposed:edit;s
1506
1507 #data
1508 <a href="http://test/" rel="script" xmlns="http://www.w3.org/1999/xhtml"/>
1509 #errors
1510 /a/@rel;link type:non-conforming:script
1511
1512 #data
1513 <a href="http://test/" rel="stylesheet" xmlns="http://www.w3.org/1999/xhtml"/>
1514 #errors
1515 /a/@rel;link type:bad context:stylesheet
1516
1517 #data
1518 <a href="http://test/" rel="test-type" xmlns="http://www.w3.org/1999/xhtml"/>
1519 #errors
1520 /a/@rel;link type:test-type;unsupported
1521
1522 #data
1523 <a href="http://test/" ping="http://a.test/"
1524 xmlns="http://www.w3.org/1999/xhtml"/>
1525 #errors
1526
1527 #data
1528 <a href="http://test/" ping="http://a.test/ http://b.test/"
1529 xmlns="http://www.w3.org/1999/xhtml"/>
1530 #errors
1531
1532 #data
1533 <a href="http://test/" ping="http://a.test/ [b.test]"
1534 xmlns="http://www.w3.org/1999/xhtml"/>
1535 #errors
1536 /a/@ping;URIs::syntax error:iriref3987:1;m
1537
1538 #data
1539 <a href="http://test/" hreflang=""
1540 xmlns="http://www.w3.org/1999/xhtml"/>
1541 #errors
1542 /a/@hreflang;LangTag:nosemantics:language;m
1543
1544 #data
1545 <a href="http://test/" hreflang="en"
1546 xmlns="http://www.w3.org/1999/xhtml"/>
1547 #errors
1548
1549 #data
1550 <a href="http://test/" media="all"
1551 xmlns="http://www.w3.org/1999/xhtml"/>
1552 #errors
1553 /a/@media;media query;unsupported
1554
1555 #data
1556 <a href="http://test/" target="_self"
1557 xmlns="http://www.w3.org/1999/xhtml"/>
1558 #errors
1559
1560 #data
1561 <a href="http://test/" target="_parent"
1562 xmlns="http://www.w3.org/1999/xhtml"/>
1563 #errors
1564
1565 #data
1566 <a href="http://test/" target="_top"
1567 xmlns="http://www.w3.org/1999/xhtml"/>
1568 #errors
1569
1570 #data
1571 <a href="http://test/" target="_Top"
1572 xmlns="http://www.w3.org/1999/xhtml"/>
1573 #errors
1574
1575 #data
1576 <a href="http://test/" target="_TOP"
1577 xmlns="http://www.w3.org/1999/xhtml"/>
1578 #errors
1579
1580 #data
1581 <a href="http://test/" target="_blank"
1582 xmlns="http://www.w3.org/1999/xhtml"/>
1583 #errors
1584 /a/@target;reserved browsing context name
1585
1586 #data
1587 <a href="http://test/" target="_main"
1588 xmlns="http://www.w3.org/1999/xhtml"/>
1589 #errors
1590 /a/@target;reserved browsing context name
1591
1592 #data
1593 <a href="http://test/" target="abcde"
1594 xmlns="http://www.w3.org/1999/xhtml"/>
1595 #errors
1596
1597 #data
1598 <a href="http://test/" target="_"
1599 xmlns="http://www.w3.org/1999/xhtml"/>
1600 #errors
1601 /a/@target;reserved browsing context name
1602
1603 #data
1604 <a type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
1605 #errors
1606 /a/@type;attribute not allowed
1607
1608 #data
1609 <a rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
1610 #errors
1611 /a/@rel;attribute not allowed
1612
1613 #data
1614 <a ping="a" xmlns="http://www.w3.org/1999/xhtml"/>
1615 #errors
1616 /a/@ping;attribute not allowed
1617
1618 #data
1619 <a hreflang="en" xmlns="http://www.w3.org/1999/xhtml"/>
1620 #errors
1621 /a/@hreflang;attribute not allowed
1622
1623 #data
1624 <a media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
1625 #errors
1626 /a/@media;attribute not allowed
1627 /a/@media;media query;unsupported
1628
1629 #data
1630 <a target="_self"
1631 xmlns="http://www.w3.org/1999/xhtml"/>
1632 #errors
1633 /a/@target;attribute not allowed
1634
1635 #data
1636 <p xmlns="http://www.w3.org/1999/xhtml">
1637 <b><a href=""/></b>
1638 <i><a type="text/plain"/></i>
1639 </p>
1640 #errors
1641 /p/i/a/@type;attribute not allowed
1642
1643 #data
1644 <q cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1645 #errors
1646
1647 #data
1648 <q cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml"/>
1649 #errors
1650 /q/@cite;URI::syntax error:iriref3987;m
1651
1652 #data
1653 <meter value="" xmlns="http://www.w3.org/1999/xhtml"/>
1654 #errors
1655 /meter/@value;float:syntax error
1656
1657 #data
1658 <meter value="1" xmlns="http://www.w3.org/1999/xhtml"/>
1659 #errors
1660
1661 #data
1662 <meter value="111" xmlns="http://www.w3.org/1999/xhtml"/>
1663 #errors
1664
1665 #data
1666 <meter value="0001" xmlns="http://www.w3.org/1999/xhtml"/>
1667 #errors
1668
1669 #data
1670 <meter value="0" xmlns="http://www.w3.org/1999/xhtml"/>
1671 #errors
1672
1673 #data
1674 <meter value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1675 #errors
1676
1677 #data
1678 <meter value="-1000" xmlns="http://www.w3.org/1999/xhtml"/>
1679 #errors
1680
1681 #data
1682 <meter value="-0" xmlns="http://www.w3.org/1999/xhtml"/>
1683 #errors
1684
1685 #data
1686 <meter value="0000" xmlns="http://www.w3.org/1999/xhtml"/>
1687 #errors
1688
1689 #data
1690 <meter value="0.1" xmlns="http://www.w3.org/1999/xhtml"/>
1691 #errors
1692
1693 #data
1694 <meter value="1.1" xmlns="http://www.w3.org/1999/xhtml"/>
1695 #errors
1696
1697 #data
1698 <meter value=".1" xmlns="http://www.w3.org/1999/xhtml"/>
1699 #errors
1700
1701 #data
1702 <meter value=".0" xmlns="http://www.w3.org/1999/xhtml"/>
1703 #errors
1704
1705 #data
1706 <meter value="1." xmlns="http://www.w3.org/1999/xhtml"/>
1707 #errors
1708
1709 #data
1710 <meter value="1.0000" xmlns="http://www.w3.org/1999/xhtml"/>
1711 #errors
1712
1713 #data
1714 <meter value="123." xmlns="http://www.w3.org/1999/xhtml"/>
1715 #errors
1716
1717 #data
1718 <meter value="-.1" xmlns="http://www.w3.org/1999/xhtml"/>
1719 #errors
1720
1721 #data
1722 <meter value="-1." xmlns="http://www.w3.org/1999/xhtml"/>
1723 #errors
1724
1725 #data
1726 <meter value="1aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1727 #errors
1728 /meter/@value;float:syntax error
1729
1730 #data
1731 <meter value="1&#x0D;" xmlns="http://www.w3.org/1999/xhtml"/>
1732 #errors
1733 /meter/@value;float:syntax error
1734
1735 #data
1736 <meter value="1&#x0A;" xmlns="http://www.w3.org/1999/xhtml"/>
1737 #errors
1738 /meter/@value;float:syntax error
1739
1740 #data
1741 <meter value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1742 #errors
1743 /meter/@value;float:syntax error
1744
1745 #data
1746 <meter value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
1747 #errors
1748 /meter/@value;float:syntax error
1749
1750 #data
1751 <meter value="+1.2" xmlns="http://www.w3.org/1999/xhtml"/>
1752 #errors
1753 /meter/@value;float:syntax error
1754
1755 #data
1756 <meter value=".-1" xmlns="http://www.w3.org/1999/xhtml"/>
1757 #errors
1758 /meter/@value;float:syntax error
1759
1760 #data
1761 <meter value="0.-1" xmlns="http://www.w3.org/1999/xhtml"/>
1762 #errors
1763 /meter/@value;float:syntax error
1764
1765 #data
1766 <meter value="." xmlns="http://www.w3.org/1999/xhtml"/>
1767 #errors
1768 /meter/@value;float:syntax error
1769
1770 #data
1771 <meter min="2" xmlns="http://www.w3.org/1999/xhtml"/>
1772 #errors
1773
1774 #data
1775 <meter min="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1776 #errors
1777 /meter/@min;float:syntax error
1778
1779 #data
1780 <meter low="2" xmlns="http://www.w3.org/1999/xhtml"/>
1781 #errors
1782
1783 #data
1784 <meter low="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1785 #errors
1786 /meter/@low;float:syntax error
1787
1788 #data
1789 <meter high="2" xmlns="http://www.w3.org/1999/xhtml"/>
1790 #errors
1791
1792 #data
1793 <meter high="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1794 #errors
1795 /meter/@high;float:syntax error
1796
1797 #data
1798 <meter max="2" xmlns="http://www.w3.org/1999/xhtml"/>
1799 #errors
1800
1801 #data
1802 <meter max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1803 #errors
1804 /meter/@max;float:syntax error
1805
1806 #data
1807 <meter optimum="2" xmlns="http://www.w3.org/1999/xhtml"/>
1808 #errors
1809
1810 #data
1811 <meter optimum="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1812 #errors
1813 /meter/@optimum;float:syntax error
1814
1815 #data
1816 <meter min="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
1817 #errors
1818
1819 #data
1820 <meter value="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
1821 #errors
1822
1823 #data
1824 <progress max="2" xmlns="http://www.w3.org/1999/xhtml"/>
1825 #errors
1826
1827 #data
1828 <progress max="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
1829 #errors
1830
1831 #data
1832 <progress max="0" xmlns="http://www.w3.org/1999/xhtml"/>
1833 #errors
1834 /progress/@max;float:out of range
1835
1836 #data
1837 <progress max="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1838 #errors
1839 /progress/@max;float:out of range
1840
1841 #data
1842 <progress max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1843 #errors
1844 /progress/@max;float:syntax error
1845
1846 #data
1847 <progress value="2" xmlns="http://www.w3.org/1999/xhtml"/>
1848 #errors
1849
1850 #data
1851 <progress value="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
1852 #errors
1853
1854 #data
1855 <progress value="0" xmlns="http://www.w3.org/1999/xhtml"/>
1856 #errors
1857
1858 #data
1859 <progress value="100" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
1860 #errors
1861
1862 #data
1863 <progress value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1864 #errors
1865 /progress/@value;float:out of range
1866
1867 #data
1868 <progress value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
1869 #errors
1870 /progress/@value;float:syntax error
1871
1872 #data
1873 <bdo xmlns="http://www.w3.org/1999/xhtml"/>
1874 #errors
1875 /bdo;attribute missing:dir
1876
1877 #data
1878 <bdo dir="ltr" xmlns="http://www.w3.org/1999/xhtml"/>
1879 #errors
1880
1881 #data
1882 <bdo dir="rtl" xmlns="http://www.w3.org/1999/xhtml"/>
1883 #errors
1884
1885 #data
1886 <bdo dir="RTL" xmlns="http://www.w3.org/1999/xhtml"/>
1887 #errors
1888
1889 #data
1890 <bdo dir="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
1891 #errors
1892 /bdo/@dir;enumerated:invalid
1893
1894 #data
1895 <ins cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1896 #errors
1897
1898 #data
1899 <ins cite="http://test/100%/" xmlns="http://www.w3.org/1999/xhtml"/>
1900 #errors
1901 /ins/@cite;URI::syntax error:iriref3987;m
1902
1903 #data
1904 <ins xmlns="http://www.w3.org/1999/xhtml"
1905 datetime=""/>
1906 #errors
1907 /ins/@datetime;datetime:syntax error
1908
1909 #data
1910 <ins xmlns="http://www.w3.org/1999/xhtml"
1911 datetime="2007-05"/>
1912 #errors
1913 /ins/@datetime;datetime:syntax error
1914
1915 #data
1916 <ins xmlns="http://www.w3.org/1999/xhtml"
1917 datetime="2007-06"/>
1918 #errors
1919 /ins/@datetime;datetime:syntax error
1920
1921 #data
1922 <ins xmlns="http://www.w3.org/1999/xhtml"
1923 datetime="2007-08-09"/>
1924 #errors
1925 /ins/@datetime;datetime:syntax error
1926
1927 #data
1928 <ins xmlns="http://www.w3.org/1999/xhtml"
1929 datetime="2007-09-10T00:12"/>
1930 #errors
1931 /ins/@datetime;datetime:syntax error
1932
1933 #data
1934 <ins xmlns="http://www.w3.org/1999/xhtml"
1935 datetime="2007-09-23T33:34:23"/>
1936 #errors
1937 /ins/@datetime;datetime:syntax error
1938
1939 #data
1940 <ins xmlns="http://www.w3.org/1999/xhtml"
1941 datetime="2007-04-31T33:11:00+09"/>
1942 #errors
1943 /ins/@datetime;datetime:syntax error
1944
1945 #data
1946 <ins xmlns="http://www.w3.org/1999/xhtml"
1947 datetime="0037-12-13 00:00 Z"/>
1948 #errors
1949
1950 #data
1951 <ins xmlns="http://www.w3.org/1999/xhtml"
1952 datetime="1979-10-14T12:00:00.001-04:00"/>
1953 #errors
1954
1955 #data
1956 <ins xmlns="http://www.w3.org/1999/xhtml"
1957 datetime="8592-01-01 T 02:09 +02:09"/>
1958 #errors
1959
1960 #data
1961 <ins xmlns="http://www.w3.org/1999/xhtml"
1962 datetime="2007-04-12T00:00Z"/>
1963 #errors
1964
1965 #data
1966 <ins xmlns="http://www.w3.org/1999/xhtml"
1967 datetime="10000-10-31T00:44Z"/>
1968 #errors
1969 /ins/@datetime;datetime:syntax error
1970
1971 #data
1972 <ins xmlns="http://www.w3.org/1999/xhtml"
1973 datetime="-3333-03-14T14:33Z"/>
1974 #errors
1975 /ins/@datetime;datetime:syntax error
1976
1977 #data
1978 <ins xmlns="http://www.w3.org/1999/xhtml"
1979 datetime="1999-06-23 T04:44Z"/>
1980 #errors
1981
1982 #data
1983 <ins xmlns="http://www.w3.org/1999/xhtml"
1984 datetime="4444-06-22 T 11:22Z"/>
1985 #errors
1986
1987 #data
1988 <ins xmlns="http://www.w3.org/1999/xhtml"
1989 datetime="98-02-12T11:22Z"/>
1990 #errors
1991 /ins/@datetime;datetime:syntax error
1992
1993 #data
1994 <ins xmlns="http://www.w3.org/1999/xhtml"
1995 datetime="2007-02-29T00:00Z"/>
1996 #errors
1997 /ins/@datetime;datetime:bad day
1998
1999 #data
2000 <ins xmlns="http://www.w3.org/1999/xhtml"
2001 datetime="2008-02-29T00:00Z"/>
2002 #errors
2003
2004 #data
2005 <ins xmlns="http://www.w3.org/1999/xhtml"
2006 datetime="2000-02-29T00:00Z"/>
2007 #errors
2008
2009 #data
2010 <ins xmlns="http://www.w3.org/1999/xhtml"
2011 datetime="1900-02-29T00:00Z"/>
2012 #errors
2013 /ins/@datetime;datetime:bad day
2014
2015 #data
2016 <ins xmlns="http://www.w3.org/1999/xhtml"
2017 datetime="2007-02-30T00:00Z"/>
2018 #errors
2019 /ins/@datetime;datetime:bad day
2020
2021 #data
2022 <ins xmlns="http://www.w3.org/1999/xhtml"
2023 datetime="2000-02-30T00:00Z"/>
2024 #errors
2025 /ins/@datetime;datetime:bad day
2026
2027 #data
2028 <ins xmlns="http://www.w3.org/1999/xhtml"
2029 datetime="2007-01-32T00:00Z"/>
2030 #errors
2031 /ins/@datetime;datetime:bad day
2032
2033 #data
2034 <ins xmlns="http://www.w3.org/1999/xhtml"
2035 datetime="2007-01-00T00:00Z"/>
2036 #errors
2037 /ins/@datetime;datetime:bad day
2038
2039 #data
2040 <ins xmlns="http://www.w3.org/1999/xhtml"
2041 datetime="2007-00-29T00:00Z"/>
2042 #errors
2043 /ins/@datetime;datetime:bad month
2044
2045 #data
2046 <ins xmlns="http://www.w3.org/1999/xhtml"
2047 datetime="2007-13-29T00:00Z"/>
2048 #errors
2049 /ins/@datetime;datetime:bad month
2050
2051 #data
2052 <ins xmlns="http://www.w3.org/1999/xhtml"
2053 datetime="2007-02-21T23:00Z"/>
2054 #errors
2055
2056 #data
2057 <ins xmlns="http://www.w3.org/1999/xhtml"
2058 datetime="2007-02-21T24:00Z"/>
2059 #errors
2060 /ins/@datetime;datetime:bad hour
2061
2062 #data
2063 <ins xmlns="http://www.w3.org/1999/xhtml"
2064 datetime="2007-02-21T23:59Z"/>
2065 #errors
2066
2067 #data
2068 <ins xmlns="http://www.w3.org/1999/xhtml"
2069 datetime="2007-02-21T23:60Z"/>
2070 #errors
2071 /ins/@datetime;datetime:bad minute
2072
2073 #data
2074 <ins xmlns="http://www.w3.org/1999/xhtml"
2075 datetime="2007-02-21T23:00:60Z"/>
2076 #errors
2077 /ins/@datetime;datetime:bad second
2078
2079 #data
2080 <ins xmlns="http://www.w3.org/1999/xhtml"
2081 datetime="2007-02-21T23:00:61Z"/>
2082 #errors
2083 /ins/@datetime;datetime:bad second
2084
2085 #data
2086 <ins xmlns="http://www.w3.org/1999/xhtml"
2087 datetime="2007-02-21T23:00:00.123Z"/>
2088 #errors
2089
2090 #data
2091 <ins xmlns="http://www.w3.org/1999/xhtml"
2092 datetime="2007-02-21T23:00.124444Z"/>
2093 #errors
2094
2095 #data
2096 <ins xmlns="http://www.w3.org/1999/xhtml"
2097 datetime="2007-02-21T23:00.Z"/>
2098 #errors
2099 /ins/@datetime;datetime:syntax error
2100
2101 #data
2102 <ins xmlns="http://www.w3.org/1999/xhtml"
2103 datetime="2007-02-21T23:00+09:00"/>
2104 #errors
2105
2106 #data
2107 <ins xmlns="http://www.w3.org/1999/xhtml"
2108 datetime="2007-02-21T23:00-09:00"/>
2109 #errors
2110
2111 #data
2112 <ins xmlns="http://www.w3.org/1999/xhtml"
2113 datetime="2007-02-21T23:00 +09:00"/>
2114 #errors
2115
2116 #data
2117 <ins xmlns="http://www.w3.org/1999/xhtml"
2118 datetime="2007-02-21T23:00+0900"/>
2119 #errors
2120 /ins/@datetime;datetime:syntax error
2121
2122 #data
2123 <ins xmlns="http://www.w3.org/1999/xhtml"
2124 datetime="2007-02-21T23:00A"/>
2125 #errors
2126 /ins/@datetime;datetime:syntax error
2127
2128 #data
2129 <ins xmlns="http://www.w3.org/1999/xhtml"
2130 datetime="2007-02-21T23:00z"/>
2131 #errors
2132 /ins/@datetime;datetime:syntax error
2133
2134 #data
2135 <ins xmlns="http://www.w3.org/1999/xhtml"
2136 datetime="2007-02-21t23:00Z"/>
2137 #errors
2138 /ins/@datetime;datetime:syntax error
2139
2140 #data
2141 <ins xmlns="http://www.w3.org/1999/xhtml"
2142 datetime="2007-02-21T23:00+23:00"/>
2143 #errors
2144
2145 #data
2146 <ins xmlns="http://www.w3.org/1999/xhtml"
2147 datetime="2007-02-21T23:00+24:00"/>
2148 #errors
2149 /ins/@datetime;datetime:bad timezone hour
2150
2151 #data
2152 <ins xmlns="http://www.w3.org/1999/xhtml"
2153 datetime="2007-02-21T23:00-23:00"/>
2154 #errors
2155
2156 #data
2157 <ins xmlns="http://www.w3.org/1999/xhtml"
2158 datetime="2007-02-21T23:00-24:00"/>
2159 #errors
2160 /ins/@datetime;datetime:bad timezone hour
2161
2162 #data
2163 <ins xmlns="http://www.w3.org/1999/xhtml"
2164 datetime="2007-02-21T23:00-00:00"/>
2165 #errors
2166
2167 #data
2168 <ins xmlns="http://www.w3.org/1999/xhtml"
2169 datetime="2007-02-21T23:00+00:14.5"/>
2170 #errors
2171 /ins/@datetime;datetime:syntax error
2172
2173 #data
2174 <ins xmlns="http://www.w3.org/1999/xhtml"
2175 datetime="2007-02-21T23:00+00:59"/>
2176 #errors
2177
2178 #data
2179 <ins xmlns="http://www.w3.org/1999/xhtml"
2180 datetime="2007-02-21T23:00+00:60"/>
2181 #errors
2182 /ins/@datetime;datetime:bad timezone minute
2183
2184 #data
2185 <ins xmlns="http://www.w3.org/1999/xhtml"
2186 datetime="2007-02-21T23:00-00:60"/>
2187 #errors
2188 /ins/@datetime;datetime:bad timezone minute
2189
2190 #data
2191 <ins xmlns="http://www.w3.org/1999/xhtml"
2192 datetime="2007-02-21T23:00 00:00"/>
2193 #errors
2194 /ins/@datetime;datetime:syntax error
2195
2196 #data
2197 <ins xmlns="http://www.w3.org/1999/xhtml"
2198 datetime="2007-02-21T23:00Z "/>
2199 #errors
2200 /ins/@datetime;datetime:syntax error
2201
2202 #data
2203 <ins xmlns="http://www.w3.org/1999/xhtml"
2204 datetime=" 2007-02-21T23:00Z"/>
2205 #errors
2206 /ins/@datetime;datetime:syntax error
2207
2208 #data
2209 <del cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2210 #errors
2211
2212 #data
2213 <del cite='"about:"' xmlns="http://www.w3.org/1999/xhtml"/>
2214 #errors
2215 /del/@cite;URI::syntax error:iriref3987;m
2216
2217 #data
2218 <ins xmlns="http://www.w3.org/1999/xhtml"
2219 datetime="2007-02-21T23:00Z"/>
2220 #errors
2221
2222 #data
2223 <ins xmlns="http://www.w3.org/1999/xhtml"
2224 datetime="2007-02-31T23:00Z"/>
2225 #errors
2226 /ins/@datetime;datetime:bad day
2227
2228 #data
2229 <img xmlns="http://www.w3.org/1999/xhtml"/>
2230 #errors
2231 /img;attribute missing:alt
2232 /img;attribute missing:src
2233
2234 #data
2235 <img alt="" xmlns="http://www.w3.org/1999/xhtml"/>
2236 #errors
2237 /img;attribute missing:src
2238
2239 #data
2240 <img src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2241 #errors
2242 /img;attribute missing:alt
2243
2244 #data
2245 <img alt="" src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2246 #errors
2247
2248 #data
2249 <img alt="" src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
2250 #errors
2251 /img/@src;URI::syntax error:iriref3987;m
2252
2253 #data
2254 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
2255 #errors
2256 /img/@ismap;attribute not allowed
2257
2258 #data
2259 <span xmlns="http://www.w3.org/1999/xhtml">
2260 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
2261 </span>
2262 #errors
2263 /span/img/@ismap;attribute not allowed
2264
2265 #data
2266 <span xmlns="http://www.w3.org/1999/xhtml">
2267 <a/>
2268 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
2269 </span>
2270 #errors
2271 /span/img/@ismap;attribute not allowed
2272
2273 #data
2274 <a xmlns="http://www.w3.org/1999/xhtml">
2275 <img alt="" src="http://test/" ismap="ismap"/>
2276 </a>
2277 #errors
2278
2279 #data
2280 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
2281 <img alt="" src="http://test/" ismap=""/>
2282 </a>
2283 #errors
2284
2285 #data
2286 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
2287 <img alt="" src="http://test/" ismap="ismap"/>
2288 </a>
2289 #errors
2290
2291 #data
2292 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
2293 <img alt="" src="http://test/" ismap="true"/>
2294 </a>
2295 #errors
2296 /a/img/@ismap;boolean:invalid
2297
2298 #data
2299 <div xmlns="http://www.w3.org/1999/xhtml">
2300 <p><img src="http://test/" alt="" usemap=""/></p>
2301 </div>
2302 #errors
2303 /div/p/img/@usemap;#idref:syntax error
2304
2305 #data
2306 <div xmlns="http://www.w3.org/1999/xhtml">
2307 <p><img src="http://test/" alt="" usemap="abc"/></p>
2308 </div>
2309 #errors
2310 /div/p/img/@usemap;#idref:syntax error
2311
2312 #data
2313 <div xmlns="http://www.w3.org/1999/xhtml">
2314 <p><img src="http://test/" alt="" usemap="abc#"/></p>
2315 </div>
2316 #errors
2317 /div/p/img/@usemap;#idref:syntax error
2318
2319 #data
2320 <div xmlns="http://www.w3.org/1999/xhtml">
2321 <p><img src="http://test/" alt="" usemap="&#x0A;#abc"/></p>
2322 </div>
2323 #errors
2324 /div/p/img/@usemap;#idref:syntax error
2325
2326 #data
2327 <div xmlns="http://www.w3.org/1999/xhtml">
2328 <p><img src="http://test/" alt="" usemap="#aa"/></p>
2329 <map id="aa"/>
2330 </div>
2331 #errors
2332
2333 #data
2334 <div xmlns="http://www.w3.org/1999/xhtml">
2335 <map id="aa"/>
2336 <p><img src="http://test/" alt="" usemap="#aa"/></p>
2337 </div>
2338 #errors
2339
2340 #data
2341 <div xmlns="http://www.w3.org/1999/xhtml">
2342 <map id="a a"/>
2343 <p><img src="http://test/" alt="" usemap="#a a"/></p>
2344 </div>
2345 #errors
2346 /div/map/@id;space in ID
2347
2348 #data
2349 <div xmlns="http://www.w3.org/1999/xhtml">
2350 <map id="a a"/>
2351 <p><img src="http://test/" alt="" usemap="#a%20a"/></p>
2352 </div>
2353 #errors
2354 /div/map/@id;space in ID
2355 /div/p/img/@usemap;no referenced map
2356
2357 #data
2358 <div xmlns="http://www.w3.org/1999/xhtml">
2359 <map id="&#x4E00;"/>
2360 <p><img src="http://test/" alt="" usemap="#&#x4E00;"/></p>
2361 </div>
2362 #errors
2363
2364 #data
2365 <div xmlns="http://www.w3.org/1999/xhtml">
2366 <map id="aa"/>
2367 <p><img src="http://test/" alt="" usemap="#bb"/></p>
2368 </div>
2369 #errors
2370 /div/p/img/@usemap;no referenced map
2371
2372 #data
2373 <div xmlns="http://www.w3.org/1999/xhtml">
2374 <map id="aa"/>
2375 <p><img src="http://test/" alt="" usemap="#aa"/></p>
2376 <p><img src="http://test/" alt="" usemap="#aa"/></p>
2377 </div>
2378 #errors
2379
2380 #data
2381 <div xmlns="http://www.w3.org/1999/xhtml">
2382 <map id="aa"/>
2383 <p><img src="http://test/" alt="" usemap="#AA"/></p>
2384 </div>
2385 #errors
2386 /div/p/img/@usemap;no referenced map
2387
2388 #data
2389 <div xmlns="http://www.w3.org/1999/xhtml">
2390 <map id="AA"/>
2391 <p><img src="http://test/" alt="" usemap="#aa"/></p>
2392 </div>
2393 #errors
2394 /div/p/img/@usemap;no referenced map
2395
2396 #data
2397 <div xmlns="http://www.w3.org/1999/xhtml">
2398 <p id="aa"/>
2399 <p><img src="http://test/" alt="" usemap="#aa"/></p>
2400 </div>
2401 #errors
2402 /div/p/img/@usemap;no referenced map
2403
2404 #data
2405 <iframe xmlns="http://www.w3.org/1999/xhtml"/>
2406 #errors
2407
2408 #data
2409 <iframe src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2410 #errors
2411
2412 #data
2413 <iframe src="&lt;http://test/>" xmlns="http://www.w3.org/1999/xhtml"/>
2414 #errors
2415 /iframe/@src;URI::syntax error:iriref3987;m
2416
2417 #data
2418 <embed xmlns="http://www.w3.org/1999/xhtml"/>
2419 #errors
2420 /embed;attribute missing:src
2421
2422 #data
2423 <embed src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2424 #errors
2425
2426 #data
2427 <embed src="[http://test/]" xmlns="http://www.w3.org/1999/xhtml"/>
2428 #errors
2429 /embed/@src;URI::syntax error:iriref3987;m
2430
2431 #data
2432 <embed src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
2433 #errors
2434 /embed/@type;IMT:syntax error
2435
2436 #data
2437 <embed src="http://test/" type="text"
2438 xmlns="http://www.w3.org/1999/xhtml"/>
2439 #errors
2440 /embed/@type;IMT:syntax error
2441
2442 #data
2443 <embed src="http://test/" type="text/plain"
2444 xmlns="http://www.w3.org/1999/xhtml"/>
2445 #errors
2446
2447 #data
2448 <embed src="http://test/" id=""
2449 xmlns="http://www.w3.org/1999/xhtml"/>
2450 #errors
2451 /embed/@id;empty attribute value
2452
2453 #data
2454 <embed src="http://test/" a="b" c="d" checked="checked"
2455 xmlns="http://www.w3.org/1999/xhtml"/>
2456 #errors
2457
2458 #data
2459 <object xmlns="http://www.w3.org/1999/xhtml"/>
2460 #errors
2461 /object;attribute missing:data|type
2462
2463 #data
2464 <object data="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2465 #errors
2466
2467 #data
2468 <object data="`http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
2469 #errors
2470 /object/@data;URI::syntax error:iriref3987;m
2471
2472 #data
2473 <object type="" xmlns="http://www.w3.org/1999/xhtml"/>
2474 #errors
2475 /object/@type;IMT:syntax error
2476
2477 #data
2478 <object type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
2479 #errors
2480
2481 #data
2482 <object type="text/css" data="http://test/"
2483 xmlns="http://www.w3.org/1999/xhtml"/>
2484 #errors
2485
2486 #data
2487 <div xmlns="http://www.w3.org/1999/xhtml">
2488 <p><object data="http://test/" usemap=""/></p>
2489 </div>
2490 #errors
2491 /div/p/object/@usemap;#idref:syntax error
2492
2493 #data
2494 <div xmlns="http://www.w3.org/1999/xhtml">
2495 <p><object data="http://test/" usemap="abc"/></p>
2496 </div>
2497 #errors
2498 /div/p/object/@usemap;#idref:syntax error
2499
2500 #data
2501 <div xmlns="http://www.w3.org/1999/xhtml">
2502 <p><object data="http://test/" usemap="abc#"/></p>
2503 </div>
2504 #errors
2505 /div/p/object/@usemap;#idref:syntax error
2506
2507 #data
2508 <div xmlns="http://www.w3.org/1999/xhtml">
2509 <p><object data="http://test/" usemap="&#x0A;#abc"/></p>
2510 </div>
2511 #errors
2512 /div/p/object/@usemap;#idref:syntax error
2513
2514 #data
2515 <div xmlns="http://www.w3.org/1999/xhtml">
2516 <p><object data="http://test/" usemap="#aa"/></p>
2517 <map id="aa"/>
2518 </div>
2519 #errors
2520
2521 #data
2522 <div xmlns="http://www.w3.org/1999/xhtml">
2523 <map id="aa"/>
2524 <p><object data="http://test/" usemap="#aa"/></p>
2525 </div>
2526 #errors
2527
2528 #data
2529 <div xmlns="http://www.w3.org/1999/xhtml">
2530 <map id="&#x4E00;"/>
2531 <p><object data="http://test/" usemap="#&#x4E00;"/></p>
2532 </div>
2533 #errors
2534
2535 #data
2536 <div xmlns="http://www.w3.org/1999/xhtml">
2537 <map id="aa"/>
2538 <p><object data="http://test/" usemap="#bb"/></p>
2539 </div>
2540 #errors
2541 /div/p/object/@usemap;no referenced map
2542
2543 #data
2544 <div xmlns="http://www.w3.org/1999/xhtml">
2545 <map id="aa"/>
2546 <p><object data="http://test/" usemap="#aa"/></p>
2547 <p><object data="http://test/" usemap="#aa"/></p>
2548 </div>
2549 #errors
2550
2551 #data
2552 <div xmlns="http://www.w3.org/1999/xhtml">
2553 <map id="aa"/>
2554 <p><object data="http://test/" usemap="#AA"/></p>
2555 </div>
2556 #errors
2557 /div/p/object/@usemap;no referenced map
2558
2559 #data
2560 <div xmlns="http://www.w3.org/1999/xhtml">
2561 <map id="AA"/>
2562 <p><object data="http://test/" usemap="#aa"/></p>
2563 </div>
2564 #errors
2565 /div/p/object/@usemap;no referenced map
2566
2567 #data
2568 <div xmlns="http://www.w3.org/1999/xhtml">
2569 <object data="" usemap="#a"/><menu id="a"/>
2570 </div>
2571 #errors
2572 /div/object/@usemap;no referenced map
2573
2574 #data
2575 <param xmlns="http://www.w3.org/1999/xhtml"/>
2576 #errors
2577 /param;attribute missing:name
2578 /param;attribute missing:value
2579
2580 #data
2581 <param name="a" xmlns="http://www.w3.org/1999/xhtml"/>
2582 #errors
2583 /param;attribute missing:value
2584
2585 #data
2586 <param value="a" xmlns="http://www.w3.org/1999/xhtml"/>
2587 #errors
2588 /param;attribute missing:name
2589
2590 #data
2591 <param name="a" value="b" xmlns="http://www.w3.org/1999/xhtml"/>
2592 #errors
2593
2594 #data
2595 <param name="" value="" xmlns="http://www.w3.org/1999/xhtml"/>
2596 #errors
2597
2598 #data
2599 <param name="a" value="b" valuetype="text" xmlns="http://www.w3.org/1999/xhtml"/>
2600 #errors
2601 /param/@valuetype;attribute;unsupported
2602
2603 #data
2604 <video xmlns="http://www.w3.org/1999/xhtml"/>
2605 #errors
2606
2607 #data
2608 <video src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2609 #errors
2610
2611 #data
2612 <video src="``http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2613 #errors
2614 /video/@src;URI::syntax error:iriref3987;m
2615
2616 #data
2617 <video autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
2618 #errors
2619
2620 #data
2621 <video autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
2622 #errors
2623
2624 #data
2625 <video autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
2626 #errors
2627 /video/@autoplay;boolean:invalid
2628
2629 #data
2630 <video controls="" xmlns="http://www.w3.org/1999/xhtml"/>
2631 #errors
2632
2633 #data
2634 <video controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
2635 #errors
2636
2637 #data
2638 <video controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
2639 #errors
2640 /video/@controls;boolean:invalid
2641
2642 #data
2643 <audio xmlns="http://www.w3.org/1999/xhtml"/>
2644 #errors
2645
2646 #data
2647 <audio src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2648 #errors
2649
2650 #data
2651 <audio src="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
2652 #errors
2653 /audio/@src;URI::syntax error:iriref3987;m
2654
2655 #data
2656 <audio autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
2657 #errors
2658
2659 #data
2660 <audio autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
2661 #errors
2662
2663 #data
2664 <audio autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
2665 #errors
2666 /audio/@autoplay;boolean:invalid
2667
2668 #data
2669 <audio controls="" xmlns="http://www.w3.org/1999/xhtml"/>
2670 #errors
2671
2672 #data
2673 <audio controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
2674 #errors
2675
2676 #data
2677 <audio controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
2678 #errors
2679 /audio/@controls;boolean:invalid
2680
2681 #data
2682 <source xmlns="http://www.w3.org/1999/xhtml"/>
2683 #errors
2684 /source;attribute missing:src
2685
2686 #data
2687 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2688 #errors
2689
2690 #data
2691 <source src="%http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2692 #errors
2693 /source/@src;URI::syntax error:iriref3987;m
2694
2695 #data
2696 <source src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
2697 #errors
2698 /source/@type;IMT:syntax error
2699
2700 #data
2701 <source src="http://test/" type="video" xmlns="http://www.w3.org/1999/xhtml"/>
2702 #errors
2703 /source/@type;IMT:syntax error
2704
2705 #data
2706 <source src="http://test/" type="audio/mpeg"
2707 xmlns="http://www.w3.org/1999/xhtml"/>
2708 #errors
2709
2710 #data
2711 <source src="http://test/" type="video/3gpp2; codecs=sevc,s263"
2712 xmlns="http://www.w3.org/1999/xhtml"/>
2713 #errors
2714 /source/@type;IMT:syntax error
2715
2716 #data
2717 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc,s263&quot;"
2718 xmlns="http://www.w3.org/1999/xhtml"/>
2719 #errors
2720
2721 #data
2722 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc, s263&quot;"
2723 xmlns="http://www.w3.org/1999/xhtml"/>
2724 #errors
2725
2726 #data
2727 <source src="http://test/" type="video/3gpp2; codecs='sevc, s263'"
2728 xmlns="http://www.w3.org/1999/xhtml"/>
2729 #errors
2730 /source/@type;IMT:syntax error
2731
2732 #data
2733 <source src="http://test/" media="screen"
2734 xmlns="http://www.w3.org/1999/xhtml"/>
2735 #errors
2736 /source/@media;media query;unsupported
2737
2738 #data
2739 <canvas xmlns="http://www.w3.org/1999/xhtml"/>
2740 #errors
2741
2742 #data
2743 <canvas width="" xmlns="http://www.w3.org/1999/xhtml"/>
2744 #errors
2745 /canvas/@width;nninteger:syntax error
2746
2747 #data
2748 <canvas width="1" xmlns="http://www.w3.org/1999/xhtml"/>
2749 #errors
2750
2751 #data
2752 <canvas width="0" xmlns="http://www.w3.org/1999/xhtml"/>
2753 #errors
2754
2755 #data
2756 <canvas width="100" xmlns="http://www.w3.org/1999/xhtml"/>
2757 #errors
2758
2759 #data
2760 <canvas width="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2761 #errors
2762 /canvas/@width;nninteger:syntax error
2763
2764 #data
2765 <canvas width="saaa" xmlns="http://www.w3.org/1999/xhtml"/>
2766 #errors
2767 /canvas/@width;nninteger:syntax error
2768
2769 #data
2770 <canvas width="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
2771 #errors
2772 /canvas/@width;nninteger:syntax error
2773
2774 #data
2775 <canvas width="13344aa" xmlns="http://www.w3.org/1999/xhtml"/>
2776 #errors
2777 /canvas/@width;nninteger:syntax error
2778
2779 #data
2780 <canvas height="" xmlns="http://www.w3.org/1999/xhtml"/>
2781 #errors
2782 /canvas/@height;nninteger:syntax error
2783
2784 #data
2785 <canvas height="0" xmlns="http://www.w3.org/1999/xhtml"/>
2786 #errors
2787
2788 #data
2789 <canvas height="1" xmlns="http://www.w3.org/1999/xhtml"/>
2790 #errors
2791
2792 #data
2793 <canvas height="-2" xmlns="http://www.w3.org/1999/xhtml"/>
2794 #errors
2795 /canvas/@height;nninteger:syntax error
2796
2797 #data
2798 <canvas height="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
2799 #errors
2800 /canvas/@height;nninteger:syntax error
2801
2802 #data
2803 <canvas height="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
2804 #errors
2805 /canvas/@height;nninteger:syntax error
2806
2807 #data
2808 <canvas width="44" height="14" xmlns="http://www.w3.org/1999/xhtml"/>
2809 #errors
2810
2811 #data
2812 <map xmlns="http://www.w3.org/1999/xhtml"/>
2813 #errors
2814 /map;attribute missing:id
2815
2816 #data
2817 <map name="aa" xmlns="http://www.w3.org/1999/xhtml"/>
2818 #errors
2819 /map;attribute missing:id
2820 /map/@name;attribute;unsupported
2821
2822 #data
2823 <map id="aa" xmlns="http://www.w3.org/1999/xhtml"/>
2824 #errors
2825
2826 #data
2827 <div xmlns="http://www.w3.org/1999/xhtml">
2828 <map id="aa"/>
2829 <p id="aa"/>
2830 </div>
2831 #errors
2832 /div/p/@id;duplicate ID
2833
2834 #data
2835 <div xmlns="http://www.w3.org/1999/xhtml">
2836 <p id="aa"/>
2837 <map id="aa"/>
2838 </div>
2839 #errors
2840 /div/map/@id;duplicate ID
2841
2842 #data
2843 <map id="" xmlns="http://www.w3.org/1999/xhtml"/>
2844 #errors
2845 /map/@id;empty attribute value
2846
2847 #data
2848 <area xmlns="http://www.w3.org/1999/xhtml"/>
2849 #errors
2850 /area;attribute missing:coords
2851
2852 #data
2853 <area href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2854 #errors
2855 /area;attribute missing:alt
2856 /area;attribute missing:coords
2857
2858 #data
2859 <area alt="" xmlns="http://www.w3.org/1999/xhtml"/>
2860 #errors
2861 /area/@alt;attribute not allowed
2862 /area;attribute missing:coords
2863
2864 #data
2865 <area href="http://test/" alt="" xmlns="http://www.w3.org/1999/xhtml"/>
2866 #errors
2867 /area;attribute missing:coords
2868
2869 #data
2870 <area href="http://test/" alt="" coords="1,2,3,4"
2871 xmlns="http://www.w3.org/1999/xhtml"/>
2872 #errors
2873
2874 #data
2875 <area href="%%http://test/" alt="" coords="1,2,3,4"
2876 xmlns="http://www.w3.org/1999/xhtml"/>
2877 #errors
2878 /area/@href;URI::syntax error:iriref3987;m
2879
2880 #data
2881 <area href="http://test/" alt="" coords="1,2,3,4"
2882 hreflang=""
2883 xmlns="http://www.w3.org/1999/xhtml"/>
2884 #errors
2885 /area/@hreflang;LangTag:nosemantics:language;m
2886
2887 #data
2888 <area href="http://test/" alt="" coords="1,2,3,4"
2889 hreflang="en"
2890 xmlns="http://www.w3.org/1999/xhtml"/>
2891 #errors
2892
2893 #data
2894 <area coords="1,2,3,4" hreflang="en"
2895 xmlns="http://www.w3.org/1999/xhtml"/>
2896 #errors
2897 /area/@hreflang;attribute not allowed
2898
2899 #data
2900 <area href="http://test/" alt="" coords="1,2,3,4"
2901 media="screen"
2902 xmlns="http://www.w3.org/1999/xhtml"/>
2903 #errors
2904 /area/@media;media query;unsupported
2905
2906 #data
2907 <area coords="1,2,3,4" media="screen"
2908 xmlns="http://www.w3.org/1999/xhtml"/>
2909 #errors
2910 /area/@media;attribute not allowed
2911 /area/@media;media query;unsupported
2912
2913 #data
2914 <area href="http://test/" coords="1,2,3,4" alt="" target="_self"
2915 xmlns="http://www.w3.org/1999/xhtml"/>
2916 #errors
2917
2918 #data
2919 <area href="http://test/" coords="1,2,3,4" alt="" target="self"
2920 xmlns="http://www.w3.org/1999/xhtml"/>
2921 #errors
2922
2923 #data
2924 <area href="http://test/" coords="1,2,3,4" alt="" target="_any"
2925 xmlns="http://www.w3.org/1999/xhtml"/>
2926 #errors
2927 /area/@target;reserved browsing context name
2928
2929 #data
2930 <area coords="1,2,3,4" target="_self"
2931 xmlns="http://www.w3.org/1999/xhtml"/>
2932 #errors
2933 /area/@target;attribute not allowed
2934
2935 #data
2936 <area coords="1,2,3,4"
2937 xmlns="http://www.w3.org/1999/xhtml"/>
2938 #errors
2939
2940 #data
2941 <area shape="rect" coords="1,2,3,4"
2942 xmlns="http://www.w3.org/1999/xhtml"/>
2943 #errors
2944
2945 #data
2946 <area shape="RECT" coords="1,2,3,4"
2947 xmlns="http://www.w3.org/1999/xhtml"/>
2948 #errors
2949
2950 #data
2951 <area shape="rectangle" coords="1,2,3,4"
2952 xmlns="http://www.w3.org/1999/xhtml"/>
2953 #errors
2954 /area/@shape;enumerated:non-conforming
2955
2956 #data
2957 <area shape="rec" coords="1,2,3,4"
2958 xmlns="http://www.w3.org/1999/xhtml"/>
2959 #errors
2960 /area/@shape;enumerated:invalid
2961
2962 #data
2963 <area shape="default"
2964 xmlns="http://www.w3.org/1999/xhtml"/>
2965 #errors
2966
2967 #data
2968 <area shape="defaulT"
2969 xmlns="http://www.w3.org/1999/xhtml"/>
2970 #errors
2971
2972 #data
2973 <area shape="circ" coords="1,2,3"
2974 xmlns="http://www.w3.org/1999/xhtml"/>
2975 #errors
2976 /area/@shape;enumerated:non-conforming
2977
2978 #data
2979 <area shape="circle" coords="1,2,3"
2980 xmlns="http://www.w3.org/1999/xhtml"/>
2981 #errors
2982
2983 #data
2984 <area shape="poly" coords="1,2,3,4,5,6"
2985 xmlns="http://www.w3.org/1999/xhtml"/>
2986 #errors
2987
2988 #data
2989 <area shape="polygon" coords="1,2,3,4,5,6"
2990 xmlns="http://www.w3.org/1999/xhtml"/>
2991 #errors
2992 /area/@shape;enumerated:non-conforming
2993
2994 #data
2995 <area shape="XXX" coords="1,2,3,4"
2996 xmlns="http://www.w3.org/1999/xhtml"/>
2997 #errors
2998 /area/@shape;enumerated:invalid
2999
3000 #data
3001 <area shape="circle" coords=""
3002 xmlns="http://www.w3.org/1999/xhtml"/>
3003 #errors
3004 /area/@coords;coords:syntax error
3005
3006 #data
3007 <area shape="circle" coords="1"
3008 xmlns="http://www.w3.org/1999/xhtml"/>
3009 #errors
3010 /area/@coords;coords:number:3:1
3011
3012 #data
3013 <area shape="circle" coords="1,2"
3014 xmlns="http://www.w3.org/1999/xhtml"/>
3015 #errors
3016 /area/@coords;coords:number:3:2
3017
3018 #data
3019 <area shape="circle" coords="1,2,3,4"
3020 xmlns="http://www.w3.org/1999/xhtml"/>
3021 #errors
3022 /area/@coords;coords:number:3:4
3023
3024 #data
3025 <area shape="circle" coords="1,2,3,4,5"
3026 xmlns="http://www.w3.org/1999/xhtml"/>
3027 #errors
3028 /area/@coords;coords:number:3:5
3029
3030 #data
3031 <area shape="circle" coords="1,2,-3"
3032 xmlns="http://www.w3.org/1999/xhtml"/>
3033 #errors
3034 /area/@coords;coords:out of range:2
3035
3036 #data
3037 <area shape="circle" coords="1,2,0"
3038 xmlns="http://www.w3.org/1999/xhtml"/>
3039 #errors
3040
3041 #data
3042 <area shape="circle" coords="-1,-2,4"
3043 xmlns="http://www.w3.org/1999/xhtml"/>
3044 #errors
3045
3046 #data
3047 <area shape="circle" coords="0,0,0"
3048 xmlns="http://www.w3.org/1999/xhtml"/>
3049 #errors
3050
3051 #data
3052 <area shape="circle"
3053 xmlns="http://www.w3.org/1999/xhtml"/>
3054 #errors
3055 /area;attribute missing:coords
3056
3057 #data
3058 <area shape="default" coords="1"
3059 xmlns="http://www.w3.org/1999/xhtml"/>
3060 #errors
3061 /area/@coords;attribute not allowed
3062
3063 #data
3064 <area shape="poly" coords=""
3065 xmlns="http://www.w3.org/1999/xhtml"/>
3066 #errors
3067 /area/@coords;coords:syntax error
3068
3069 #data
3070 <area shape="poly" coords="1"
3071 xmlns="http://www.w3.org/1999/xhtml"/>
3072 #errors
3073 /area/@coords;coords:number:>=6:1
3074
3075 #data
3076 <area shape="poly" coords="1,2"
3077 xmlns="http://www.w3.org/1999/xhtml"/>
3078 #errors
3079 /area/@coords;coords:number:>=6:2
3080
3081 #data
3082 <area shape="poly" coords="1,2,3"
3083 xmlns="http://www.w3.org/1999/xhtml"/>
3084 #errors
3085 /area/@coords;coords:number:>=6:3
3086
3087 #data
3088 <area shape="poly" coords="1,2,3,4"
3089 xmlns="http://www.w3.org/1999/xhtml"/>
3090 #errors
3091 /area/@coords;coords:number:>=6:4
3092
3093 #data
3094 <area shape="poly" coords="1,2,3,4,5"
3095 xmlns="http://www.w3.org/1999/xhtml"/>
3096 #errors
3097 /area/@coords;coords:number:>=6:5
3098
3099 #data
3100 <area shape="poly" coords="1,2,3,4,5,6,7"
3101 xmlns="http://www.w3.org/1999/xhtml"/>
3102 #errors
3103 /area/@coords;coords:number:even:7
3104
3105 #data
3106 <area shape="poly" coords="-1,-23,55,455,232,0"
3107 xmlns="http://www.w3.org/1999/xhtml"/>
3108 #errors
3109
3110 #data
3111 <area shape="poly" coords="0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
3112 xmlns="http://www.w3.org/1999/xhtml"/>
3113 #errors
3114
3115 #data
3116 <area shape="poly"
3117 xmlns="http://www.w3.org/1999/xhtml"/>
3118 #errors
3119 /area;attribute missing:coords
3120
3121 #data
3122 <area shape="rect" coords=""
3123 xmlns="http://www.w3.org/1999/xhtml"/>
3124 #errors
3125 /area/@coords;coords:syntax error
3126
3127 #data
3128 <area shape="rect" coords="1"
3129 xmlns="http://www.w3.org/1999/xhtml"/>
3130 #errors
3131 /area/@coords;coords:number:4:1
3132
3133 #data
3134 <area shape="rect" coords="1,2"
3135 xmlns="http://www.w3.org/1999/xhtml"/>
3136 #errors
3137 /area/@coords;coords:number:4:2
3138
3139 #data
3140 <area shape="rect" coords="1,2,3"
3141 xmlns="http://www.w3.org/1999/xhtml"/>
3142 #errors
3143 /area/@coords;coords:number:4:3
3144
3145 #data
3146 <area shape="rect" coords="1,2,3,4,5"
3147 xmlns="http://www.w3.org/1999/xhtml"/>
3148 #errors
3149 /area/@coords;coords:number:4:5
3150
3151 #data
3152 <area shape="rect"
3153 xmlns="http://www.w3.org/1999/xhtml"/>
3154 #errors
3155 /area;attribute missing:coords
3156
3157 #data
3158 <area shape="rect" coords="0,0,1,1"
3159 xmlns="http://www.w3.org/1999/xhtml"/>
3160 #errors
3161
3162 #data
3163 <area shape="rect" coords="-1,-1,0,0"
3164 xmlns="http://www.w3.org/1999/xhtml"/>
3165 #errors
3166
3167 #data
3168 <area shape="rect" coords="-1,-1,6,6"
3169 xmlns="http://www.w3.org/1999/xhtml"/>
3170 #errors
3171
3172 #data
3173 <area shape="rect" coords="54,54,7876,466"
3174 xmlns="http://www.w3.org/1999/xhtml"/>
3175 #errors
3176
3177 #data
3178 <area shape="rect" coords="646,4,3,657"
3179 xmlns="http://www.w3.org/1999/xhtml"/>
3180 #errors
3181 /area/@coords;coords:out of range:0
3182
3183 #data
3184 <area shape="rect" coords="4,646,657,7"
3185 xmlns="http://www.w3.org/1999/xhtml"/>
3186 #errors
3187 /area/@coords;coords:out of range:1
3188
3189 #data
3190 <area shape="rect" coords="1,2,3,4"
3191 ping="a b"
3192 xmlns="http://www.w3.org/1999/xhtml"/>
3193 #errors
3194 /area/@ping;attribute not allowed
3195
3196 #data
3197 <area shape="rect" coords="1,2,3,4"
3198 rel="author"
3199 xmlns="http://www.w3.org/1999/xhtml"/>
3200 #errors
3201 /area/@rel;attribute not allowed
3202
3203 #data
3204 <area shape="rect" coords="1,2,3,4"
3205 type="text/css"
3206 xmlns="http://www.w3.org/1999/xhtml"/>
3207 #errors
3208 /area/@type;attribute not allowed
3209
3210 #data
3211 <area shape="rect" coords="1,2,3,4"
3212 href="http://test/" type="text" alt=""
3213 xmlns="http://www.w3.org/1999/xhtml"/>
3214 #errors
3215 /area/@type;IMT:syntax error
3216
3217 #data
3218 <area shape="rect" coords="1,2,3,4"
3219 href="http://test/" type="text/css" alt=""
3220 xmlns="http://www.w3.org/1999/xhtml"/>
3221 #errors
3222
3223 #data
3224 <area shape="rect" coords="1,2,3,4"
3225 href="http://test/" rel="author" alt=""
3226 xmlns="http://www.w3.org/1999/xhtml"/>
3227 #errors
3228
3229 #data
3230 <area shape="rect" coords="1,2,3,4"
3231 href="http://test/" rel="author author" alt=""
3232 xmlns="http://www.w3.org/1999/xhtml"/>
3233 #errors
3234 /area/@rel;duplicate token:author
3235
3236 #data
3237 <area shape="rect" coords="1,2,3,4"
3238 href="http://test/" rel="bookmark" alt=""
3239 xmlns="http://www.w3.org/1999/xhtml"/>
3240 #errors
3241
3242 #data
3243 <area shape="rect" coords="1,2,3,4"
3244 href="http://test/" rel="previous" alt=""
3245 xmlns="http://www.w3.org/1999/xhtml"/>
3246 #errors
3247 /area/@rel;link type:non-conforming:previous
3248
3249 #data
3250 <area shape="rect" coords="1,2,3,4"
3251 href="http://test/" rel="edit" alt=""
3252 xmlns="http://www.w3.org/1999/xhtml"/>
3253 #errors
3254 /area/@rel;link type:proposed:edit;s
3255
3256 #data
3257 <area shape="rect" coords="1,2,3,4"
3258 href="http://test/" rel="script" alt=""
3259 xmlns="http://www.w3.org/1999/xhtml"/>
3260 #errors
3261 /area/@rel;link type:non-conforming:script
3262
3263 #data
3264 <area shape="rect" coords="1,2,3,4"
3265 href="http://test/" rel="icon" alt=""
3266 xmlns="http://www.w3.org/1999/xhtml"/>
3267 #errors
3268 /area/@rel;link type:bad context:icon
3269
3270 #data
3271 <area shape="rect" coords="1,2,3,4"
3272 href="http://test/" rel="example-link-type" alt=""
3273 xmlns="http://www.w3.org/1999/xhtml"/>
3274 #errors
3275 /area/@rel;link type:example-link-type;unsupported
3276
3277 #data
3278 <area shape="rect" coords="1,2,3,4"
3279 href="http://test/" ping="a b" alt=""
3280 xmlns="http://www.w3.org/1999/xhtml"/>
3281 #errors
3282
3283 #data
3284 <area shape="rect" coords="1,2,3,4"
3285 href="http://test/" ping="a [b]" alt=""
3286 xmlns="http://www.w3.org/1999/xhtml"/>
3287 #errors
3288 /area/@ping;URIs::syntax error:iriref3987:1;m
3289
3290 #data
3291 <area shape="rect" coords="1,2,3,4"
3292 href="http://test/" ping="a [b] [@c]" alt=""
3293 xmlns="http://www.w3.org/1999/xhtml"/>
3294 #errors
3295 /area/@ping;URIs::syntax error:iriref3987:1;m
3296 /area/@ping;URIs::syntax error:iriref3987:2;m
3297
3298 #data
3299 <table xmlns="http://www.w3.org/1999/xhtml"/>
3300 #errors
3301
3302 #data
3303 <table border="" xmlns="http://www.w3.org/1999/xhtml"/>
3304 #errors
3305 /table/@border;attribute;unsupported
3306
3307 #data
3308 <table frame="border" xmlns="http://www.w3.org/1999/xhtml"/>
3309 #errors
3310 /table/@frame;attribute;unsupported
3311
3312 #data
3313 <table border="1" xmlns="http://www.w3.org/1999/xhtml"/>
3314 #errors
3315 /table/@border;attribute;unsupported
3316
3317 #data
3318 <caption align="top" xmlns="http://www.w3.org/1999/xhtml"/>
3319 #errors
3320 /caption/@align;attribute;unsupported
3321
3322 #data
3323 <colgroup xmlns="http://www.w3.org/1999/xhtml"/>
3324 #errors
3325
3326 #data
3327 <colgroup span="" xmlns="http://www.w3.org/1999/xhtml"/>
3328 #errors
3329 /colgroup/@span;nninteger:syntax error
3330
3331 #data
3332 <colgroup span="1" xmlns="http://www.w3.org/1999/xhtml"/>
3333 #errors
3334
3335 #data
3336 <colgroup span="0000000000001" xmlns="http://www.w3.org/1999/xhtml"/>
3337 #errors
3338
3339 #data
3340 <colgroup span="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
3341 #errors
3342
3343 #data
3344 <colgroup span="0" xmlns="http://www.w3.org/1999/xhtml"/>
3345 #errors
3346 /colgroup/@span;nninteger:out of range
3347
3348 #data
3349 <colgroup span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3350 #errors
3351 /colgroup/@span;nninteger:syntax error
3352
3353 #data
3354 <colgroup span="+1" xmlns="http://www.w3.org/1999/xhtml"/>
3355 #errors
3356 /colgroup/@span;nninteger:syntax error
3357
3358 #data
3359 <colgroup span="111.1" xmlns="http://www.w3.org/1999/xhtml"/>
3360 #errors
3361 /colgroup/@span;nninteger:syntax error
3362
3363 #data
3364 <colgroup span="haergrghra" xmlns="http://www.w3.org/1999/xhtml"/>
3365 #errors
3366 /colgroup/@span;nninteger:syntax error
3367
3368 #data
3369 <col xmlns="http://www.w3.org/1999/xhtml"/>
3370 #errors
3371
3372 #data
3373 <col span="" xmlns="http://www.w3.org/1999/xhtml"/>
3374 #errors
3375 /col/@span;nninteger:syntax error
3376
3377 #data
3378 <col span="0" xmlns="http://www.w3.org/1999/xhtml"/>
3379 #errors
3380 /col/@span;nninteger:out of range
3381
3382 #data
3383 <col span="1" xmlns="http://www.w3.org/1999/xhtml"/>
3384 #errors
3385
3386 #data
3387 <col span="10" xmlns="http://www.w3.org/1999/xhtml"/>
3388 #errors
3389
3390 #data
3391 <col span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3392 #errors
3393 /col/@span;nninteger:syntax error
3394
3395 #data
3396 <td colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
3397 #errors
3398
3399 #data
3400 <td colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
3401 #errors
3402 /td/@colspan;nninteger:out of range
3403
3404 #data
3405 <td rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
3406 #errors
3407
3408 #data
3409 <td rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
3410 #errors
3411 /td/@rowspan;nninteger:out of range
3412
3413 #data
3414 <th colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
3415 #errors
3416
3417 #data
3418 <th colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
3419 #errors
3420 /th/@colspan;nninteger:out of range
3421
3422 #data
3423 <th rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
3424 #errors
3425
3426 #data
3427 <th rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
3428 #errors
3429 /th/@rowspan;nninteger:out of range
3430
3431 #data
3432 <th scope="" xmlns="http://www.w3.org/1999/xhtml"/>
3433 #errors
3434 /th/@scope;enumerated:invalid
3435
3436 #data
3437 <th scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
3438 #errors
3439
3440 #data
3441 <th scope="col" xmlns="http://www.w3.org/1999/xhtml"/>
3442 #errors
3443
3444 #data
3445 <th scope="Col" xmlns="http://www.w3.org/1999/xhtml"/>
3446 #errors
3447
3448 #data
3449 <th scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/>
3450 #errors
3451
3452 #data
3453 <th scope="colgroup" xmlns="http://www.w3.org/1999/xhtml"/>
3454 #errors
3455
3456 #data
3457 <td scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
3458 #errors
3459 /td/@scope;attribute;unsupported
3460
3461 #data
3462 <script xmlns="http://www.w3.org/1999/xhtml"/>
3463 #errors
3464 /script;script:text/javascript;unsupported
3465
3466 #data
3467 <script type="" xmlns="http://www.w3.org/1999/xhtml"/>
3468 #errors
3469 /script/@type;IMT:syntax error
3470 /script;script:text/javascript;unsupported
3471
3472 #data
3473 <script type="text/javascript" xmlns="http://www.w3.org/1999/xhtml"/>
3474 #errors
3475 /script/@type;IMT:obsolete subtype;s
3476 /script;script:text/javascript;unsupported
3477
3478 #data
3479 <script type="text/javascript;e4x=1" xmlns="http://www.w3.org/1999/xhtml"/>
3480 #errors
3481 /script/@type;IMT:obsolete subtype;s
3482 /script;script:text/javascript;e4x=1;unsupported
3483
3484 #data
3485 <script type="text/JavaScript;E4X=1" xmlns="http://www.w3.org/1999/xhtml"/>
3486 #errors
3487 /script/@type;IMT:obsolete subtype;s
3488 /script;script:text/JavaScript;E4X=1;unsupported
3489
3490 #data
3491 <script type="text/javascript;e4x=&quot;1&quot;"
3492 xmlns="http://www.w3.org/1999/xhtml"/>
3493 #errors
3494 /script/@type;IMT:obsolete subtype;s
3495 /script;script:text/javascript;e4x="1";unsupported
3496
3497 #data
3498 <script type="text/javascript;e4x=&quot;\1&quot;"
3499 xmlns="http://www.w3.org/1999/xhtml"/>
3500 #errors
3501 /script/@type;IMT:obsolete subtype;s
3502 /script;script:text/javascript;e4x="\1";unsupported
3503
3504 #data
3505 <script src="http://test/" type="text/javascript"
3506 xmlns="http://www.w3.org/1999/xhtml"/>
3507 #errors
3508 /script/@type;IMT:obsolete subtype;s
3509
3510 #data
3511 <script src="http://test/%" type="text/javascript"
3512 xmlns="http://www.w3.org/1999/xhtml"/>
3513 #errors
3514 /script/@src;URI::syntax error:iriref3987;m
3515 /script/@type;IMT:obsolete subtype;s
3516
3517 #data
3518 <script defer="" xmlns="http://www.w3.org/1999/xhtml"/>
3519 #errors
3520 /script;script:text/javascript;unsupported
3521
3522 #data
3523 <script src="http://test/" defer=""
3524 xmlns="http://www.w3.org/1999/xhtml"/>
3525 #errors
3526
3527 #data
3528 <script defer="defer" xmlns="http://www.w3.org/1999/xhtml"/>
3529 #errors
3530 /script;script:text/javascript;unsupported
3531
3532 #data
3533 <script src="http://test/" defer="defer"
3534 xmlns="http://www.w3.org/1999/xhtml"/>
3535 #errors
3536
3537 #data
3538 <script defer="true" xmlns="http://www.w3.org/1999/xhtml"/>
3539 #errors
3540 /script/@defer;boolean:invalid
3541 /script;script:text/javascript;unsupported
3542
3543 #data
3544 <script src="http://test/" defer="true"
3545 xmlns="http://www.w3.org/1999/xhtml"/>
3546 #errors
3547 /script/@defer;boolean:invalid
3548
3549 #data
3550 <script async="" xmlns="http://www.w3.org/1999/xhtml"/>
3551 #errors
3552 /script;script:text/javascript;unsupported
3553
3554 #data
3555 <script src="http://test/" async=""
3556 xmlns="http://www.w3.org/1999/xhtml"/>
3557 #errors
3558
3559 #data
3560 <script async="async" xmlns="http://www.w3.org/1999/xhtml"/>
3561 #errors
3562 /script;script:text/javascript;unsupported
3563
3564 #data
3565 <script src="http://test/" async="async"
3566 xmlns="http://www.w3.org/1999/xhtml"/>
3567 #errors
3568
3569 #data
3570 <script async="true" xmlns="http://www.w3.org/1999/xhtml"/>
3571 #errors
3572 /script/@async;boolean:invalid
3573 /script;script:text/javascript;unsupported
3574
3575 #data
3576 <script src="http://test/" async="true"
3577 xmlns="http://www.w3.org/1999/xhtml"/>
3578 #errors
3579 /script/@async;boolean:invalid
3580
3581 #data
3582 <script defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
3583 #errors
3584 /script;script:text/javascript;unsupported
3585
3586 #data
3587 <script defer="defer" async="async" xmlns="http://www.w3.org/1999/xhtml"/>
3588 #errors
3589 /script;script:text/javascript;unsupported
3590
3591 #data
3592 <script src="" defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
3593 #errors
3594
3595 #data
3596 <event-source xmlns="http://www.w3.org/1999/xhtml"/>
3597 #errors
3598
3599 #data
3600 <event-source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3601 #errors
3602
3603 #data
3604 <event-source src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
3605 #errors
3606 /event-source/@src;URI::syntax error:iriref3987;m
3607
3608 #data
3609 <details xmlns="http://www.w3.org/1999/xhtml"/>
3610 #errors
3611
3612 #data
3613 <details open="" xmlns="http://www.w3.org/1999/xhtml"/>
3614 #errors
3615
3616 #data
3617 <details open="open" xmlns="http://www.w3.org/1999/xhtml"/>
3618 #errors
3619
3620 #data
3621 <details open="OPEN" xmlns="http://www.w3.org/1999/xhtml"/>
3622 #errors
3623 /details/@open;boolean:invalid
3624
3625 #data
3626 <details open="true" xmlns="http://www.w3.org/1999/xhtml"/>
3627 #errors
3628 /details/@open;boolean:invalid
3629
3630 #data
3631 <datagrid xmlns="http://www.w3.org/1999/xhtml"/>
3632 #errors
3633
3634 #data
3635 <datagrid disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
3636 #errors
3637
3638 #data
3639 <datagrid disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
3640 #errors
3641
3642 #data
3643 <datagrid disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
3644 #errors
3645 /datagrid/@disabled;boolean:invalid
3646
3647 #data
3648 <datagrid multiple="" xmlns="http://www.w3.org/1999/xhtml"/>
3649 #errors
3650
3651 #data
3652 <datagrid multiple="multiple" xmlns="http://www.w3.org/1999/xhtml"/>
3653 #errors
3654
3655 #data
3656 <datagrid multiple="true" xmlns="http://www.w3.org/1999/xhtml"/>
3657 #errors
3658 /datagrid/@multiple;boolean:invalid
3659
3660 #data
3661 <command xmlns="http://www.w3.org/1999/xhtml"/>
3662 #errors
3663
3664 #data
3665 <command default="" xmlns="http://www.w3.org/1999/xhtml"/>
3666 #errors
3667
3668 #data
3669 <command default="default" xmlns="http://www.w3.org/1999/xhtml"/>
3670 #errors
3671
3672 #data
3673 <command default="true" xmlns="http://www.w3.org/1999/xhtml"/>
3674 #errors
3675 /command/@default;boolean:invalid
3676
3677 #data
3678 <command checked="" xmlns="http://www.w3.org/1999/xhtml"/>
3679 #errors
3680
3681 #data
3682 <command checked="checked" xmlns="http://www.w3.org/1999/xhtml"/>
3683 #errors
3684
3685 #data
3686 <command checked="true" xmlns="http://www.w3.org/1999/xhtml"/>
3687 #errors
3688 /command/@checked;boolean:invalid
3689
3690 #data
3691 <command hidden="" xmlns="http://www.w3.org/1999/xhtml"/>
3692 #errors
3693
3694 #data
3695 <command hidden="hidden" xmlns="http://www.w3.org/1999/xhtml"/>
3696 #errors
3697
3698 #data
3699 <command hidden="true" xmlns="http://www.w3.org/1999/xhtml"/>
3700 #errors
3701 /command/@hidden;boolean:invalid
3702
3703 #data
3704 <command disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
3705 #errors
3706
3707 #data
3708 <command disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
3709 #errors
3710
3711 #data
3712 <command disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
3713 #errors
3714 /command/@disabled;boolean:invalid
3715
3716 #data
3717 <command label="" xmlns="http://www.w3.org/1999/xhtml"/>
3718 #errors
3719
3720 #data
3721 <command label=" " xmlns="http://www.w3.org/1999/xhtml"/>
3722 #errors
3723
3724 #data
3725 <command label="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
3726 #errors
3727
3728 #data
3729 <command label="label" xmlns="http://www.w3.org/1999/xhtml"/>
3730 #errors
3731
3732 #data
3733 <command label="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
3734 #errors
3735
3736 #data
3737 <command label="&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
3738 #errors
3739
3740 #data
3741 <command title="" xmlns="http://www.w3.org/1999/xhtml"/>
3742 #errors
3743
3744 #data
3745 <command title="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
3746 #errors
3747
3748 #data
3749 <command radiogroup="" xmlns="http://www.w3.org/1999/xhtml"/>
3750 #errors
3751
3752 #data
3753 <command radiogroup="aa" xmlns="http://www.w3.org/1999/xhtml"/>
3754 #errors
3755
3756 #data
3757 <command type="" xmlns="http://www.w3.org/1999/xhtml"/>
3758 #errors
3759 /command/@type;attribute value not allowed
3760
3761 #data
3762 <command type=" " xmlns="http://www.w3.org/1999/xhtml"/>
3763 #errors
3764 /command/@type;attribute value not allowed
3765
3766 #data
3767 <command type="default" xmlns="http://www.w3.org/1999/xhtml"/>
3768 #errors
3769 /command/@type;attribute value not allowed
3770
3771 #data
3772 <command type="command" xmlns="http://www.w3.org/1999/xhtml"/>
3773 #errors
3774
3775 #data
3776 <command type="Command" xmlns="http://www.w3.org/1999/xhtml"/>
3777 #errors
3778 /command/@type;attribute value not allowed
3779
3780 #data
3781 <command type=" command" xmlns="http://www.w3.org/1999/xhtml"/>
3782 #errors
3783 /command/@type;attribute value not allowed
3784
3785 #data
3786 <command type="command " xmlns="http://www.w3.org/1999/xhtml"/>
3787 #errors
3788 /command/@type;attribute value not allowed
3789
3790 #data
3791 <command type="commandline" xmlns="http://www.w3.org/1999/xhtml"/>
3792 #errors
3793 /command/@type;attribute value not allowed
3794
3795 #data
3796 <command type="checkbox" xmlns="http://www.w3.org/1999/xhtml"/>
3797 #errors
3798
3799 #data
3800 <command type="check" xmlns="http://www.w3.org/1999/xhtml"/>
3801 #errors
3802 /command/@type;attribute value not allowed
3803
3804 #data
3805 <command type="radio" xmlns="http://www.w3.org/1999/xhtml"/>
3806 #errors
3807
3808 #data
3809 <command type="radiobutton" xmlns="http://www.w3.org/1999/xhtml"/>
3810 #errors
3811 /command/@type;attribute value not allowed
3812
3813 #data
3814 <command icon="" xmlns="http://www.w3.org/1999/xhtml"/>
3815 #errors
3816
3817 #data
3818 <command icon="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3819 #errors
3820
3821 #data
3822 <command icon="http://test/#test" xmlns="http://www.w3.org/1999/xhtml"/>
3823 #errors
3824
3825 #data
3826 <command icon="test" xmlns="http://www.w3.org/1999/xhtml"/>
3827 #errors
3828
3829 #data
3830 <command icon="[]" xmlns="http://www.w3.org/1999/xhtml"/>
3831 #errors
3832 /command/@icon;URI::syntax error:iriref3987;m
3833
3834 #data
3835 <command icon="a b" xmlns="http://www.w3.org/1999/xhtml"/>
3836 #errors
3837 /command/@icon;URI::syntax error:iriref3987;m
3838
3839 #data
3840 <menu xmlns="http://www.w3.org/1999/xhtml"/>
3841 #errors
3842
3843 #data
3844 <menu label="" xmlns="http://www.w3.org/1999/xhtml"/>
3845 #errors
3846
3847 #data
3848 <menu label=" " xmlns="http://www.w3.org/1999/xhtml"/>
3849 #errors
3850
3851 #data
3852 <menu label="aa" xmlns="http://www.w3.org/1999/xhtml"/>
3853 #errors
3854
3855 #data
3856 <menu type="" xmlns="http://www.w3.org/1999/xhtml"/>
3857 #errors
3858 /menu/@type;enumerated:invalid
3859
3860 #data
3861 <menu type="type" xmlns="http://www.w3.org/1999/xhtml"/>
3862 #errors
3863 /menu/@type;enumerated:invalid
3864
3865 #data
3866 <menu type="toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
3867 #errors
3868
3869 #data
3870 <menu type="Toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
3871 #errors
3872
3873 #data
3874 <menu type=" toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
3875 #errors
3876 /menu/@type;enumerated:invalid
3877
3878 #data
3879 <menu type="context" xmlns="http://www.w3.org/1999/xhtml"/>
3880 #errors
3881
3882 #data
3883 <menu type="conteXt" xmlns="http://www.w3.org/1999/xhtml"/>
3884 #errors
3885
3886 #data
3887 <menu type="context " xmlns="http://www.w3.org/1999/xhtml"/>
3888 #errors
3889 /menu/@type;enumerated:invalid
3890
3891 #data
3892 <menu autosubmit="" xmlns="http://www.w3.org/1999/xhtml"/>
3893 #errors
3894
3895 #data
3896 <menu autosubmit="autosubmit" xmlns="http://www.w3.org/1999/xhtml"/>
3897 #errors
3898
3899 #data
3900 <menu autosubmit="yes" xmlns="http://www.w3.org/1999/xhtml"/>
3901 #errors
3902 /menu/@autosubmit;boolean:invalid
3903
3904 #data
3905 <menu autosubmit="AutoSubmit" xmlns="http://www.w3.org/1999/xhtml"/>
3906 #errors
3907 /menu/@autosubmit;boolean:invalid
3908
3909 #data
3910 <p contextmenu="" xmlns="http://www.w3.org/1999/xhtml"/>
3911 #errors
3912 /p/@contextmenu;no referenced menu
3913
3914 #data
3915 <p contextmenu="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
3916 #errors
3917 /p/@contextmenu;no referenced menu
3918
3919 #data
3920 <div xmlns="http://www.w3.org/1999/xhtml">
3921 <p contextmenu=""/><menu id=""/>
3922 </div>
3923 #errors
3924 /div/menu/@id;empty attribute value
3925
3926 #data
3927 <div xmlns="http://www.w3.org/1999/xhtml">
3928 <p contextmenu="a"/><menu id="a"/>
3929 </div>
3930 #errors
3931
3932 #data
3933 <div xmlns="http://www.w3.org/1999/xhtml">
3934 <p contextmenu="a"/><menu id="A"/>
3935 </div>
3936 #errors
3937 /div/p/@contextmenu;no referenced menu
3938
3939 #data
3940 <div xmlns="http://www.w3.org/1999/xhtml">
3941 <menu id="a"/><p contextmenu="a"/>
3942 </div>
3943 #errors
3944
3945 #data
3946 <div contextmenu="a" xmlns="http://www.w3.org/1999/xhtml">
3947 <menu id="a"/>
3948 </div>
3949 #errors
3950
3951 #data
3952 <menu id="a" xmlns="http://www.w3.org/1999/xhtml">
3953 <span contextmenu="a"/>
3954 </menu>
3955 #errors
3956
3957 #data
3958 <div xmlns="http://www.w3.org/1999/xhtml">
3959 <p contextmenu="a a"/><menu id="a a"/>
3960 </div>
3961 #errors
3962 /div/menu/@id;space in ID
3963
3964 #data
3965 <div xmlns="http://www.w3.org/1999/xhtml">
3966 <p contextmenu="a a"/><menu id="a"/>
3967 </div>
3968 #errors
3969 /div/p/@contextmenu;no referenced menu
3970
3971 #data
3972 <div xmlns="http://www.w3.org/1999/xhtml">
3973 <p contextmenu="a a"/><menu id="a a"/>
3974 </div>
3975 #errors
3976 /div/p/@contextmenu;no referenced menu
3977 /div/menu/@id;space in ID
3978
3979 #data
3980 <div xmlns="http://www.w3.org/1999/xhtml">
3981 <p contextmenu="a"/><ul id="a"/>
3982 </div>
3983 #errors
3984 /div/p/@contextmenu;no referenced menu
3985
3986 #data
3987 <rule xmlns="http://www.w3.org/1999/xhtml" mode=""/>
3988 #errors
3989
3990 #data
3991 <rule xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
3992 #errors
3993
3994 #data
3995 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
3996 #errors
3997
3998 #data
3999 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
4000 #errors
4001
4002 #data
4003 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a A"/>
4004 #errors
4005
4006 #data
4007 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a a"/>
4008 #errors
4009 /rule/@mode;duplicate token:a
4010
4011 #data
4012 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
4013 #errors
4014 /rule/@mode;duplicate token:a
4015
4016 #data
4017 <nest xmlns="http://www.w3.org/1999/xhtml" mode=""/>
4018 #errors
4019
4020 #data
4021 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
4022 #errors
4023
4024 #data
4025 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
4026 #errors
4027 /nest/@mode;duplicate token:a
4028
4029 #data
4030 <div align="center" xmlns="http://www.w3.org/1999/xhtml"/>
4031 #errors
4032 /div/@align;attribute;unsupported
4033

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24