/[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.31 - (show annotations) (download)
Fri Nov 23 14:47:51 2007 UTC (18 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.30: +37 -7 lines
++ whatpm/t/ChangeLog	23 Nov 2007 14:31:20 -0000
	* content-model-2.dat: Media type tests are revised.

2007-11-23  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ChangeLog	23 Nov 2007 14:32:47 -0000
	* IMTChecker.pm: Revised to raise errors and warnings as (poorly)
	specced in RFC 2046 and RFC 4288.
	(application/atom+xml): Definition added.

2007-11-23  Wakaba  <wakaba@suika.fam.cx>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24