/[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.66 - (show annotations) (download)
Sat May 10 06:04:40 2008 UTC (18 years, 3 months ago) by wakaba
Branch: MAIN
Changes since 1.65: +175 -47 lines
++ whatpm/t/ChangeLog	10 May 2008 05:54:08 -0000
2008-05-10  Wakaba  <wakaba@suika.fam.cx>

	* content-model-2.dat: Boolean attributes now allow uppercase
	letters (HTML5 revision 1572).

++ whatpm/Whatpm/ChangeLog	10 May 2008 05:57:19 -0000
2008-05-10  Wakaba  <wakaba@suika.fam.cx>

	* CacheManifest.pm: Don't replace U+0000 NULL (HTML5 revision
	1553).

++ whatpm/Whatpm/ContentChecker/ChangeLog	10 May 2008 05:54:35 -0000
2008-05-10  Wakaba  <wakaba@suika.fam.cx>

	* HTML.pm ($GetHTMLBooleanAttrChecker): Allow uppercase
	letters (HTML5 revision 1572).

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 not defined;m
39 /unknown/@u1;attribute not defined;m
40
41 #data
42 <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
43 #errors
44 /unknown;element not defined;m
45 /unknown/@lang;LangTag:nosemantics:language;m
46 /unknown/@lang;LangTag:syntax:illegal;m
47 /unknown/@u1;attribute not defined;m
48
49 #data
50 <unknown class="" u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
51 #errors
52 /unknown;element not defined;m
53 /unknown/@lang;LangTag:nosemantics:language;m
54 /unknown/@lang;LangTag:syntax:illegal;m
55 /unknown/@u1;attribute not defined;m
56
57 #data
58 <p xmlns="http://www.w3.org/1999/xhtml" unknown="">x</p>
59 #errors
60 /p/@unknown;attribute not defined;m
61
62 #data
63 <a xmlns="http://www.w3.org/1999/xhtml" unknown="">x</a>
64 #errors
65 /a/@unknown;attribute not defined;m
66
67 #data
68 <area xmlns="http://www.w3.org/1999/xhtml" unknown="" alt="x" href="" shape="default"></area>
69 #errors
70 /area/@unknown;attribute not defined;m
71
72 #data
73 <meta xmlns="http://www.w3.org/1999/xhtml" name="keywords" content="a" unknown=""/>
74 #errors
75 /meta/@unknown;attribute not defined;m
76
77 #data
78 <p xmlns="http://www.w3.org/1999/xhtml"
79 a:b="" xmlns:a="http://www.example.test/">a</p>
80 #errors
81 /p/@b;attribute;unsupported
82
83 #data
84 <a html:repeat="" html:b=""
85 c="" xmlns:d="http://" d:e="" xmlns:html="http://www.w3.org/1999/xhtml"/>
86 #errors
87 /a;element;unsupported
88 /a/@c;attribute;unsupported
89 /a/@e;attribute;unsupported
90 /a/@b;attribute not defined;m
91 /a/@repeat;repeat:syntax error;m
92
93 #data
94 <p xmlns="http://www.w3.org/1999/xhtml"
95 xmlns:html="http://www.w3.org/1999/xhtml"
96 html:a="">x</p>
97 #errors
98 /p/@a;attribute not defined;m
99
100 #data
101 <meta xmlns="http://www.w3.org/1999/xhtml"
102 xmlns:html="http://www.w3.org/1999/xhtml"
103 html:a=""
104 name="keywords" content="x"/>
105 #errors
106 /meta/@a;attribute not defined;m
107
108 #data
109 <a xmlns="http://www.w3.org/1999/xhtml"
110 xmlns:html="http://www.w3.org/1999/xhtml"
111 html:a=""
112 href="">y</a>
113 #errors
114 /a/@a;attribute not defined;m
115
116 #data
117 <embed xmlns="http://www.w3.org/1999/xhtml"
118 xmlns:html="http://www.w3.org/1999/xhtml"
119 html:a=""
120 src=""/>
121 #errors
122 /embed/@a;attribute not defined;m
123
124 #data
125 <area xmlns="http://www.w3.org/1999/xhtml"
126 xmlns:html="http://www.w3.org/1999/xhtml"
127 html:a=""
128 href="" shape="default" alt="x"/>
129 #errors
130 /area/@a;attribute not defined;m
131
132 #data
133 <p xmlns="http://www.w3.org/1999/xhtml"
134 id="">a</p>
135 #errors
136 /p/@id;empty attribute value
137
138 #data
139 <p xmlns="http://www.w3.org/1999/xhtml"
140 id="a">a</p>
141 #errors
142
143 #data
144 <p xmlns="http://www.w3.org/1999/xhtml"
145 id=" ">a</p>
146 #errors
147 /p/@id;space in ID
148
149 #data
150 <p xmlns="http://www.w3.org/1999/xhtml"
151 id="&#x9;">a</p>
152 #errors
153 /p/@id;space in ID
154
155 #data
156 <p xmlns="http://www.w3.org/1999/xhtml"
157 id="&#xA;">a</p>
158 #errors
159 /p/@id;space in ID
160
161 #data
162 <?xml version="1.1"?>
163 <p xmlns="http://www.w3.org/1999/xhtml"
164 id="&#xB;">a</p>
165 #errors
166 /p/@id;space in ID
167
168 #data
169 <?xml version="1.1"?>
170 <p xmlns="http://www.w3.org/1999/xhtml"
171 id="&#xC;">a</p>
172 #errors
173 /p/@id;space in ID
174
175 #data
176 <p xmlns="http://www.w3.org/1999/xhtml"
177 id="&#xD;">a</p>
178 #errors
179 /p/@id;space in ID
180
181 #data
182 <p xmlns="http://www.w3.org/1999/xhtml"
183 id="a ">a</p>
184 #errors
185 /p/@id;space in ID
186
187 #data
188 <p xmlns="http://www.w3.org/1999/xhtml"
189 id="a b">a</p>
190 #errors
191 /p/@id;space in ID
192
193 #data
194 <p xmlns="http://www.w3.org/1999/xhtml"
195 id="aaaaaaa">a</p>
196 #errors
197
198 #data
199 <p xmlns="http://www.w3.org/1999/xhtml"
200 id="a"><span id="a">a</span></p>
201 #errors
202 /p/span/@id;duplicate ID
203
204 #data
205 <p xmlns="http://www.w3.org/1999/xhtml"
206 id="a b"><span id="a b">x</span></p>
207 #errors
208 /p/@id;space in ID
209 /p/span/@id;duplicate ID
210 /p/span/@id;space in ID
211
212 #data
213 <p xmlns="http://www.w3.org/1999/xhtml"
214 id=""><span id="">x</span></p>
215 #errors
216 /p/@id;empty attribute value
217 /p/span/@id;empty attribute value
218
219 #data
220 <p xmlns="http://www.w3.org/1999/xhtml">
221 <span id="a">x</span>
222 <span id="b">x</span>
223 <span id="c">x</span>
224 </p>
225 #errors
226
227 #data
228 <p xmlns="http://www.w3.org/1999/xhtml">
229 <span id="a ">x</span>
230 <span id=" a">x</span>
231 <span id=" a ">x</span>
232 </p>
233 #errors
234 /p/span/@id;space in ID
235 /p/span/@id;space in ID
236 /p/span/@id;space in ID
237
238 #data
239 <p xmlns="http://www.w3.org/1999/xhtml">
240 <span id="i">x</span>
241 <span id="I">x</span>
242 <span id="&#x0131;">x</span>
243 </p>
244 #errors
245
246 #data
247 <p title="" xmlns="http://www.w3.org/1999/xhtml">x</p>
248 #errors
249
250 #data
251 <p title="a" xmlns="http://www.w3.org/1999/xhtml">x</p>
252 #errors
253
254 #data
255 <p title="AAAAAA" xmlns="http://www.w3.org/1999/xhtml">x</p>
256 #errors
257
258 #data
259 <p title="XXXX&#x0A;YYYY" xmlns="http://www.w3.org/1999/xhtml">x</p>
260 #errors
261
262 #data
263 <p title="" xmlns="http://www.w3.org/1999/xhtml">x</p>
264 #errors
265
266 #data
267 <p title="AAA" xmlns="http://www.w3.org/1999/xhtml">
268 <span title="BBB">x</span>
269 </p>
270 #errors
271
272 #data
273 <p lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
274 #errors
275 /p/@lang;in XML:lang
276
277 #data
278 <p xml:lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
279 #errors
280
281 #data html
282 <!DOCTYPE HTML><title>x</title><p xml:lang="">x</p>
283 #errors
284 /html/body/p/@xml:lang;in HTML:xml:lang
285
286 #data
287 <p dir="" xmlns="http://www.w3.org/1999/xhtml">x</p>
288 #errors
289 /p/@dir;enumerated:invalid
290
291 #data
292 <p dir="ltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
293 #errors
294
295 #data
296 <p dir=" ltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
297 #errors
298 /p/@dir;enumerated:invalid
299
300 #data
301 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml">x</p>
302 #errors
303 /p/@dir;enumerated:invalid
304
305 #data
306 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
307 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml">x</p>
308 #errors
309
310 #data
311 <?xml version="1.1"?>
312 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
313 <p dir="ltr&#x0C;" xmlns="http://www.w3.org/1999/xhtml">x</p>
314 #errors
315 /p/@dir;enumerated:invalid
316
317 #data
318 <p dir="LTR" xmlns="http://www.w3.org/1999/xhtml">x</p>
319 #errors
320
321 #data
322 <p dir="LtR" xmlns="http://www.w3.org/1999/xhtml">x</p>
323 #errors
324
325 #data
326 <p dir="rtl" xmlns="http://www.w3.org/1999/xhtml">x</p>
327 #errors
328
329 #data
330 <p dir="Rtl" xmlns="http://www.w3.org/1999/xhtml">x</p>
331 #errors
332
333 #data
334 <p dir="rtltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
335 #errors
336 /p/@dir;enumerated:invalid
337
338 #data
339 <p dir="XXXXXX" xmlns="http://www.w3.org/1999/xhtml">x</p>
340 #errors
341 /p/@dir;enumerated:invalid
342
343 #data
344 <p class="" xmlns="http://www.w3.org/1999/xhtml">x</p>
345 #errors
346
347 #data
348 <p class=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
349 #errors
350
351 #data
352 <?xml version="1.1"?>
353 <p class="&#xD;&#xB;" xmlns="http://www.w3.org/1999/xhtml">x</p>
354 #errors
355
356 #data
357 <p class="a b c d ef g h" xmlns="http://www.w3.org/1999/xhtml">x</p>
358 #errors
359
360 #data
361 <?xml version="1.1"?>
362 <p class=" a b c d &#xC; efg h &#xC;" xmlns="http://www.w3.org/1999/xhtml">x</p>
363 #errors
364
365 #data
366 <p class="a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
367 #errors
368 /p/@class;duplicate token:a
369
370 #data
371 <?xml version="1.1"?>
372 <p class=" aa&#xC; aa" xmlns="http://www.w3.org/1999/xhtml">x</p>
373 #errors
374 /p/@class;duplicate token:aa
375
376 #data
377 <p class="a a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
378 #errors
379 /p/@class;duplicate token:a
380 /p/@class;duplicate token:a
381
382 #data
383 <p class="I i &#x0131;" xmlns="http://www.w3.org/1999/xhtml">x</p>
384 #errors
385
386 #data
387 <p contenteditable="" xmlns="http://www.w3.org/1999/xhtml">x</p>
388 #errors
389
390 #data
391 <p contenteditable="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
392 #errors
393
394 #data
395 <p contenteditable="TruE" xmlns="http://www.w3.org/1999/xhtml">x</p>
396 #errors
397
398 #data
399 <p contenteditable="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
400 #errors
401
402 #data
403 <p contenteditable="False" xmlns="http://www.w3.org/1999/xhtml">x</p>
404 #errors
405
406 #data
407 <p contenteditable="none" xmlns="http://www.w3.org/1999/xhtml">x</p>
408 #errors
409 /p/@contenteditable;enumerated:invalid
410
411 #data
412 <p contenteditable="true " xmlns="http://www.w3.org/1999/xhtml">x</p>
413 #errors
414 /p/@contenteditable;enumerated:invalid
415
416 #data
417 <p contenteditable="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
418 #errors
419 /p/@contenteditable;enumerated:invalid
420
421 #data
422 <p contenteditable="contenteditable" xmlns="http://www.w3.org/1999/xhtml">x</p>
423 #errors
424 /p/@contenteditable;enumerated:invalid
425
426 #data
427 <p contenteditable="inherit" xmlns="http://www.w3.org/1999/xhtml">x</p>
428 #errors
429 /p/@contenteditable;enumerated:invalid
430
431 #data
432 <p contenteditable="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
433 #errors
434 /p/@contenteditable;enumerated:invalid
435
436 #data
437 <p contentEditable="" xmlns="http://www.w3.org/1999/xhtml">x</p>
438 #errors
439 /p/@contentEditable;attribute not defined;m
440
441 #data
442 <p irrelevant="" xmlns="http://www.w3.org/1999/xhtml">x</p>
443 #errors
444
445 #data
446 <p irrelevant=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
447 #errors
448 /p/@irrelevant;boolean:invalid;m
449
450 #data
451 <p irrelevant="irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
452 #errors
453
454 #data
455 <p irrelevant=" irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
456 #errors
457 /p/@irrelevant;boolean:invalid;m
458
459 #data
460 <p irrelevant="irrelevant " xmlns="http://www.w3.org/1999/xhtml">x</p>
461 #errors
462 /p/@irrelevant;boolean:invalid;m
463
464 #data
465 <p irrelevant=" irrelevant " xmlns="http://www.w3.org/1999/xhtml">x</p>
466 #errors
467 /p/@irrelevant;boolean:invalid;m
468
469 #data
470 <p irrelevant="Irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
471 #errors
472
473 #data
474 <p irrelevant="IRRELEVANT" xmlns="http://www.w3.org/1999/xhtml">x</p>
475 #errors
476
477 #data
478 <p irrelevant="relevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
479 #errors
480 /p/@irrelevant;boolean:invalid;m
481
482 #data
483 <p irrelevant="irrelevants" xmlns="http://www.w3.org/1999/xhtml">x</p>
484 #errors
485 /p/@irrelevant;boolean:invalid;m
486
487 #data
488 <p irrelevant="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
489 #errors
490 /p/@irrelevant;boolean:invalid;m
491
492 #data
493 <p irrelevant="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
494 #errors
495 /p/@irrelevant;boolean:invalid;m
496
497 #data
498 <p irrelevant="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
499 #errors
500 /p/@irrelevant;boolean:invalid;m
501
502 #data
503 <p irrelevant="on" xmlns="http://www.w3.org/1999/xhtml">x</p>
504 #errors
505 /p/@irrelevant;boolean:invalid;m
506
507 #data
508 <p tabindex="-1" xmlns="http://www.w3.org/1999/xhtml">x</p>
509 #errors
510
511 #data
512 <p tabindex="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
513 #errors
514
515 #data
516 <p tabindex="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
517 #errors
518
519 #data
520 <p tabindex="10000" xmlns="http://www.w3.org/1999/xhtml">x</p>
521 #errors
522
523 #data
524 <p tabindex="1.0" xmlns="http://www.w3.org/1999/xhtml">x</p>
525 #errors
526 /p/@tabindex;integer:syntax error
527
528 #data
529 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml">x</p>
530 #errors
531 /p/@tabindex;integer:syntax error
532
533 #data
534 <p tabindex="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
535 #errors
536 /p/@tabindex;integer:syntax error
537
538 #data
539 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml">x</p>
540 #errors
541 /p/@tabindex;integer:syntax error
542
543 #data
544 <p onabort="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
545 #errors
546 /p/@onabort;event handler;unsupported
547
548 #data
549 <p onbeforeunload="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
550 #errors
551 /p/@onbeforeunload;event handler;unsupported
552
553 #data
554 <p onblur="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
555 #errors
556 /p/@onblur;event handler;unsupported
557
558 #data
559 <p onchange="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
560 #errors
561 /p/@onchange;event handler;unsupported
562
563 #data
564 <p onclick="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
565 #errors
566 /p/@onclick;event handler;unsupported
567
568 #data
569 <p onstorage="" xmlns="http://www.w3.org/1999/xhtml">x</p>
570 #errors
571 /p/@onstorage;event handler;unsupported
572
573 #data
574 <unknown onstorage="" xmlns="http://www.w3.org/1999/xhtml">x</unknown>
575 #errors
576 /unknown;element not defined;m
577 /unknown/@onstorage;event handler;unsupported
578
579 #data
580 <p onxxxx="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
581 #errors
582 /p/@onxxxx;attribute not defined;m
583
584 #data html
585 <!DOCTYPE html>
586 <html>
587 <head><title>x</title></head>
588 <body></body>
589 </html>
590 #errors
591 /html/body;no significant content;s
592
593 #data
594 <html xmlns="http://www.w3.org/1999/xhtml"
595 manifest="http://www.example.com/">
596 <head><title>a</title></head>
597 <body><p>a</p></body>
598 </html>
599 #errors
600
601 #data
602 <html xmlns="http://www.w3.org/1999/xhtml"
603 manifest="[http://www.example.com/]">
604 <head><title>a</title></head>
605 <body><p>a</p></body>
606 </html>
607 #errors
608 /html/@manifest;URI::syntax error:iriref3987;m
609
610 #data
611 <html xmlns="http://www.w3.org/1999/xhtml"
612 manifest=" ">
613 <head><title>a</title></head>
614 <body><p>a</p></body>
615 </html>
616 #errors
617 /html/@manifest;URI::syntax error:iriref3987;m
618
619 #data
620 <html xmlns="http://www.w3.org/1999/xhtml"
621 application="http://www.example.com/">
622 <head><title>a</title></head>
623 <body><p>a</p></body>
624 </html>
625 #errors
626 /html/@application;attribute not defined;m
627
628 #data html
629 <!DOCTYPE html>
630 <html xmlns="http://www.w3.org/1999/xhtml">
631 <head><title>x</title></head>
632 <body></body>
633 </html>
634 #errors
635 /html/body;no significant content;s
636
637 #data html
638 <!DOCTYPE html>
639 <html xmlns="">
640 <head><title>x</title></head>
641 <body></body>
642 </html>
643 #errors
644 /html/@xmlns;invalid attribute value
645 /html/body;no significant content;s
646
647 #data html
648 <!DOCTYPE html>
649 <html xmlns="http://www.w3.org/TR/xhtml1/strict">
650 <head><title>x</title></head>
651 <body></body>
652 </html>
653 #errors
654 /html/@xmlns;invalid attribute value
655 /html/body;no significant content;s
656
657 #data html
658 <!DOCTYPE html>
659 <html xmlns="http://www.w3.org/TR/REC-html40">
660 <head><title>x</title></head>
661 <body></body>
662 </html>
663 #errors
664 /html/@xmlns;invalid attribute value
665 /html/body;no significant content;s
666
667 #data html
668 <!DOCTYPE html>
669 <html xmlns=" http://www.w3.org/1999/xhtml ">
670 <head><title>x</title></head>
671 <body></body>
672 </html>
673 #errors
674 /html/@xmlns;invalid attribute value
675 /html/body;no significant content;s
676
677 #data html
678 <!DOCTYPE html>
679 <html xmlns="http://www.w3.org/1999/XHTML">
680 <head><title>x</title></head>
681 <body></body>
682 </html>
683 #errors
684 /html/@xmlns;invalid attribute value
685 /html/body;no significant content;s
686
687 #data html
688 <!DOCTYPE html>
689 <html xmlns="http://www.w3.org/1999/html">
690 <head><title>x</title></head>
691 <body></body>
692 </html>
693 #errors
694 /html/@xmlns;invalid attribute value
695 /html/body;no significant content;s
696
697 #data
698 <html xmlns="http://www.w3.org/1999/xhtml">
699 <head><title>x</title></head>
700 <body></body>
701 </html>
702 #errors
703 /html/body;no significant content;s
704
705 #data
706 <html xmlns="http://www.w3.org/1999/xhtml ">
707 <head><title>x</title></head>
708 <body></body>
709 </html>
710 #errors
711 /html;element;unsupported
712 /html/head;element;unsupported
713 /html/head/title;element;unsupported
714 /html/body;element;unsupported
715
716 #data html
717 <!DOCTYPE html>
718 <html>
719 <head xmlns="http://www.w3.org/1999/xhtml"><title>x</title></head>
720 <body></body>
721 </html>
722 #errors
723 /html/head/@xmlns;attribute not allowed;m
724 /html/body;no significant content;s
725
726 #data html
727 <!DOCTYPE HTML>
728 <title>x</title>
729 <p xmlns="http://www.w3.org/1999/xhtml">x</p>
730 #errors
731 /html/body/p/@xmlns;attribute not allowed;m
732
733 #data html
734 <!DOCTYPE HTML>
735 <title>x</title>
736 <p xmlns="">x</p>
737 #errors
738 /html/body/p/@xmlns;invalid attribute value
739 /html/body/p/@xmlns;attribute not allowed;m
740
741 #data html
742 <!DOCTYPE HTML>
743 <title>x</title>
744 <unknown xmlns="http://www.w3.org/1999/xhtml">x</unknown>
745 #errors
746 /html/body/unknown/@xmlns;attribute not allowed;m
747 /html/body/unknown;element not defined;m
748 /html/body/unknown;element not allowed:flow;m
749
750 #data html
751 <!DOCTYPE HTML>
752 <title>x</title>
753 <unknown xmlns="http://www.w3.org/1999/html">x</unknown>
754 #errors
755 /html/body/unknown/@xmlns;invalid attribute value
756 /html/body/unknown/@xmlns;attribute not allowed;m
757 /html/body/unknown;element not defined;m
758 /html/body/unknown;element not allowed:flow;m
759
760 #data html
761 <!DOCTYPE HTML>
762 <title>x</title>
763 <svg>
764 <title>
765 <p xmlns="http://www.w3.org/1999/xhtml">x</p>
766 </title>
767 </svg>
768 #errors
769 /html/body/svg;element;unsupported
770 /html/body/svg/title;element;unsupported
771
772 #data html
773 <!DOCTYPE HTML>
774 <title>x</title>
775 <svg>
776 <title>
777 <p xmlns="">x</p>
778 </title>
779 </svg>
780 #errors
781 /html/body/svg;element;unsupported
782 /html/body/svg/title;element;unsupported
783 /html/body/svg/title/p/@xmlns;invalid attribute value
784
785 #data html
786 <!DOCTYPE HTML>
787 <title>x</title>
788 <svg>
789 <title>
790 <div><p xmlns="">x</p></div>
791 </title>
792 </svg>
793 #errors
794 /html/body/svg;element;unsupported
795 /html/body/svg/title;element;unsupported
796 /html/body/svg/title/div/p/@xmlns;invalid attribute value
797 /html/body/svg/title/div/p/@xmlns;attribute not allowed;m
798
799 #data
800 <html xmlns="http://www.w3.org/1999/xhtml" version="">
801 <head><title>x</title></head>
802 <body>y</body>
803 </html>
804 #errors
805 /html/@version;attribute not defined;m
806
807 #data
808 <html xmlns="http://www.w3.org/1999/xhtml" version="-//W3C//DTD HTML 4.01//EN">
809 <head><title>x</title></head>
810 <body>y</body>
811 </html>
812 #errors
813 /html/@version;attribute not defined;m
814
815 #data
816 <head profile="" xmlns="http://www.w3.org/1999/xhtml">
817 <title/>
818 </head>
819 #errors
820 /head/@profile;attribute not defined;m
821
822 #data
823 <head profile="http://www.test/" xmlns="http://www.w3.org/1999/xhtml">
824 <title/>
825 </head>
826 #errors
827 /head/@profile;attribute not defined;m
828
829 #data
830 <head profile="http://www.test/ http://www.test/2" xmlns="http://www.w3.org/1999/xhtml">
831 <title/>
832 </head>
833 #errors
834 /head/@profile;attribute not defined;m
835
836 #data
837 <head profile="[]" xmlns="http://www.w3.org/1999/xhtml">
838 <title/>
839 </head>
840 #errors
841 /head/@profile;attribute not defined;m
842 /head/@profile;URIs::syntax error:iriref3987:0;m
843
844 #data
845 <base xmlns="http://www.w3.org/1999/xhtml"/>
846 #errors
847 /base;attribute missing:href|target
848
849 #data
850 <base title="" xmlns="http://www.w3.org/1999/xhtml"/>
851 #errors
852 /base;attribute missing:href|target
853
854 #data
855 <base href="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
856 #errors
857 /base/@href;URI::syntax error:iriref3987;m
858
859 #data
860 <base href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
861 #errors
862
863 #data
864 <base href="test" xmlns="http://www.w3.org/1999/xhtml"/>
865 #errors
866
867 #data
868 <base href="http://test/#a" xmlns="http://www.w3.org/1999/xhtml"/>
869 #errors
870
871 #data
872 <base href="http://test/" target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
873 #errors
874
875 #data
876 <base target="" xmlns="http://www.w3.org/1999/xhtml"/>
877 #errors
878 /base/@target;window name:empty;m
879
880 #data
881 <base target="_" xmlns="http://www.w3.org/1999/xhtml"/>
882 #errors
883 /base/@target;window name:reserved;m
884
885 #data
886 <base target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
887 #errors
888
889 #data
890 <base target="_Self" xmlns="http://www.w3.org/1999/xhtml"/>
891 #errors
892
893 #data
894 <base target="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
895 #errors
896
897 #data
898 <base target="_parent" xmlns="http://www.w3.org/1999/xhtml"/>
899 #errors
900
901 #data
902 <base target="_top" xmlns="http://www.w3.org/1999/xhtml"/>
903 #errors
904
905 #data
906 <base target="_main" xmlns="http://www.w3.org/1999/xhtml"/>
907 #errors
908 /base/@target;window name:reserved;m
909
910 #data
911 <base target="_content" xmlns="http://www.w3.org/1999/xhtml"/>
912 #errors
913 /base/@target;window name:reserved;m
914
915 #data
916 <base target="_unknown" xmlns="http://www.w3.org/1999/xhtml"/>
917 #errors
918 /base/@target;window name:reserved;m
919
920 #data
921 <base target="blank" xmlns="http://www.w3.org/1999/xhtml"/>
922 #errors
923
924 #data
925 <head xmlns="http://www.w3.org/1999/xhtml">
926 <link rel="stylesheet" href=""/>
927 <base href=""/>
928 <title/>
929 </head>
930 #errors
931 /head/base;basehref after URI attribute
932
933 #data
934 <head xmlns="http://www.w3.org/1999/xhtml">
935 <base href=""/>
936 <link rel="stylesheet" href=""/>
937 <title/>
938 </head>
939 #errors
940
941 #data
942 <head xmlns="http://www.w3.org/1999/xhtml">
943 <link rel="stylesheet" href=""/>
944 <base target="_self"/>
945 <title/>
946 </head>
947 #errors
948
949 #data
950 <head xmlns="http://www.w3.org/1999/xhtml">
951 <base target="_self"/>
952 <link rel="stylesheet" href=""/>
953 <title/>
954 </head>
955 #errors
956
957 #data
958 <head xmlns="http://www.w3.org/1999/xhtml">
959 <link rel="stylesheet" href=""/>
960 <base target="_self" href=""/>
961 <title/>
962 </head>
963 #errors
964 /head/base;basehref after URI attribute
965
966 #data
967 <head xmlns="http://www.w3.org/1999/xhtml">
968 <base target="_self" href=""/>
969 <link rel="stylesheet" href=""/>
970 <title/>
971 </head>
972 #errors
973
974 #data
975 <head xmlns="http://www.w3.org/1999/xhtml">
976 <link rel="up" href=""/>
977 <base href=""/>
978 <title/>
979 </head>
980 #errors
981 /head/base;basehref after URI attribute
982
983 #data
984 <head xmlns="http://www.w3.org/1999/xhtml">
985 <base href=""/>
986 <link rel="up" href=""/>
987 <title/>
988 </head>
989 #errors
990
991 #data
992 <head xmlns="http://www.w3.org/1999/xhtml">
993 <link rel="up" href=""/>
994 <base target="_self"/>
995 <title/>
996 </head>
997 #errors
998 /head/base;basetarget after hyperlink
999
1000 #data
1001 <head xmlns="http://www.w3.org/1999/xhtml">
1002 <base target="_self"/>
1003 <link rel="up" href=""/>
1004 <title/>
1005 </head>
1006 #errors
1007
1008 #data
1009 <head xmlns="http://www.w3.org/1999/xhtml">
1010 <link rel="up" href=""/>
1011 <base target="_self" href=""/>
1012 <title/>
1013 </head>
1014 #errors
1015 /head/base;basehref after URI attribute
1016 /head/base;basetarget after hyperlink
1017
1018 #data
1019 <head xmlns="http://www.w3.org/1999/xhtml">
1020 <base target="_self" href=""/>
1021 <link rel="up" href=""/>
1022 <title/>
1023 </head>
1024 #errors
1025
1026 #data
1027 <head xmlns="http://www.w3.org/1999/xhtml">
1028 <link rel="alternate stylesheet" href=""/>
1029 <base target="_self"/>
1030 <title/>
1031 </head>
1032 #errors
1033
1034 #data
1035 <head xmlns="http://www.w3.org/1999/xhtml">
1036 <link rel="stylesheet alternate" href=""/>
1037 <base target="_self"/>
1038 <title/>
1039 </head>
1040 #errors
1041
1042 #data
1043 <head xmlns="http://www.w3.org/1999/xhtml">
1044 <link rel="alternate stylesheet stylesheet" href=""/>
1045 <base target="_self"/>
1046 <title/>
1047 </head>
1048 #errors
1049 /head/link/@rel;duplicate token:stylesheet
1050
1051 #data
1052 <head xmlns="http://www.w3.org/1999/xhtml">
1053 <link rel="alternate" type="application/atom+xml" href=""/>
1054 <base target="_self"/>
1055 <title/>
1056 </head>
1057 #errors
1058 /head/base;basetarget after hyperlink
1059
1060 #data
1061 <head xmlns="http://www.w3.org/1999/xhtml">
1062 <link rel="alternate up stylesheet" href=""/>
1063 <base target="_self"/>
1064 <title/>
1065 </head>
1066 #errors
1067 /head/base;basetarget after hyperlink
1068
1069 #data
1070 <head xmlns="http://www.w3.org/1999/xhtml">
1071 <link rel="up stylesheet" href=""/>
1072 <base target="_self"/>
1073 <title/>
1074 </head>
1075 #errors
1076 /head/base;basetarget after hyperlink
1077
1078 #data
1079 <head xmlns="http://www.w3.org/1999/xhtml">
1080 <a href=""/>
1081 <base target="_self"/>
1082 <title/>
1083 </head>
1084 #errors
1085 /head/a;element not allowed:metadata;m
1086 /head/base;basetarget after hyperlink
1087 /head/a;no significant content;s
1088
1089 #data
1090 <head xmlns="http://www.w3.org/1999/xhtml">
1091 <area shape="default" href="" alt=""/>
1092 <base target="_self"/>
1093 <title/>
1094 </head>
1095 #errors
1096 /head/area;element not allowed:metadata;m
1097 /head/base;basetarget after hyperlink
1098
1099 #data
1100 <head xmlns="http://www.w3.org/1999/xhtml">
1101 <area shape="default" href="" alt=""/>
1102 <base href=""/>
1103 <title/>
1104 </head>
1105 #errors
1106 /head/area;element not allowed:metadata;m
1107 /head/base;basehref after URI attribute
1108
1109 #data
1110 <head xmlns="http://www.w3.org/1999/xhtml">
1111 <video src=""/>
1112 <base href=""/>
1113 <title/>
1114 </head>
1115 #errors
1116 /head/video;element not allowed:metadata;m
1117 /head/base;basehref after URI attribute
1118
1119 #data
1120 <html xmlns="http://www.w3.org/1999/xhtml">
1121 <head>
1122 <base href=""/>
1123 <title/>
1124 </head>
1125 <body>
1126 <p><a href="">x</a></p>
1127 </body>
1128 </html>
1129 #errors
1130
1131 #data
1132 <link xmlns="http://www.w3.org/1999/xhtml"/>
1133 #errors
1134 /link;attribute missing:href
1135 /link;attribute missing:rel
1136
1137 #data
1138 <link href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1139 #errors
1140 /link;attribute missing:rel
1141
1142 #data
1143 <link rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
1144 #errors
1145 /link;attribute missing:href
1146
1147 #data
1148 <link rel="stylesheet" href="http://www.test/"
1149 xmlns="http://www.w3.org/1999/xhtml"/>
1150 #errors
1151
1152 #data
1153 <link rel="stylesheet" href="://www.test/"
1154 xmlns="http://www.w3.org/1999/xhtml"/>
1155 #errors
1156 /link/@href;URI::syntax error:iriref3987;m
1157
1158 #data
1159 <link rel="stylesheet" href="http://www.test/" type=""
1160 xmlns="http://www.w3.org/1999/xhtml"/>
1161 #errors
1162 /link/@type;IMT:syntax error
1163
1164 #data
1165 <link rel="stylesheet" href="http://www.test/" type="text"
1166 xmlns="http://www.w3.org/1999/xhtml"/>
1167 #errors
1168 /link/@type;IMT:syntax error
1169
1170 #data
1171 <link rel="stylesheet" href="http://www.test/" type="text/css"
1172 xmlns="http://www.w3.org/1999/xhtml"/>
1173 #errors
1174
1175 #data
1176 <link rel="stylesheet" href="http://www.test/" type="TexT/CsS"
1177 xmlns="http://www.w3.org/1999/xhtml"/>
1178 #errors
1179
1180 #data
1181 <link rel="stylesheet" href="http://www.test/" type="TEXT/CSS"
1182 xmlns="http://www.w3.org/1999/xhtml"/>
1183 #errors
1184
1185 #data
1186 <link rel="stylesheet" href="http://www.test/" type="text/css; charset=utf-8"
1187 xmlns="http://www.w3.org/1999/xhtml"/>
1188 #errors
1189
1190 #data
1191 <link rel="author" href="http://test/"
1192 xmlns="http://www.w3.org/1999/xhtml"/>
1193 #errors
1194
1195 #data
1196 <link rel="author author" href="http://test/"
1197 xmlns="http://www.w3.org/1999/xhtml"/>
1198 #errors
1199 /link/@rel;duplicate token:author
1200
1201 #data
1202 <link rel="bookmark" href="http://test/"
1203 xmlns="http://www.w3.org/1999/xhtml"/>
1204 #errors
1205 /link/@rel;link type:bad context:bookmark
1206
1207 #data
1208 <link rel="previous" href="http://test/"
1209 xmlns="http://www.w3.org/1999/xhtml"/>
1210 #errors
1211 /link/@rel;link type:non-conforming:previous
1212
1213 #data
1214 <link rel="edit" href="http://test/"
1215 xmlns="http://www.w3.org/1999/xhtml"/>
1216 #errors
1217 /link/@rel;link type:proposed:edit;s
1218
1219 #data
1220 <link rel="script" href="http://test/"
1221 xmlns="http://www.w3.org/1999/xhtml"/>
1222 #errors
1223 /link/@rel;link type:non-conforming:script
1224
1225 #data
1226 <link rel="example-link-type" href="http://test/"
1227 xmlns="http://www.w3.org/1999/xhtml"/>
1228 #errors
1229 /link/@rel;link type:example-link-type;unsupported
1230
1231 #data
1232 <link rel="alternate stylesheet" href="http://test/" title=""
1233 xmlns="http://www.w3.org/1999/xhtml"/>
1234 #errors
1235
1236 #data
1237 <link rel="author" href="http://test/" hreflang=""
1238 xmlns="http://www.w3.org/1999/xhtml"/>
1239 #errors
1240 /link/@hreflang;LangTag:nosemantics:language;m
1241
1242 #data
1243 <link rel="author" href="http://test/" hreflang="en"
1244 xmlns="http://www.w3.org/1999/xhtml"/>
1245 #errors
1246
1247 #data
1248 <link media="all"
1249 xmlns="http://www.w3.org/1999/xhtml"/>
1250 #errors
1251 /link;attribute missing:href
1252 /link;attribute missing:rel
1253 /link/@media;media query;unsupported
1254
1255 #data
1256 <link rel="author" href="http://test/" media="all"
1257 xmlns="http://www.w3.org/1999/xhtml"/>
1258 #errors
1259 /link/@media;media query;unsupported
1260
1261 #data
1262 <link href="http://test/" rel="author" target="_self"
1263 xmlns="http://www.w3.org/1999/xhtml"/>
1264 #errors
1265 /link/@target;attribute not defined;m
1266
1267 #data
1268 <head xmlns="http://www.w3.org/1999/xhtml">
1269 <link rel="pingback" href="a"/>
1270 <link rel="pingback" href="b"/>
1271 <title>x</title>
1272 </head>
1273 #errors
1274 /head/link/@rel;link type:duplicate:pingback
1275
1276 #data
1277 <head xmlns="http://www.w3.org/1999/xhtml">
1278 <link rel="pingback" href="a"/>
1279 <link rel="pingback feed" href="b"/>
1280 <title>x</title>
1281 </head>
1282 #errors
1283 /head/link/@rel;link type:duplicate:pingback
1284
1285 #data
1286 <link rel="alternate" href="" target="" xmlns="http://www.w3.org/1999/xhtml"/>
1287 #errors
1288 /link/@target;attribute not defined;m
1289 /link/@target;window name:empty;m
1290
1291 #data
1292 <link rel="alternate" href="" target="_" xmlns="http://www.w3.org/1999/xhtml"/>
1293 #errors
1294 /link/@target;attribute not defined;m
1295 /link/@target;window name:reserved;m
1296
1297 #data
1298 <link rel="alternate" href="" target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
1299 #errors
1300 /link/@target;attribute not defined;m
1301
1302 #data
1303 <link rel="alternate" href="" target="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
1304 #errors
1305 /link/@target;attribute not defined;m
1306
1307 #data
1308 <link rel="alternate" href="" target="_b" xmlns="http://www.w3.org/1999/xhtml"/>
1309 #errors
1310 /link/@target;attribute not defined;m
1311 /link/@target;window name:reserved;m
1312
1313 #data
1314 <link href="" rev=" " xmlns="http://www.w3.org/1999/xhtml"/>
1315 #errors
1316 /link/@rev;attribute not defined;m
1317 /link;attribute missing:rel
1318
1319 #data
1320 <link href="" rev="made" xmlns="http://www.w3.org/1999/xhtml"/>
1321 #errors
1322 /link/@rev;attribute not defined;m
1323 /link;attribute missing:rel
1324
1325 #data
1326 <link href="" rev="made made" xmlns="http://www.w3.org/1999/xhtml"/>
1327 #errors
1328 /link/@rev;attribute not defined;m
1329 /link/@rev;duplicate token:made
1330 /link;attribute missing:rel
1331
1332 #data
1333 <meta xmlns="http://www.w3.org/1999/xhtml">
1334 <!-- TODO: <meta> tests are not complete -->
1335 </meta>
1336 #errors
1337 /meta;attribute missing:name|http-equiv|charset
1338
1339 #data
1340 <meta name="dns" xmlns="http://www.w3.org/1999/xhtml"/>
1341 #errors
1342 /meta;attribute missing:content
1343
1344 #data
1345 <meta name="dns" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1346 #errors
1347
1348 #data
1349 <meta charset="us-ascii" name="dns" content="example.net"
1350 xmlns="http://www.w3.org/1999/xhtml"/>
1351 #errors
1352 /meta;element not allowed:meta charset;m
1353 /meta/@charset;attribute not allowed
1354 /meta;in XML:charset;m
1355 /meta/@charset;mismatched charset name::us-ascii;unsupported
1356
1357 #data
1358 <meta http-equiv="refresh" xmlns="http://www.w3.org/1999/xhtml"/>
1359 #errors
1360 /meta;attribute missing:content
1361
1362 #data
1363 <meta http-equiv="refresh" content="10; url=a.html"
1364 xmlns="http://www.w3.org/1999/xhtml"/>
1365 #errors
1366
1367 #data
1368 <meta http-equiv="refresh" content="10; url=a.html" name="dns"
1369 xmlns="http://www.w3.org/1999/xhtml"/>
1370 #errors
1371 /meta/@http-equiv;attribute not allowed
1372
1373 #data
1374 <meta http-equiv="refresh" content="10; url=a.html" charset="us-ascii"
1375 xmlns="http://www.w3.org/1999/xhtml"/>
1376 #errors
1377 /meta/@charset;attribute not allowed
1378 /meta;in XML:charset;m
1379 /meta/@charset;mismatched charset name::us-ascii;unsupported
1380 /meta;element not allowed:meta charset;m
1381
1382 #data
1383 <meta http-equiv="" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1384 #errors
1385 /meta/@http-equiv;enumerated:invalid
1386
1387 #data
1388 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1389 #errors
1390 /meta/@content;attribute not allowed
1391 /meta;attribute missing:name|http-equiv
1392
1393 #data
1394 <meta charset="us-ascii" content="example.net"
1395 xmlns="http://www.w3.org/1999/xhtml"/>
1396 #errors
1397 /meta;element not allowed:meta charset;m
1398 /meta/@content;attribute not allowed
1399 /meta;in XML:charset;m
1400 /meta/@charset;mismatched charset name::us-ascii;unsupported
1401
1402 #data
1403 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1404 #errors
1405 /meta/@content;attribute not allowed
1406 /meta;attribute missing:name|http-equiv
1407
1408 #data html
1409 <!DOCTYPE HTML><html><head><meta charset="us-ascii"><title>x</title></head><body><p>x
1410 #errors
1411 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1412
1413 #data
1414 <meta charset="" xmlns="http://www.w3.org/1999/xhtml"/>
1415 #errors
1416 /meta;element not allowed:meta charset;m
1417 /meta;in XML:charset;m
1418 /meta/@charset;mismatched charset name::;unsupported
1419 /meta/@charset;charset:syntax error:;m
1420 /meta/@charset;charset:not registered:;w
1421
1422 #data
1423 <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1424 #errors
1425 /meta;element not allowed:meta charset;m
1426 /meta;in XML:charset;m
1427 /meta/@charset;mismatched charset name::us-ascii;unsupported
1428
1429 #data
1430 <meta charset="US-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1431 #errors
1432 /meta;element not allowed:meta charset;m
1433 /meta;in XML:charset;m
1434 /meta/@charset;mismatched charset name::us-ascii;unsupported
1435
1436 #data
1437 <meta charset="csiso2022jp" xmlns="http://www.w3.org/1999/xhtml"/>
1438 #errors
1439 /meta;element not allowed:meta charset;m
1440 /meta;in XML:charset;m
1441 /meta/@charset;mismatched charset name::csiso2022jp;unsupported
1442 /meta/@charset;charset:not preferred:csiso2022jp;m
1443
1444 #data
1445 <meta charset="iso2022jp" xmlns="http://www.w3.org/1999/xhtml"/>
1446 #errors
1447 /meta;element not allowed:meta charset;m
1448 /meta;in XML:charset;m
1449 /meta/@charset;mismatched charset name::iso2022jp;unsupported
1450 /meta/@charset;charset:not preferred:iso2022jp;m
1451 /meta/@charset;charset:not registered:iso2022jp;w
1452
1453 #data
1454 <meta charset="x-utf-8" xmlns="http://www.w3.org/1999/xhtml"/>
1455 #errors
1456 /meta;element not allowed:meta charset;m
1457 /meta;in XML:charset;m
1458 /meta/@charset;mismatched charset name::x-utf-8;unsupported
1459 /meta/@charset;charset:not preferred:x-utf-8;m
1460 /meta/@charset;charset:private:x-utf-8;w
1461
1462 #data
1463 <meta charset="utf-8n" xmlns="http://www.w3.org/1999/xhtml"/>
1464 #errors
1465 /meta;element not allowed:meta charset;m
1466 /meta;in XML:charset;m
1467 /meta/@charset;mismatched charset name::utf-8n;unsupported
1468 /meta/@charset;charset:not preferred:utf-8n;m
1469 /meta/@charset;charset:not registered:utf-8n;w
1470
1471 #data
1472 <meta charset="x-sjis" xmlns="http://www.w3.org/1999/xhtml"/>
1473 #errors
1474 /meta;element not allowed:meta charset;m
1475 /meta;in XML:charset;m
1476 /meta/@charset;mismatched charset name::x-sjis;unsupported
1477 /meta/@charset;charset:not preferred:x-sjis;m
1478 /meta/@charset;charset:private:x-sjis;w
1479
1480 #data html
1481 <!DOCTYPE HTML>
1482 <meta charset="us-ascii">
1483 <title>x</title>
1484 <body><p>b</p></body>
1485 #errors
1486 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1487
1488 #data html
1489 <!DOCTYPE HTML>
1490 <meta charset="us-&#x41;scii">
1491 <title>x</title>
1492 <body><p>x</p></body>
1493 #errors
1494 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1495 /html/head/meta/@charset;character reference in charset;m
1496
1497 #data html
1498 <!DOCTYPE HTML>
1499 <meta charset="us-&#x61;scii">
1500 <title>x</title>
1501 <body><p>x</p></body>
1502 #errors
1503 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1504 /html/head/meta/@charset;character reference in charset;m
1505
1506 #data html
1507 <!DOCTYPE HTML>
1508 <meta charset="us-&scii">
1509 <title>x</title>
1510 <body><p>x</p></body>
1511 #errors
1512 /html/head/meta/@charset;mismatched charset name::us-&scii;unsupported
1513 /html/head/meta/@charset;charset:not registered:us-&scii;w
1514
1515 #data html
1516 <!DOCTYPE HTML>
1517 <meta charset="us-&amp;scii">
1518 <title>x</title>
1519 <body><p>x</p></body>
1520 #errors
1521 /html/head/meta/@charset;mismatched charset name::us-&scii;unsupported
1522 /html/head/meta/@charset;charset:not registered:us-&scii;w
1523 /html/head/meta/@charset;character reference in charset;m
1524
1525 #data
1526 <meta xmlns="http://www.w3.org/1999/xhtml"
1527 http-equiv="content-type"
1528 />
1529 #errors
1530 /meta;element not allowed:meta charset;m
1531 /meta;attribute missing:content;m
1532 /meta;in XML:charset;m
1533
1534 #data
1535 <meta xmlns="http://www.w3.org/1999/xhtml"
1536 http-equiv="content-type"
1537 content=""/>
1538 #errors
1539 /meta;element not allowed:meta charset;m
1540 /meta;in XML:charset;m
1541 /meta/@content;meta content-type syntax error;m
1542
1543 #data
1544 <meta xmlns="http://www.w3.org/1999/xhtml"
1545 http-equiv="content-type"
1546 content="text/html"/>
1547 #errors
1548 /meta;element not allowed:meta charset;m
1549 /meta;in XML:charset;m
1550 /meta/@content;meta content-type syntax error;m
1551
1552 #data
1553 <meta xmlns="http://www.w3.org/1999/xhtml"
1554 http-equiv="content-type"
1555 content="html"/>
1556 #errors
1557 /meta;element not allowed:meta charset;m
1558 /meta;in XML:charset;m
1559 /meta/@content;meta content-type syntax error;m
1560
1561 #data
1562 <meta xmlns="http://www.w3.org/1999/xhtml"
1563 http-equiv="content-type"
1564 content="text/html;charset"/>
1565 #errors
1566 /meta;element not allowed:meta charset;m
1567 /meta;in XML:charset;m
1568 /meta/@content;meta content-type syntax error;m
1569
1570 #data
1571 <meta xmlns="http://www.w3.org/1999/xhtml"
1572 http-equiv="content-type"
1573 content="text/HTML; charset=us-ascii"/>
1574 #errors
1575 /meta;element not allowed:meta charset;m
1576 /meta;in XML:charset;m
1577 /meta/@content;mismatched charset name::us-ascii;unsupported
1578
1579 #data
1580 <meta xmlns="http://www.w3.org/1999/xhtml"
1581 http-equiv="content-type"
1582 content="text/html; charset=us-ascii"/>
1583 #errors
1584 /meta;element not allowed:meta charset;m
1585 /meta;in XML:charset;m
1586 /meta/@content;mismatched charset name::us-ascii;unsupported
1587
1588 #data
1589 <meta xmlns="http://www.w3.org/1999/xhtml"
1590 http-equiv="content-type"
1591 content="text/html ; charset=us-ascii"/>
1592 #errors
1593 /meta;element not allowed:meta charset;m
1594 /meta;in XML:charset;m
1595 /meta/@content;meta content-type syntax error;m
1596
1597 #data
1598 <meta xmlns="http://www.w3.org/1999/xhtml"
1599 http-equiv="content-type"
1600 content="text/html;&#x09;charset=us-ascii"/>
1601 #errors
1602 /meta;element not allowed:meta charset;m
1603 /meta;in XML:charset;m
1604 /meta/@content;mismatched charset name::us-ascii;unsupported
1605
1606 #data
1607 <meta xmlns="http://www.w3.org/1999/xhtml"
1608 http-equiv="content-type"
1609 content=" text/html; charset=us-ascii"/>
1610 #errors
1611 /meta;element not allowed:meta charset;m
1612 /meta;in XML:charset;m
1613 /meta/@content;meta content-type syntax error;m
1614
1615 #data
1616 <meta xmlns="http://www.w3.org/1999/xhtml"
1617 http-equiv="content-type"
1618 content="text/html; charset=&quot;us-ascii&quot;"/>
1619 #errors
1620 /meta;element not allowed:meta charset;m
1621 /meta;in XML:charset;m
1622 /meta/@content;charset:not registered:"us-ascii";w
1623 /meta/@content;mismatched charset name::"us-ascii";unsupported
1624
1625 #data
1626 <meta xmlns="http://www.w3.org/1999/xhtml"
1627 http-equiv="content-type"
1628 content="text/html; charset=x-sjis"/>
1629 #errors
1630 /meta;element not allowed:meta charset;m
1631 /meta;in XML:charset;m
1632 /meta/@content;mismatched charset name::x-sjis;unsupported
1633 /meta/@content;charset:not preferred:x-sjis;m
1634 /meta/@content;charset:private:x-sjis;w
1635
1636 #data html
1637 <!DOCTYPE HTML>
1638 <meta http-equiv=Content-Type content=text/html;charset=us-&#x61;scii>
1639 <title>x</title>
1640 <body>y</body>
1641 #errors
1642 /html/head/meta/@content;mismatched charset name::us-ascii;unsupported
1643 /html/head/meta/@content;character reference in charset;m
1644
1645 #data html
1646 <!DOCTYPE HTML>
1647 <meta http-equiv=Content-Type content=text/html; charset=us-ascii>
1648 <title>x</title>
1649 <body>y</body>
1650 #errors
1651 /html/head/meta/@charset;attribute not allowed
1652 /html/head/meta/@content;meta content-type syntax error;m
1653 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1654
1655 #data html
1656 <!DOCTYPE HTML>
1657 <meta http-equiv=Content-Type content="text/html;charset=us-ascii">
1658 <meta http-equiv=Content-Type content="text/html;charset=us-ascii">
1659 <title>x</title>
1660 <body>y</body>
1661 #errors
1662 /html/head/meta/@content;mismatched charset name::us-ascii;unsupported
1663 /html/head/meta/@content;mismatched charset name::us-ascii;unsupported
1664 /html/head/meta/@http-equiv;duplicate http-equiv;m
1665 /html/head/meta;element not allowed:meta charset;m
1666
1667 #data
1668 <head xmlns="http://www.w3.org/1999/xhtml">
1669 <title>x</title>
1670 <link rel="stylesheet" href="" title="style1"/>
1671 <link rel="stylesheet" href="" title="style2"/>
1672 <meta http-equiv="Default-Style" content="style1"/>
1673 <meta http-equiv="default-style" content="style2"/>
1674 </head>
1675 #errors
1676 /head/meta/@http-equiv;duplicate http-equiv;m
1677
1678 #data
1679 <head xmlns="http://www.w3.org/1999/xhtml">
1680 <title>x</title>
1681 <meta http-equiv="Refresh" content="13"/>
1682 </head>
1683 #errors
1684
1685 #data
1686 <head xmlns="http://www.w3.org/1999/xhtml">
1687 <title>x</title>
1688 <meta http-equiv="Refresh" content="0"/>
1689 </head>
1690 #errors
1691
1692 #data
1693 <head xmlns="http://www.w3.org/1999/xhtml">
1694 <title>x</title>
1695 <meta http-equiv="Refresh" content="000000013"/>
1696 </head>
1697 #errors
1698
1699 #data
1700 <head xmlns="http://www.w3.org/1999/xhtml">
1701 <title>x</title>
1702 <meta http-equiv="Refresh" content="+12"/>
1703 </head>
1704 #errors
1705 /head/meta/@content;refresh:syntax error;m
1706
1707 #data
1708 <head xmlns="http://www.w3.org/1999/xhtml">
1709 <title>x</title>
1710 <meta http-equiv="Refresh" content="12.0"/>
1711 </head>
1712 #errors
1713 /head/meta/@content;refresh:syntax error;m
1714
1715 #data
1716 <head xmlns="http://www.w3.org/1999/xhtml">
1717 <title>x</title>
1718 <meta http-equiv="Refresh" content="12 "/>
1719 </head>
1720 #errors
1721 /head/meta/@content;refresh:syntax error;m
1722
1723 #data
1724 <head xmlns="http://www.w3.org/1999/xhtml">
1725 <title>x</title>
1726 <meta http-equiv="Refresh" content=" 12"/>
1727 </head>
1728 #errors
1729 /head/meta/@content;refresh:syntax error;m
1730
1731 #data
1732 <head xmlns="http://www.w3.org/1999/xhtml">
1733 <title>x</title>
1734 <meta http-equiv="Refresh" content="44;url=http://www.example.com/"/>
1735 </head>
1736 #errors
1737 /head/meta/@content;refresh:syntax error;m
1738
1739 #data
1740 <head xmlns="http://www.w3.org/1999/xhtml">
1741 <title>x</title>
1742 <meta http-equiv="Refresh" content=" 45; url=aaa"/>
1743 </head>
1744 #errors
1745 /head/meta/@content;refresh:syntax error;m
1746
1747 #data
1748 <head xmlns="http://www.w3.org/1999/xhtml">
1749 <title>x</title>
1750 <meta http-equiv="Refresh" content="0 ; url=bb"/>
1751 </head>
1752 #errors
1753 /head/meta/@content;refresh:syntax error;m
1754
1755 #data
1756 <head xmlns="http://www.w3.org/1999/xhtml">
1757 <title>x</title>
1758 <meta http-equiv="Refresh" content="4; url = aa"/>
1759 </head>
1760 #errors
1761 /head/meta/@content;refresh:syntax error;m
1762
1763 #data
1764 <head xmlns="http://www.w3.org/1999/xhtml">
1765 <title>x</title>
1766 <meta http-equiv="Refresh" content="5; url=http://www.example.com/"/>
1767 </head>
1768 #errors
1769
1770 #data
1771 <head xmlns="http://www.w3.org/1999/xhtml">
1772 <title>x</title>
1773 <meta http-equiv="Refresh" content="4; url= http://test/"/>
1774 </head>
1775 #errors
1776 /head/meta/@content;URI::syntax error:iriref3987;m
1777
1778 #data
1779 <head xmlns="http://www.w3.org/1999/xhtml">
1780 <title>x</title>
1781 <meta http-equiv="Refresh" content="4; url=[a]"/>
1782 </head>
1783 #errors
1784 /head/meta/@content;URI::syntax error:iriref3987;m
1785
1786 #data
1787 <head xmlns="http://www.w3.org/1999/xhtml">
1788 <title>x</title>
1789 <meta http-equiv="Refresh" content="4; url=&quot;http://&quot;"/>
1790 </head>
1791 #errors
1792 /head/meta/@content;URI::syntax error:iriref3987;m
1793 /head/meta/@content;URI::empty path;w
1794 /head/meta/@content;URI::non-DNS host;w
1795
1796 #data
1797 <head xmlns="http://www.w3.org/1999/xhtml">
1798 <title>x</title>
1799 <meta http-equiv="Refresh" content="4; url=http://www.example.com/"/>
1800 <meta http-equiv="Refresh" content="4; url=http://www.example.com/"/>
1801 </head>
1802 #errors
1803 /head/meta/@http-equiv;duplicate http-equiv;m
1804
1805 #data
1806 <head xmlns="http://www.w3.org/1999/xhtml">
1807 <title>x</title>
1808 <meta http-equiv="Refresh" content="4; url=http://www.example.com/"/>
1809 <base href=""/>
1810 </head>
1811 #errors
1812 /head/base;basehref after URI attribute
1813
1814 #data
1815 <style type="" xmlns="http://www.w3.org/1999/xhtml"/>
1816 #errors
1817 /style/@type;IMT:syntax error
1818 /style;style:;unsupported
1819
1820 #data
1821 <style type="text" xmlns="http://www.w3.org/1999/xhtml"/>
1822 #errors
1823 /style/@type;IMT:syntax error
1824 /style;style:text;unsupported
1825
1826 #data
1827 <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
1828 #errors
1829 /style;SUBDOC
1830
1831 #data
1832 <style type="Text/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
1833 #errors
1834 /style;SUBDOC
1835
1836 #data
1837 <style type="TEXT/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
1838 #errors
1839 /style;SUBDOC
1840
1841 #data
1842 <style type="text/css; charset=us-ascii" xmlns="http://www.w3.org/1999/xhtml">
1843 <!-- NOTE: |charset| parameter here is meaningless (or harmful?),
1844 but syntactically correct. -->
1845 </style>
1846 #errors
1847 /style;style:text/css; charset=us-ascii;unsupported
1848
1849 #data
1850 <style media="all" xmlns="http://www.w3.org/1999/xhtml"/>
1851 #errors
1852 /style;SUBDOC
1853 /style/@media;media query;unsupported
1854
1855 #data
1856 <style media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
1857 #errors
1858 /style;SUBDOC
1859 /style/@media;media query;unsupported
1860
1861 #data
1862 <head xmlns="http://www.w3.org/1999/xhtml">
1863 <title>x</title>
1864 <style scoped=""/>
1865 </head>
1866 #errors
1867 /head/style;SUBDOC
1868 /head/style;element not allowed:head style;m
1869
1870 #data
1871 <article xmlns="http://www.w3.org/1999/xhtml">
1872 <style/>
1873 </article>
1874 #errors
1875 /article/style;element not allowed:flow style;m
1876 /article/style;SUBDOC
1877 /article;no significant content;s
1878
1879 #data
1880 <article xmlns="http://www.w3.org/1999/xhtml">
1881 <style scoped=""/>
1882 </article>
1883 #errors
1884 /article/style;SUBDOC
1885 /article;no significant content;s
1886
1887 #data
1888 <aside xmlns="http://www.w3.org/1999/xhtml">
1889 <style/>
1890 </aside>
1891 #errors
1892 /aside/style;element not allowed:flow style;m
1893 /aside/style;SUBDOC
1894 /aside;no significant content;s
1895
1896 #data
1897 <aside xmlns="http://www.w3.org/1999/xhtml">
1898 <style scoped=""/>
1899 </aside>
1900 #errors
1901 /aside/style;SUBDOC
1902 /aside;no significant content;s
1903
1904 #data
1905 <div xmlns="http://www.w3.org/1999/xhtml">
1906 <style/>
1907 </div>
1908 #errors
1909 /div/style;element not allowed:flow style;m
1910 /div/style;SUBDOC
1911 /div;no significant content;s
1912
1913 #data
1914 <div xmlns="http://www.w3.org/1999/xhtml">
1915 <style scoped=""/>
1916 </div>
1917 #errors
1918 /div/style;SUBDOC
1919 /div;no significant content;s
1920
1921 #data
1922 <section xmlns="http://www.w3.org/1999/xhtml">
1923 <style/>
1924 </section>
1925 #errors
1926 /section/style;element not allowed:flow style;m
1927 /section/style;SUBDOC
1928 /section;no significant content;s
1929
1930 #data
1931 <section xmlns="http://www.w3.org/1999/xhtml">
1932 <style scoped=""/>
1933 </section>
1934 #errors
1935 /section/style;SUBDOC
1936 /section;no significant content;s
1937
1938 #data
1939 <section xmlns="http://www.w3.org/1999/xhtml">
1940 <style scope=""/>
1941 </section>
1942 #errors
1943 /section/style/@scope;attribute;unsupported
1944 /section/style;element not allowed:flow style;m
1945 /section/style;SUBDOC
1946 /section;no significant content;s
1947
1948 #data
1949 <body background="" xmlns="http://www.w3.org/1999/xhtml">x</body>
1950 #errors
1951 /body/@background;attribute not defined;m
1952
1953 #data
1954 <body background="a.png" xmlns="http://www.w3.org/1999/xhtml">x</body>
1955 #errors
1956 /body/@background;attribute not defined;m
1957
1958 #data
1959 <body background="[]" xmlns="http://www.w3.org/1999/xhtml">x</body>
1960 #errors
1961 /body/@background;attribute not defined;m
1962 /body/@background;URI::syntax error:iriref3987;m
1963
1964 #data
1965 <body text="red" xmlns="http://www.w3.org/1999/xhtml"/>
1966 #errors
1967 /body/@text;attribute not defined;m
1968 /body;no significant content;s
1969
1970 #data
1971 <body text="" xmlns="http://www.w3.org/1999/xhtml">x</body>
1972 #errors
1973 /body/@text;attribute not defined;m
1974 /body/@text;color:syntax error;m
1975
1976 #data
1977 <body link="" xmlns="http://www.w3.org/1999/xhtml">x</body>
1978 #errors
1979 /body/@link;attribute not defined;m
1980 /body/@link;color:syntax error;m
1981
1982 #data
1983 <body link="#c0c0c0" xmlns="http://www.w3.org/1999/xhtml">x</body>
1984 #errors
1985 /body/@link;attribute not defined;m
1986
1987 #data
1988 <body alink="" xmlns="http://www.w3.org/1999/xhtml">x</body>
1989 #errors
1990 /body/@alink;attribute not defined;m
1991 /body/@alink;color:syntax error;m
1992
1993 #data
1994 <body alink="Red" xmlns="http://www.w3.org/1999/xhtml">x</body>
1995 #errors
1996 /body/@alink;attribute not defined;m
1997
1998 #data
1999 <body vlink="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2000 #errors
2001 /body/@vlink;attribute not defined;m
2002 /body/@vlink;color:syntax error;m
2003
2004 #data
2005 <body vlink="orange" xmlns="http://www.w3.org/1999/xhtml">x</body>
2006 #errors
2007 /body/@vlink;attribute not defined;m
2008 /body/@vlink;color:syntax error;m
2009
2010 #data
2011 <body alink="000000" xmlns="http://www.w3.org/1999/xhtml">x</body>
2012 #errors
2013 /body/@alink;attribute not defined;m
2014 /body/@alink;color:syntax error;m
2015
2016 #data
2017 <body bgcolor="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2018 #errors
2019 /body/@bgcolor;attribute not defined;m
2020 /body/@bgcolor;color:syntax error;m
2021
2022 #data
2023 <body bgcolor="#ffffff" xmlns="http://www.w3.org/1999/xhtml">x</body>
2024 #errors
2025 /body/@bgcolor;attribute not defined;m
2026
2027 #data
2028 <blockquote cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2029 #errors
2030 /blockquote;no significant content;s
2031
2032 #data
2033 <blockquote cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml"/>
2034 #errors
2035 /blockquote/@cite;URI::syntax error:iriref3987;m
2036 /blockquote;no significant content;s
2037
2038 #data
2039 <h1 align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2040 #errors
2041 /h1/@align;attribute not defined;m
2042 /h1;no significant content;s
2043
2044 #data
2045 <h1 align="nonleft" xmlns="http://www.w3.org/1999/xhtml">x</h1>
2046 #errors
2047 /h1/@align;attribute not defined;m
2048 /h1/@align;enumerated:invalid
2049
2050 #data
2051 <h2 align="justify" xmlns="http://www.w3.org/1999/xhtml">x</h2>
2052 #errors
2053 /h2/@align;attribute not defined;m
2054
2055 #data
2056 <address align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2057 #errors
2058 /address/@align;attribute;unsupported
2059 /address;no significant content;s
2060
2061 #data
2062 <p align="" xmlns="http://www.w3.org/1999/xhtml"/>
2063 #errors
2064 /p/@align;attribute not defined;m
2065 /p/@align;enumerated:invalid
2066 /p;no significant content;s
2067
2068 #data
2069 <p align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2070 #errors
2071 /p/@align;attribute not defined;m
2072 /p;no significant content;s
2073
2074 #data
2075 <p align="justifY" xmlns="http://www.w3.org/1999/xhtml"/>
2076 #errors
2077 /p/@align;attribute not defined;m
2078 /p;no significant content;s
2079
2080 #data
2081 <hr align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2082 #errors
2083 /hr/@align;attribute;unsupported
2084
2085 #data
2086 <br clear="" xmlns="http://www.w3.org/1999/xhtml"/>
2087 #errors
2088 /br/@clear;attribute not defined;m
2089 /br/@clear;enumerated:invalid
2090
2091 #data
2092 <br clear="left" xmlns="http://www.w3.org/1999/xhtml"/>
2093 #errors
2094 /br/@clear;attribute not defined;m
2095
2096 #data
2097 <br clear="right" xmlns="http://www.w3.org/1999/xhtml"/>
2098 #errors
2099 /br/@clear;attribute not defined;m
2100
2101 #data
2102 <br clear="all" xmlns="http://www.w3.org/1999/xhtml"/>
2103 #errors
2104 /br/@clear;attribute not defined;m
2105
2106 #data
2107 <br clear="none" xmlns="http://www.w3.org/1999/xhtml"/>
2108 #errors
2109 /br/@clear;attribute not defined;m
2110
2111 #data
2112 <br clear="both" xmlns="http://www.w3.org/1999/xhtml"/>
2113 #errors
2114 /br/@clear;attribute not defined;m
2115 /br/@clear;enumerated:invalid
2116
2117 #data
2118 <dialog compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2119 #errors
2120 /dialog/@compact;attribute;unsupported
2121
2122 #data
2123 <pre width="" xmlns="http://www.w3.org/1999/xhtml"/>
2124 #errors
2125 /pre/@width;attribute not defined;m
2126 /pre/@width;nninteger:syntax error
2127 /pre;no significant content;s
2128
2129 #data
2130 <pre width="0" xmlns="http://www.w3.org/1999/xhtml"/>
2131 #errors
2132 /pre/@width;attribute not defined;m
2133 /pre;no significant content;s
2134
2135 #data
2136 <pre width="4" xmlns="http://www.w3.org/1999/xhtml"/>
2137 #errors
2138 /pre/@width;attribute not defined;m
2139 /pre;no significant content;s
2140
2141 #data
2142 <pre width="1224" xmlns="http://www.w3.org/1999/xhtml"/>
2143 #errors
2144 /pre/@width;attribute not defined;m
2145 /pre;no significant content;s
2146
2147 #data
2148 <pre width="0000122" xmlns="http://www.w3.org/1999/xhtml"/>
2149 #errors
2150 /pre/@width;attribute not defined;m
2151 /pre;no significant content;s
2152
2153 #data
2154 <pre width="-122" xmlns="http://www.w3.org/1999/xhtml"/>
2155 #errors
2156 /pre/@width;attribute not defined;m
2157 /pre/@width;nninteger:syntax error
2158 /pre;no significant content;s
2159
2160 #data
2161 <pre width="12.0" xmlns="http://www.w3.org/1999/xhtml"/>
2162 #errors
2163 /pre/@width;attribute not defined;m
2164 /pre/@width;nninteger:syntax error
2165 /pre;no significant content;s
2166
2167 #data
2168 <pre width=" 12" xmlns="http://www.w3.org/1999/xhtml"/>
2169 #errors
2170 /pre/@width;attribute not defined;m
2171 /pre/@width;nninteger:syntax error
2172 /pre;no significant content;s
2173
2174 #data
2175 <pre width="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
2176 #errors
2177 /pre/@width;attribute not defined;m
2178 /pre/@width;nninteger:syntax error
2179 /pre;no significant content;s
2180
2181 #data
2182 <pre xml:space="preserve" xmlns="http://www.w3.org/1999/xhtml"/>
2183 #errors
2184 /pre;no significant content;s
2185
2186 #data
2187 <pre xml:space="default" xmlns="http://www.w3.org/1999/xhtml"/>
2188 #errors
2189 /pre;no significant content;s
2190
2191 #data
2192 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
2193 #errors
2194 /ol/@start;integer:syntax error
2195
2196 #data
2197 <ol start="0" xmlns="http://www.w3.org/1999/xhtml"/>
2198 #errors
2199
2200 #data
2201 <ol start="1" xmlns="http://www.w3.org/1999/xhtml"/>
2202 #errors
2203
2204 #data
2205 <ol start="2" xmlns="http://www.w3.org/1999/xhtml"/>
2206 #errors
2207
2208 #data
2209 <ol start="10" xmlns="http://www.w3.org/1999/xhtml"/>
2210 #errors
2211
2212 #data
2213 <ol start="-0" xmlns="http://www.w3.org/1999/xhtml"/>
2214 #errors
2215
2216 #data
2217 <ol start="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2218 #errors
2219
2220 #data
2221 <ol start="-10" xmlns="http://www.w3.org/1999/xhtml"/>
2222 #errors
2223
2224 #data
2225 <ol start="0000" xmlns="http://www.w3.org/1999/xhtml"/>
2226 #errors
2227
2228 #data
2229 <ol start="0001" xmlns="http://www.w3.org/1999/xhtml"/>
2230 #errors
2231
2232 #data
2233 <ol start="00001" xmlns="http://www.w3.org/1999/xhtml"/>
2234 #errors
2235
2236 #data
2237 <ol start="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
2238 #errors
2239
2240 #data
2241 <ol start="-100000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
2242 #errors
2243
2244 #data
2245 <ol start="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
2246 #errors
2247 /ol/@start;integer:syntax error
2248
2249 #data
2250 <ol start="-1.0" xmlns="http://www.w3.org/1999/xhtml"/>
2251 #errors
2252 /ol/@start;integer:syntax error
2253
2254 #data
2255 <ol start="+0" xmlns="http://www.w3.org/1999/xhtml"/>
2256 #errors
2257 /ol/@start;integer:syntax error
2258
2259 #data
2260 <ol start="+1" xmlns="http://www.w3.org/1999/xhtml"/>
2261 #errors
2262 /ol/@start;integer:syntax error
2263
2264 #data
2265 <ol start="-+1" xmlns="http://www.w3.org/1999/xhtml"/>
2266 #errors
2267 /ol/@start;integer:syntax error
2268
2269 #data
2270 <ol start="1aaa" xmlns="http://www.w3.org/1999/xhtml"/>
2271 #errors
2272 /ol/@start;integer:syntax error
2273
2274 #data
2275 <ol start="xxxxx" xmlns="http://www.w3.org/1999/xhtml"/>
2276 #errors
2277 /ol/@start;integer:syntax error
2278
2279 #data
2280 <ol start=" 1" xmlns="http://www.w3.org/1999/xhtml"/>
2281 #errors
2282 /ol/@start;integer:syntax error
2283
2284 #data
2285 <ol start="1 " xmlns="http://www.w3.org/1999/xhtml"/>
2286 #errors
2287 /ol/@start;integer:syntax error
2288
2289 #data
2290 <ol start=" 1 " xmlns="http://www.w3.org/1999/xhtml"/>
2291 #errors
2292 /ol/@start;integer:syntax error
2293
2294 #data
2295 <ol start="_1" xmlns="http://www.w3.org/1999/xhtml"/>
2296 #errors
2297 /ol/@start;integer:syntax error
2298
2299 #data
2300 <ol start="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
2301 #errors
2302 /ol/@start;integer:syntax error
2303
2304 #data
2305 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
2306 #errors
2307 /ol/@start;integer:syntax error
2308
2309 #data
2310 <ol start="&#x2212;1" xmlns="http://www.w3.org/1999/xhtml"/>
2311 #errors
2312 /ol/@start;integer:syntax error
2313
2314 #data
2315 <ol reversed="" xmlns="http://www.w3.org/1999/xhtml"/>
2316 #errors
2317
2318 #data
2319 <ol reversed="reversed" xmlns="http://www.w3.org/1999/xhtml"/>
2320 #errors
2321
2322 #data
2323 <ol reversed="REVERSED" xmlns="http://www.w3.org/1999/xhtml"/>
2324 #errors
2325
2326 #data
2327 <ol reversed=" reversed " xmlns="http://www.w3.org/1999/xhtml"/>
2328 #errors
2329 /ol/@reversed;boolean:invalid;m
2330
2331 #data
2332 <ol reversed="yes" xmlns="http://www.w3.org/1999/xhtml"/>
2333 #errors
2334 /ol/@reversed;boolean:invalid;m
2335
2336 #data
2337 <ol reversed="on" xmlns="http://www.w3.org/1999/xhtml"/>
2338 #errors
2339 /ol/@reversed;boolean:invalid;m
2340
2341 #data
2342 <ol reversed="true" xmlns="http://www.w3.org/1999/xhtml"/>
2343 #errors
2344 /ol/@reversed;boolean:invalid;m
2345
2346 #data
2347 <ol reverse="" xmlns="http://www.w3.org/1999/xhtml"/>
2348 #errors
2349 /ol/@reverse;attribute not defined;m
2350
2351 #data
2352 <ol reversed="reverse" xmlns="http://www.w3.org/1999/xhtml"/>
2353 #errors
2354 /ol/@reversed;boolean:invalid;m
2355
2356 #data
2357 <ol xmlns="http://www.w3.org/1999/xhtml">
2358 <li value=""/>
2359 </ol>
2360 #error
2361 /ol/li/@value;integer:syntax error
2362 /ol/li;no significant content;s
2363
2364 #data
2365 <ol xmlns="http://www.w3.org/1999/xhtml">
2366 <li value="1"/>
2367 </ol>
2368 #error
2369 /ol/li;no significant content;s
2370
2371 #data
2372 <ol xmlns="http://www.w3.org/1999/xhtml">
2373 <li value="0"/>
2374 </ol>
2375 #error
2376 /ol/li;no significant content;s
2377
2378 #data
2379 <ol xmlns="http://www.w3.org/1999/xhtml">
2380 <li value="-1"/>
2381 </ol>
2382 #error
2383 /ol/li;no significant content;s
2384
2385 #data
2386 <ol xmlns="http://www.w3.org/1999/xhtml">
2387 <li value="+1"/>
2388 </ol>
2389 #error
2390 /ol/li;no significant content;s
2391
2392 #data
2393 <ol xmlns="http://www.w3.org/1999/xhtml">
2394 <li value="xxx"/>
2395 </ol>
2396 #error
2397 /ol/li/@value;integer:syntax error
2398 /ol/li;no significant content;s
2399
2400 #data
2401 <ul xmlns="http://www.w3.org/1999/xhtml">
2402 <li value=""/>
2403 </ul>
2404 #error
2405 /ul/li/@value;attribute;unsupported
2406 /ul/li/@value;integer:syntax error
2407 /ul/li;no significant content;s
2408
2409 #data
2410 <ul xmlns="http://www.w3.org/1999/xhtml">
2411 <li value="1"/>
2412 </ul>
2413 #error
2414 /ul/li/@value;attribute;unsupported
2415 /ul/li;no significant content;s
2416
2417 #data
2418 <ul xmlns="http://www.w3.org/1999/xhtml">
2419 <li value="0"/>
2420 </ul>
2421 #error
2422 /ul/li/@value;attribute;unsupported
2423 /ul/li;no significant content;s
2424
2425 #data
2426 <ul xmlns="http://www.w3.org/1999/xhtml">
2427 <li value="-1"/>
2428 </ul>
2429 #error
2430 /ul/li/@value;attribute;unsupported
2431 /ul/li;no significant content;s
2432
2433 #data
2434 <ul xmlns="http://www.w3.org/1999/xhtml">
2435 <li value="+1"/>
2436 </ul>
2437 #error
2438 /ul/li/@value;attribute;unsupported
2439 /ul/li;no significant content;s
2440
2441 #data
2442 <ul xmlns="http://www.w3.org/1999/xhtml">
2443 <li value="xxx"/>
2444 </ul>
2445 #error
2446 /ul/li/@value;attribute;unsupported
2447 /ul/li/@value;integer:syntax error
2448 /ul/li;no significant content;s
2449
2450 #data
2451 <li value="" xmlns="http://www.w3.org/1999/xhtml"/>
2452 #error
2453 /li/@value;attribute;unsupported
2454 /li/@value;integer:syntax error
2455 /li;no significant content;s
2456
2457 #data
2458 <li value="1" xmlns="http://www.w3.org/1999/xhtml"/>
2459 #error
2460 /li/@value;attribute;unsupported
2461 /li;no significant content;s
2462
2463 #data
2464 <li value="0" xmlns="http://www.w3.org/1999/xhtml"/>
2465 #error
2466 /li/@value;attribute;unsupported
2467 /li;no significant content;s
2468
2469 #data
2470 <li value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2471 #error
2472 /li/@value;attribute;unsupported
2473 /li;no significant content;s
2474
2475 #data
2476 <li value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
2477 #error
2478 /li/@value;attribute;unsupported
2479 /li;no significant content;s
2480
2481 #data
2482 <li value="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
2483 #error
2484 /li/@value;attribute;unsupported
2485 /li/@value;integer:syntax error
2486 /li;no significant content;s
2487
2488 #data
2489 <ol compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2490 #error
2491 /ol/@compact;attribute not defined;m
2492
2493 #data
2494 <ol compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
2495 #error
2496 /ol/@compact;attribute not defined;m
2497
2498 #data
2499 <ol compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
2500 #error
2501 /ol/@compact;attribute not defined;m
2502
2503 #data
2504 <ol compact="Compat" xmlns="http://www.w3.org/1999/xhtml"/>
2505 #error
2506 /ol/@compact;attribute not defined;m
2507 /ol/@compact;boolean:invalid;m
2508
2509 #data
2510 <ul compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2511 #error
2512 /ul/@compact;attribute not defined;m
2513
2514 #data
2515 <ul compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
2516 #error
2517 /ul/@compact;attribute not defined;m
2518
2519 #data
2520 <ul compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
2521 #error
2522 /ul/@compact;attribute not defined;m
2523
2524 #data
2525 <ul compact="compat" xmlns="http://www.w3.org/1999/xhtml"/>
2526 #error
2527 /ul/@compact;attribute not defined;m
2528 /ul/@compact;boolean:invalid;m
2529
2530 #data
2531 <dir compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2532 #error
2533 /dir/@compact;attribute not defined;m
2534 /dir;element not defined;m
2535
2536 #data
2537 <dir compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
2538 #error
2539 /dir/@compact;attribute not defined;m
2540 /dir;element not defined;m
2541
2542 #data
2543 <dir compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
2544 #error
2545 /dir/@compact;attribute not defined;m
2546 /dir;element not defined;m
2547
2548 #data
2549 <dir compact="combact" xmlns="http://www.w3.org/1999/xhtml"/>
2550 #error
2551 /dir/@compact;attribute not defined;m
2552 /dir/@compact;boolean:invalid;m
2553 /dir;element not defined;m
2554
2555 #data
2556 <menu compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2557 #error
2558 /menu/@compact;attribute not defined;m
2559 /menu;no significant content;s
2560
2561 #data
2562 <menu compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
2563 #error
2564 /menu/@compact;attribute not defined;m
2565 /menu;no significant content;s
2566
2567 #data
2568 <menu compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
2569 #error
2570 /menu/@compact;attribute not defined;m
2571 /menu;no significant content;s
2572
2573 #data
2574 <menu compact="conpact" xmlns="http://www.w3.org/1999/xhtml"/>
2575 #error
2576 /menu/@compact;attribute not defined;m
2577 /menu/@compact;boolean:invalid;m
2578 /menu;no significant content;s
2579
2580 #data
2581 <dl compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2582 #error
2583 /dl/@compact;attribute not defined;m
2584
2585 #data
2586 <dl compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
2587 #error
2588 /dl/@compact;attribute not defined;m
2589
2590 #data
2591 <dl compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
2592 #error
2593 /dl/@compact;attribute not defined;m
2594
2595 #data
2596 <dl compact="compacts" xmlns="http://www.w3.org/1999/xhtml"/>
2597 #error
2598 /dl/@compact;attribute not defined;m
2599 /dl/@compact;boolean:invalid;m
2600
2601 #data
2602 <a xmlns="http://www.w3.org/1999/xhtml"/>
2603 #errors
2604 /a;no significant content;s
2605
2606 #data
2607 <a href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2608 #errors
2609 /a;no significant content;s
2610
2611 #data
2612 <a href="http://test/[44::]/" xmlns="http://www.w3.org/1999/xhtml"/>
2613 #errors
2614 /a/@href;URI::syntax error:iriref3987;m
2615 /a;no significant content;s
2616
2617 #data
2618 <a href="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
2619 #errors
2620 /a/@type;IMT:syntax error
2621 /a;no significant content;s
2622
2623 #data
2624 <a href="http://test/" type="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
2625 #errors
2626 /a;no significant content;s
2627
2628 #data
2629 <a href="http://test/" rel="" xmlns="http://www.w3.org/1999/xhtml"/>
2630 #errors
2631 /a;no significant content;s
2632
2633 #data
2634 <a href="http://test/" rel="author contact"
2635 xmlns="http://www.w3.org/1999/xhtml"/>
2636 #errors
2637 /a;no significant content;s
2638
2639 #data
2640 <a href="http://test/" rel="author author" xmlns="http://www.w3.org/1999/xhtml"/>
2641 #errors
2642 /a/@rel;duplicate token:author
2643 /a;no significant content;s
2644
2645 #data
2646 <a href="http://test/" rel="bookmark" xmlns="http://www.w3.org/1999/xhtml"/>
2647 #errors
2648 /a;no significant content;s
2649
2650 #data
2651 <a href="http://test/" rel="previous" xmlns="http://www.w3.org/1999/xhtml"/>
2652 #errors
2653 /a/@rel;link type:non-conforming:previous
2654 /a;no significant content;s
2655
2656 #data
2657 <a href="http://test/" rel="edit" xmlns="http://www.w3.org/1999/xhtml"/>
2658 #errors
2659 /a/@rel;link type:proposed:edit;s
2660 /a;no significant content;s
2661
2662 #data
2663 <a href="http://test/" rel="script" xmlns="http://www.w3.org/1999/xhtml"/>
2664 #errors
2665 /a/@rel;link type:non-conforming:script
2666 /a;no significant content;s
2667
2668 #data
2669 <a href="http://test/" rel="stylesheet" xmlns="http://www.w3.org/1999/xhtml"/>
2670 #errors
2671 /a/@rel;link type:bad context:stylesheet
2672 /a;no significant content;s
2673
2674 #data
2675 <a href="http://test/" rel="test-type" xmlns="http://www.w3.org/1999/xhtml"/>
2676 #errors
2677 /a/@rel;link type:test-type;unsupported
2678 /a;no significant content;s
2679
2680 #data
2681 <a href="http://test/" ping="http://a.test/"
2682 xmlns="http://www.w3.org/1999/xhtml"/>
2683 #errors
2684 /a;no significant content;s
2685
2686 #data
2687 <a href="http://test/" ping="http://a.test/ http://b.test/"
2688 xmlns="http://www.w3.org/1999/xhtml"/>
2689 #errors
2690 /a;no significant content;s
2691
2692 #data
2693 <a href="http://test/" ping="http://a.test/ [b.test]"
2694 xmlns="http://www.w3.org/1999/xhtml"/>
2695 #errors
2696 /a/@ping;URIs::syntax error:iriref3987:1;m
2697 /a;no significant content;s
2698
2699 #data
2700 <a href="http://test/" hreflang=""
2701 xmlns="http://www.w3.org/1999/xhtml"/>
2702 #errors
2703 /a/@hreflang;LangTag:nosemantics:language;m
2704 /a;no significant content;s
2705
2706 #data
2707 <a href="http://test/" hreflang="en"
2708 xmlns="http://www.w3.org/1999/xhtml"/>
2709 #errors
2710 /a;no significant content;s
2711
2712 #data
2713 <a href="http://test/" media="all"
2714 xmlns="http://www.w3.org/1999/xhtml"/>
2715 #errors
2716 /a/@media;media query;unsupported
2717 /a;no significant content;s
2718
2719 #data
2720 <a href="http://test/" target=""
2721 xmlns="http://www.w3.org/1999/xhtml"/>
2722 #errors
2723 /a;no significant content;s
2724 /a/@target;window name:empty;m
2725
2726 #data
2727 <a href="http://test/" target="_self"
2728 xmlns="http://www.w3.org/1999/xhtml"/>
2729 #errors
2730 /a;no significant content;s
2731
2732 #data
2733 <a href="http://test/" target="_parent"
2734 xmlns="http://www.w3.org/1999/xhtml"/>
2735 #errors
2736 /a;no significant content;s
2737
2738 #data
2739 <a href="http://test/" target="_top"
2740 xmlns="http://www.w3.org/1999/xhtml"/>
2741 #errors
2742 /a;no significant content;s
2743
2744 #data
2745 <a href="http://test/" target="_Top"
2746 xmlns="http://www.w3.org/1999/xhtml"/>
2747 #errors
2748 /a;no significant content;s
2749
2750 #data
2751 <a href="http://test/" target="_TOP"
2752 xmlns="http://www.w3.org/1999/xhtml"/>
2753 #errors
2754 /a;no significant content;s
2755
2756 #data
2757 <a href="http://test/" target="_blank"
2758 xmlns="http://www.w3.org/1999/xhtml"/>
2759 #errors
2760 /a;no significant content;s
2761
2762 #data
2763 <a href="http://test/" target="_main"
2764 xmlns="http://www.w3.org/1999/xhtml"/>
2765 #errors
2766 /a/@target;window name:reserved;m
2767 /a;no significant content;s
2768
2769 #data
2770 <a href="http://test/" target="abcde"
2771 xmlns="http://www.w3.org/1999/xhtml"/>
2772 #errors
2773 /a;no significant content;s
2774
2775 #data
2776 <a href="http://test/" target="_"
2777 xmlns="http://www.w3.org/1999/xhtml"/>
2778 #errors
2779 /a/@target;window name:reserved;m
2780 /a;no significant content;s
2781
2782 #data
2783 <a type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
2784 #errors
2785 /a/@type;attribute not allowed
2786 /a;no significant content;s
2787
2788 #data
2789 <a rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
2790 #errors
2791 /a/@rel;attribute not allowed
2792 /a;no significant content;s
2793
2794 #data
2795 <a rev="" xmlns="http://www.w3.org/1999/xhtml">x</a>
2796 #errors
2797 /a/@rev;attribute not defined;m
2798
2799 #data
2800 <a rev="made" xmlns="http://www.w3.org/1999/xhtml">x</a>
2801 #errors
2802 /a/@rev;attribute not defined;m
2803
2804 #data
2805 <a rev=" made" xmlns="http://www.w3.org/1999/xhtml">x</a>
2806 #errors
2807 /a/@rev;attribute not defined;m
2808
2809 #data
2810 <a rev="made made" xmlns="http://www.w3.org/1999/xhtml">x</a>
2811 #errors
2812 /a/@rev;attribute not defined;m
2813 /a/@rev;duplicate token:made
2814
2815 #data
2816 <a ping="a" xmlns="http://www.w3.org/1999/xhtml"/>
2817 #errors
2818 /a/@ping;attribute not allowed
2819 /a;no significant content;s
2820
2821 #data
2822 <a hreflang="en" xmlns="http://www.w3.org/1999/xhtml"/>
2823 #errors
2824 /a/@hreflang;attribute not allowed
2825 /a;no significant content;s
2826
2827 #data
2828 <a media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
2829 #errors
2830 /a/@media;attribute not allowed
2831 /a/@media;media query;unsupported
2832 /a;no significant content;s
2833
2834 #data
2835 <a target="_self"
2836 xmlns="http://www.w3.org/1999/xhtml"/>
2837 #errors
2838 /a/@target;attribute not allowed
2839 /a;no significant content;s
2840
2841 #data
2842 <p xmlns="http://www.w3.org/1999/xhtml">
2843 <b><a href="">a</a></b>
2844 <i><a type="text/plain">x</a></i>
2845 </p>
2846 #errors
2847 /p/i/a/@type;attribute not allowed
2848
2849 #data
2850 <q cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</q>
2851 #errors
2852
2853 #data
2854 <q cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml">x</q>
2855 #errors
2856 /q/@cite;URI::syntax error:iriref3987;m
2857
2858 #data
2859 <big xmlns="http://www.w3.org/1999/xhtml"></big>
2860 #errors
2861 /big;element not defined;m
2862 /big;no significant content;s
2863
2864 #data
2865 <big xmlns="http://www.w3.org/1999/xhtml"> </big>
2866 #errors
2867 /big;element not defined;m
2868 /big;no significant content;s
2869
2870 #data
2871 <big xmlns="http://www.w3.org/1999/xhtml">x</big>
2872 #errors
2873 /big;element not defined;m
2874
2875 #data
2876 <big xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></big>
2877 #errors
2878 /big;element not defined;m
2879
2880 #data
2881 <big xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</big>
2882 #errors
2883 /big;element not defined;m
2884 /big/style;element not allowed:phrasing;m
2885 /big/style;SUBDOC
2886
2887 #data
2888 <big xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></big>
2889 #errors
2890 /big;element not defined;m
2891 /big/p;element not allowed:phrasing;m
2892
2893 #data
2894 <span xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></span>
2895 #errors
2896 /span/big;element not allowed:phrasing;m
2897 /span/big;element not defined;m
2898
2899 #data
2900 <div xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></div>
2901 #errors
2902 /div/big;element not allowed:flow;m
2903 /div/big;element not defined;m
2904
2905 #data
2906 <rule xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></rule>
2907 #errors
2908 /rule/big;element not defined;m
2909
2910 #data
2911 <acronym xmlns="http://www.w3.org/1999/xhtml"></acronym>
2912 #errors
2913 /acronym;element not defined;m
2914 /acronym;no significant content;s
2915
2916 #data
2917 <acronym xmlns="http://www.w3.org/1999/xhtml"> </acronym>
2918 #errors
2919 /acronym;element not defined;m
2920 /acronym;no significant content;s
2921
2922 #data
2923 <acronym xmlns="http://www.w3.org/1999/xhtml">x</acronym>
2924 #errors
2925 /acronym;element not defined;m
2926
2927 #data
2928 <acronym xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></acronym>
2929 #errors
2930 /acronym;element not defined;m
2931
2932 #data
2933 <acronym xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</acronym>
2934 #errors
2935 /acronym;element not defined;m
2936 /acronym/style;element not allowed:phrasing;m
2937 /acronym/style;SUBDOC
2938
2939 #data
2940 <acronym xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></acronym>
2941 #errors
2942 /acronym;element not defined;m
2943 /acronym/p;element not allowed:phrasing;m
2944
2945 #data
2946 <span xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></span>
2947 #errors
2948 /span/acronym;element not allowed:phrasing;m
2949 /span/acronym;element not defined;m
2950
2951 #data
2952 <div xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></div>
2953 #errors
2954 /div/acronym;element not allowed:flow;m
2955 /div/acronym;element not defined;m
2956
2957 #data
2958 <rule xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></rule>
2959 #errors
2960 /rule/acronym;element not defined;m
2961
2962 #data
2963 <meter value="" xmlns="http://www.w3.org/1999/xhtml"/>
2964 #errors
2965 /meter/@value;float:syntax error
2966 /meter;no significant content;s
2967
2968 #data
2969 <meter value="1" xmlns="http://www.w3.org/1999/xhtml"/>
2970 #errors
2971 /meter;no significant content;s
2972
2973 #data
2974 <meter value="111" xmlns="http://www.w3.org/1999/xhtml"/>
2975 #errors
2976 /meter;no significant content;s
2977
2978 #data
2979 <meter value="0001" xmlns="http://www.w3.org/1999/xhtml"/>
2980 #errors
2981 /meter;no significant content;s
2982
2983 #data
2984 <meter value="0" xmlns="http://www.w3.org/1999/xhtml"/>
2985 #errors
2986 /meter;no significant content;s
2987
2988 #data
2989 <meter value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2990 #errors
2991 /meter;no significant content;s
2992
2993 #data
2994 <meter value="-1000" xmlns="http://www.w3.org/1999/xhtml"/>
2995 #errors
2996 /meter;no significant content;s
2997
2998 #data
2999 <meter value="-0" xmlns="http://www.w3.org/1999/xhtml"/>
3000 #errors
3001 /meter;no significant content;s
3002
3003 #data
3004 <meter value="0000" xmlns="http://www.w3.org/1999/xhtml"/>
3005 #errors
3006 /meter;no significant content;s
3007
3008 #data
3009 <meter value="0.1" xmlns="http://www.w3.org/1999/xhtml"/>
3010 #errors
3011 /meter;no significant content;s
3012
3013 #data
3014 <meter value="1.1" xmlns="http://www.w3.org/1999/xhtml"/>
3015 #errors
3016 /meter;no significant content;s
3017
3018 #data
3019 <meter value=".1" xmlns="http://www.w3.org/1999/xhtml"/>
3020 #errors
3021 /meter;no significant content;s
3022
3023 #data
3024 <meter value=".0" xmlns="http://www.w3.org/1999/xhtml"/>
3025 #errors
3026 /meter;no significant content;s
3027
3028 #data
3029 <meter value="1." xmlns="http://www.w3.org/1999/xhtml"/>
3030 #errors
3031 /meter;no significant content;s
3032
3033 #data
3034 <meter value="1.0000" xmlns="http://www.w3.org/1999/xhtml"/>
3035 #errors
3036 /meter;no significant content;s
3037
3038 #data
3039 <meter value="123." xmlns="http://www.w3.org/1999/xhtml"/>
3040 #errors
3041 /meter;no significant content;s
3042
3043 #data
3044 <meter value="-.1" xmlns="http://www.w3.org/1999/xhtml"/>
3045 #errors
3046 /meter;no significant content;s
3047
3048 #data
3049 <meter value="-1." xmlns="http://www.w3.org/1999/xhtml"/>
3050 #errors
3051 /meter;no significant content;s
3052
3053 #data
3054 <meter value="1aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3055 #errors
3056 /meter/@value;float:syntax error
3057 /meter;no significant content;s
3058
3059 #data
3060 <meter value="1&#x0D;" xmlns="http://www.w3.org/1999/xhtml"/>
3061 #errors
3062 /meter/@value;float:syntax error
3063 /meter;no significant content;s
3064
3065 #data
3066 <meter value="1&#x0A;" xmlns="http://www.w3.org/1999/xhtml"/>
3067 #errors
3068 /meter/@value;float:syntax error
3069 /meter;no significant content;s
3070
3071 #data
3072 <meter value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3073 #errors
3074 /meter/@value;float:syntax error
3075 /meter;no significant content;s
3076
3077 #data
3078 <meter value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
3079 #errors
3080 /meter/@value;float:syntax error
3081 /meter;no significant content;s
3082
3083 #data
3084 <meter value="+1.2" xmlns="http://www.w3.org/1999/xhtml"/>
3085 #errors
3086 /meter/@value;float:syntax error
3087 /meter;no significant content;s
3088
3089 #data
3090 <meter value=".-1" xmlns="http://www.w3.org/1999/xhtml"/>
3091 #errors
3092 /meter/@value;float:syntax error
3093 /meter;no significant content;s
3094
3095 #data
3096 <meter value="0.-1" xmlns="http://www.w3.org/1999/xhtml"/>
3097 #errors
3098 /meter/@value;float:syntax error
3099 /meter;no significant content;s
3100
3101 #data
3102 <meter value="." xmlns="http://www.w3.org/1999/xhtml"/>
3103 #errors
3104 /meter/@value;float:syntax error
3105 /meter;no significant content;s
3106
3107 #data
3108 <meter min="2" xmlns="http://www.w3.org/1999/xhtml"/>
3109 #errors
3110 /meter;no significant content;s
3111
3112 #data
3113 <meter min="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3114 #errors
3115 /meter/@min;float:syntax error
3116 /meter;no significant content;s
3117
3118 #data
3119 <meter low="2" xmlns="http://www.w3.org/1999/xhtml"/>
3120 #errors
3121 /meter;no significant content;s
3122
3123 #data
3124 <meter low="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3125 #errors
3126 /meter/@low;float:syntax error
3127 /meter;no significant content;s
3128
3129 #data
3130 <meter high="2" xmlns="http://www.w3.org/1999/xhtml"/>
3131 #errors
3132 /meter;no significant content;s
3133
3134 #data
3135 <meter high="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3136 #errors
3137 /meter/@high;float:syntax error
3138 /meter;no significant content;s
3139
3140 #data
3141 <meter max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3142 #errors
3143 /meter;no significant content;s
3144
3145 #data
3146 <meter max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3147 #errors
3148 /meter/@max;float:syntax error
3149 /meter;no significant content;s
3150
3151 #data
3152 <meter optimum="2" xmlns="http://www.w3.org/1999/xhtml"/>
3153 #errors
3154 /meter;no significant content;s
3155
3156 #data
3157 <meter optimum="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3158 #errors
3159 /meter/@optimum;float:syntax error
3160 /meter;no significant content;s
3161
3162 #data
3163 <meter min="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3164 #errors
3165 /meter;no significant content;s
3166
3167 #data
3168 <meter value="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3169 #errors
3170 /meter;no significant content;s
3171
3172 #data
3173 <progress max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3174 #errors
3175 /progress;no significant content;s
3176
3177 #data
3178 <progress max="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
3179 #errors
3180 /progress;no significant content;s
3181
3182 #data
3183 <progress max="0" xmlns="http://www.w3.org/1999/xhtml"/>
3184 #errors
3185 /progress/@max;float:out of range
3186 /progress;no significant content;s
3187
3188 #data
3189 <progress max="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3190 #errors
3191 /progress/@max;float:out of range
3192 /progress;no significant content;s
3193
3194 #data
3195 <progress max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3196 #errors
3197 /progress/@max;float:syntax error
3198 /progress;no significant content;s
3199
3200 #data
3201 <progress value="2" xmlns="http://www.w3.org/1999/xhtml"/>
3202 #errors
3203 /progress;no significant content;s
3204
3205 #data
3206 <progress value="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
3207 #errors
3208 /progress;no significant content;s
3209
3210 #data
3211 <progress value="0" xmlns="http://www.w3.org/1999/xhtml"/>
3212 #errors
3213 /progress;no significant content;s
3214
3215 #data
3216 <progress value="100" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3217 #errors
3218 /progress;no significant content;s
3219
3220 #data
3221 <progress value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3222 #errors
3223 /progress/@value;float:out of range
3224 /progress;no significant content;s
3225
3226 #data
3227 <progress value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3228 #errors
3229 /progress/@value;float:syntax error
3230 /progress;no significant content;s
3231
3232 #data
3233 <bdo xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3234 #errors
3235 /bdo;attribute missing:dir
3236
3237 #data
3238 <bdo dir="ltr" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3239 #errors
3240
3241 #data
3242 <bdo dir="rtl" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3243 #errors
3244
3245 #data
3246 <bdo dir="RTL" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3247 #errors
3248
3249 #data
3250 <bdo dir="xxx" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3251 #errors
3252 /bdo/@dir;enumerated:invalid
3253
3254 #data
3255 <tt xmlns="http://www.w3.org/1999/xhtml"></tt>
3256 #errors
3257 /tt;element not defined;m
3258 /tt;no significant content;s
3259
3260 #data
3261 <tt xmlns="http://www.w3.org/1999/xhtml"> </tt>
3262 #errors
3263 /tt;element not defined;m
3264 /tt;no significant content;s
3265
3266 #data
3267 <tt xmlns="http://www.w3.org/1999/xhtml">x</tt>
3268 #errors
3269 /tt;element not defined;m
3270
3271 #data
3272 <tt xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></tt>
3273 #errors
3274 /tt;element not defined;m
3275
3276 #data
3277 <tt xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</tt>
3278 #errors
3279 /tt;element not defined;m
3280 /tt/style;element not allowed:phrasing;m
3281 /tt/style;SUBDOC
3282
3283 #data
3284 <tt xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></tt>
3285 #errors
3286 /tt;element not defined;m
3287 /tt/p;element not allowed:phrasing;m
3288
3289 #data
3290 <span xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></span>
3291 #errors
3292 /span/tt;element not allowed:phrasing;m
3293 /span/tt;element not defined;m
3294
3295 #data
3296 <div xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></div>
3297 #errors
3298 /div/tt;element not allowed:flow;m
3299 /div/tt;element not defined;m
3300
3301 #data
3302 <rule xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></rule>
3303 #errors
3304 /rule/tt;element not defined;m
3305
3306 #data
3307 <s xmlns="http://www.w3.org/1999/xhtml"></s>
3308 #errors
3309 /s;element not defined;m
3310 /s;no significant content;s
3311
3312 #data
3313 <s xmlns="http://www.w3.org/1999/xhtml"> </s>
3314 #errors
3315 /s;element not defined;m
3316 /s;no significant content;s
3317
3318 #data
3319 <s xmlns="http://www.w3.org/1999/xhtml">x</s>
3320 #errors
3321 /s;element not defined;m
3322
3323 #data
3324 <s xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></s>
3325 #errors
3326 /s;element not defined;m
3327
3328 #data
3329 <s xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</s>
3330 #errors
3331 /s;element not defined;m
3332 /s/style;element not allowed:phrasing;m
3333 /s/style;SUBDOC
3334
3335 #data
3336 <s xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></s>
3337 #errors
3338 /s;element not defined;m
3339 /s/p;element not allowed:phrasing;m
3340
3341 #data
3342 <span xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></span>
3343 #errors
3344 /span/s;element not allowed:phrasing;m
3345 /span/s;element not defined;m
3346
3347 #data
3348 <div xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></div>
3349 #errors
3350 /div/s;element not allowed:flow;m
3351 /div/s;element not defined;m
3352
3353 #data
3354 <rule xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></rule>
3355 #errors
3356 /rule/s;element not defined;m
3357
3358 #data
3359 <strike xmlns="http://www.w3.org/1999/xhtml"></strike>
3360 #errors
3361 /strike;element not defined;m
3362 /strike;no significant content;s
3363
3364 #data
3365 <strike xmlns="http://www.w3.org/1999/xhtml"> </strike>
3366 #errors
3367 /strike;element not defined;m
3368 /strike;no significant content;s
3369
3370 #data
3371 <strike xmlns="http://www.w3.org/1999/xhtml">x</strike>
3372 #errors
3373 /strike;element not defined;m
3374
3375 #data
3376 <strike xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></strike>
3377 #errors
3378 /strike;element not defined;m
3379
3380 #data
3381 <strike xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</strike>
3382 #errors
3383 /strike;element not defined;m
3384 /strike/style;element not allowed:phrasing;m
3385 /strike/style;SUBDOC
3386
3387 #data
3388 <strike xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></strike>
3389 #errors
3390 /strike;element not defined;m
3391 /strike/p;element not allowed:phrasing;m
3392
3393 #data
3394 <span xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></span>
3395 #errors
3396 /span/strike;element not allowed:phrasing;m
3397 /span/strike;element not defined;m
3398
3399 #data
3400 <div xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></div>
3401 #errors
3402 /div/strike;element not allowed:flow;m
3403 /div/strike;element not defined;m
3404
3405 #data
3406 <rule xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></rule>
3407 #errors
3408 /rule/strike;element not defined;m
3409
3410 #data
3411 <u xmlns="http://www.w3.org/1999/xhtml"></u>
3412 #errors
3413 /u;element not defined;m
3414 /u;no significant content;s
3415
3416 #data
3417 <u xmlns="http://www.w3.org/1999/xhtml"> </u>
3418 #errors
3419 /u;element not defined;m
3420 /u;no significant content;s
3421
3422 #data
3423 <u xmlns="http://www.w3.org/1999/xhtml">x</u>
3424 #errors
3425 /u;element not defined;m
3426
3427 #data
3428 <u xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></u>
3429 #errors
3430 /u;element not defined;m
3431
3432 #data
3433 <u xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</u>
3434 #errors
3435 /u;element not defined;m
3436 /u/style;element not allowed:phrasing;m
3437 /u/style;SUBDOC
3438
3439 #data
3440 <u xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></u>
3441 #errors
3442 /u;element not defined;m
3443 /u/p;element not allowed:phrasing;m
3444
3445 #data
3446 <span xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></span>
3447 #errors
3448 /span/u;element not allowed:phrasing;m
3449 /span/u;element not defined;m
3450
3451 #data
3452 <div xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></div>
3453 #errors
3454 /div/u;element not allowed:flow;m
3455 /div/u;element not defined;m
3456
3457 #data
3458 <rule xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></rule>
3459 #errors
3460 /rule/u;element not defined;m
3461
3462 #data
3463 <ins cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</ins>
3464 #errors
3465
3466 #data
3467 <ins cite="http://test/100%/" xmlns="http://www.w3.org/1999/xhtml">x</ins>
3468 #errors
3469 /ins/@cite;URI::syntax error:iriref3987;m
3470
3471 #data
3472 <ins xmlns="http://www.w3.org/1999/xhtml"
3473 datetime="">x</ins>
3474 #errors
3475 /ins/@datetime;datetime:syntax error
3476
3477 #data
3478 <ins xmlns="http://www.w3.org/1999/xhtml"
3479 datetime="2007-05">x</ins>
3480 #errors
3481 /ins/@datetime;datetime:syntax error
3482
3483 #data
3484 <ins xmlns="http://www.w3.org/1999/xhtml"
3485 datetime="2007-06">x</ins>
3486 #errors
3487 /ins/@datetime;datetime:syntax error
3488
3489 #data
3490 <ins xmlns="http://www.w3.org/1999/xhtml"
3491 datetime="2007-08-09">x</ins>
3492 #errors
3493 /ins/@datetime;datetime:syntax error
3494
3495 #data
3496 <ins xmlns="http://www.w3.org/1999/xhtml"
3497 datetime="2007-09-10T00:12">x</ins>
3498 #errors
3499 /ins/@datetime;datetime:syntax error
3500
3501 #data
3502 <ins xmlns="http://www.w3.org/1999/xhtml"
3503 datetime="2007-09-23T33:34:23">x</ins>
3504 #errors
3505 /ins/@datetime;datetime:syntax error
3506
3507 #data
3508 <ins xmlns="http://www.w3.org/1999/xhtml"
3509 datetime="2007-04-31T33:11:00+09">x</ins>
3510 #errors
3511 /ins/@datetime;datetime:syntax error
3512
3513 #data
3514 <ins xmlns="http://www.w3.org/1999/xhtml"
3515 datetime="0037-12-13 00:00 Z">x</ins>
3516 #errors
3517
3518 #data
3519 <ins xmlns="http://www.w3.org/1999/xhtml"
3520 datetime="1979-10-14T12:00:00.001-04:00">x</ins>
3521 #errors
3522
3523 #data
3524 <ins xmlns="http://www.w3.org/1999/xhtml"
3525 datetime="8592-01-01 T 02:09 +02:09">x</ins>
3526 #errors
3527
3528 #data
3529 <ins xmlns="http://www.w3.org/1999/xhtml"
3530 datetime="2007-04-12T00:00Z">x</ins>
3531 #errors
3532
3533 #data
3534 <ins xmlns="http://www.w3.org/1999/xhtml"
3535 datetime="10000-10-31T00:44Z">x</ins>
3536 #errors
3537 /ins/@datetime;datetime:syntax error
3538
3539 #data
3540 <ins xmlns="http://www.w3.org/1999/xhtml"
3541 datetime="-3333-03-14T14:33Z">x</ins>
3542 #errors
3543 /ins/@datetime;datetime:syntax error
3544
3545 #data
3546 <ins xmlns="http://www.w3.org/1999/xhtml"
3547 datetime="1999-06-23 T04:44Z">x</ins>
3548 #errors
3549
3550 #data
3551 <ins xmlns="http://www.w3.org/1999/xhtml"
3552 datetime="4444-06-22 T 11:22Z">x</ins>
3553 #errors
3554
3555 #data
3556 <ins xmlns="http://www.w3.org/1999/xhtml"
3557 datetime="98-02-12T11:22Z">x</ins>
3558 #errors
3559 /ins/@datetime;datetime:syntax error
3560
3561 #data
3562 <ins xmlns="http://www.w3.org/1999/xhtml"
3563 datetime="2007-02-29T00:00Z">x</ins>
3564 #errors
3565 /ins/@datetime;datetime:bad day
3566
3567 #data
3568 <ins xmlns="http://www.w3.org/1999/xhtml"
3569 datetime="2008-02-29T00:00Z">x</ins>
3570 #errors
3571
3572 #data
3573 <ins xmlns="http://www.w3.org/1999/xhtml"
3574 datetime="2000-02-29T00:00Z">x</ins>
3575 #errors
3576
3577 #data
3578 <ins xmlns="http://www.w3.org/1999/xhtml"
3579 datetime="1900-02-29T00:00Z">x</ins>
3580 #errors
3581 /ins/@datetime;datetime:bad day
3582
3583 #data
3584 <ins xmlns="http://www.w3.org/1999/xhtml"
3585 datetime="2007-02-30T00:00Z">x</ins>
3586 #errors
3587 /ins/@datetime;datetime:bad day
3588
3589 #data
3590 <ins xmlns="http://www.w3.org/1999/xhtml"
3591 datetime="2000-02-30T00:00Z">x</ins>
3592 #errors
3593 /ins/@datetime;datetime:bad day
3594
3595 #data
3596 <ins xmlns="http://www.w3.org/1999/xhtml"
3597 datetime="2007-01-32T00:00Z">xM</ins>
3598 #errors
3599 /ins/@datetime;datetime:bad day
3600
3601 #data
3602 <ins xmlns="http://www.w3.org/1999/xhtml"
3603 datetime="2007-01-00T00:00Z">x</ins>
3604 #errors
3605 /ins/@datetime;datetime:bad day
3606
3607 #data
3608 <ins xmlns="http://www.w3.org/1999/xhtml"
3609 datetime="2007-00-29T00:00Z">x</ins>
3610 #errors
3611 /ins/@datetime;datetime:bad month
3612
3613 #data
3614 <ins xmlns="http://www.w3.org/1999/xhtml"
3615 datetime="2007-13-29T00:00Z">x</ins>
3616 #errors
3617 /ins/@datetime;datetime:bad month
3618
3619 #data
3620 <ins xmlns="http://www.w3.org/1999/xhtml"
3621 datetime="2007-02-21T23:00Z">x</ins>
3622 #errors
3623
3624 #data
3625 <ins xmlns="http://www.w3.org/1999/xhtml"
3626 datetime="2007-02-21T24:00Z">x</ins>
3627 #errors
3628 /ins/@datetime;datetime:bad hour
3629
3630 #data
3631 <ins xmlns="http://www.w3.org/1999/xhtml"
3632 datetime="2007-02-21T23:59Z">x</ins>
3633 #errors
3634
3635 #data
3636 <ins xmlns="http://www.w3.org/1999/xhtml"
3637 datetime="2007-02-21T23:60Z">x</ins>
3638 #errors
3639 /ins/@datetime;datetime:bad minute
3640
3641 #data
3642 <ins xmlns="http://www.w3.org/1999/xhtml"
3643 datetime="2007-02-21T23:00:60Z">x</ins>
3644 #errors
3645 /ins/@datetime;datetime:bad second
3646
3647 #data
3648 <ins xmlns="http://www.w3.org/1999/xhtml"
3649 datetime="2007-02-21T23:00:61Z">x</ins>
3650 #errors
3651 /ins/@datetime;datetime:bad second
3652
3653 #data
3654 <ins xmlns="http://www.w3.org/1999/xhtml"
3655 datetime="2007-02-21T23:00:00.123Z">xM</ins>
3656 #errors
3657
3658 #data
3659 <ins xmlns="http://www.w3.org/1999/xhtml"
3660 datetime="2007-02-21T23:00.124444Z">x</ins>
3661 #errors
3662
3663 #data
3664 <ins xmlns="http://www.w3.org/1999/xhtml"
3665 datetime="2007-02-21T23:00.Z">x</ins>
3666 #errors
3667 /ins/@datetime;datetime:syntax error
3668
3669 #data
3670 <ins xmlns="http://www.w3.org/1999/xhtml"
3671 datetime="2007-02-21T23:00+09:00">x</ins>
3672 #errors
3673
3674 #data
3675 <ins xmlns="http://www.w3.org/1999/xhtml"
3676 datetime="2007-02-21T23:00-09:00">x</ins>
3677 #errors
3678
3679 #data
3680 <ins xmlns="http://www.w3.org/1999/xhtml"
3681 datetime="2007-02-21T23:00 +09:00">xm</ins>
3682 #errors
3683
3684 #data
3685 <ins xmlns="http://www.w3.org/1999/xhtml"
3686 datetime="2007-02-21T23:00+0900">x</ins>
3687 #errors
3688 /ins/@datetime;datetime:syntax error
3689
3690 #data
3691 <ins xmlns="http://www.w3.org/1999/xhtml"
3692 datetime="2007-02-21T23:00A">x</ins>
3693 #errors
3694 /ins/@datetime;datetime:syntax error
3695
3696 #data
3697 <ins xmlns="http://www.w3.org/1999/xhtml"
3698 datetime="2007-02-21T23:00z">x</ins>
3699 #errors
3700 /ins/@datetime;datetime:syntax error
3701
3702 #data
3703 <ins xmlns="http://www.w3.org/1999/xhtml"
3704 datetime="2007-02-21t23:00Z">x</ins>
3705 #errors
3706 /ins/@datetime;datetime:syntax error
3707
3708 #data
3709 <ins xmlns="http://www.w3.org/1999/xhtml"
3710 datetime="2007-02-21T23:00+23:00">x</ins>
3711 #errors
3712
3713 #data
3714 <ins xmlns="http://www.w3.org/1999/xhtml"
3715 datetime="2007-02-21T23:00+24:00">x</ins>
3716 #errors
3717 /ins/@datetime;datetime:bad timezone hour
3718
3719 #data
3720 <ins xmlns="http://www.w3.org/1999/xhtml"
3721 datetime="2007-02-21T23:00-23:00">x</ins>
3722 #errors
3723
3724 #data
3725 <ins xmlns="http://www.w3.org/1999/xhtml"
3726 datetime="2007-02-21T23:00-24:00">x</ins>
3727 #errors
3728 /ins/@datetime;datetime:bad timezone hour
3729
3730 #data
3731 <ins xmlns="http://www.w3.org/1999/xhtml"
3732 datetime="2007-02-21T23:00-00:00">x</ins>
3733 #errors
3734
3735 #data
3736 <ins xmlns="http://www.w3.org/1999/xhtml"
3737 datetime="2007-02-21T23:00+00:14.5">x</ins>
3738 #errors
3739 /ins/@datetime;datetime:syntax error
3740
3741 #data
3742 <ins xmlns="http://www.w3.org/1999/xhtml"
3743 datetime="2007-02-21T23:00+00:59">xM</ins>
3744 #errors
3745
3746 #data
3747 <ins xmlns="http://www.w3.org/1999/xhtml"
3748 datetime="2007-02-21T23:00+00:60">x</ins>
3749 #errors
3750 /ins/@datetime;datetime:bad timezone minute
3751
3752 #data
3753 <ins xmlns="http://www.w3.org/1999/xhtml"
3754 datetime="2007-02-21T23:00-00:60">x</ins>
3755 #errors
3756 /ins/@datetime;datetime:bad timezone minute
3757
3758 #data
3759 <ins xmlns="http://www.w3.org/1999/xhtml"
3760 datetime="2007-02-21T23:00 00:00">x</ins>
3761 #errors
3762 /ins/@datetime;datetime:syntax error
3763
3764 #data
3765 <ins xmlns="http://www.w3.org/1999/xhtml"
3766 datetime="2007-02-21T23:00Z ">x</ins>
3767 #errors
3768 /ins/@datetime;datetime:syntax error
3769
3770 #data
3771 <ins xmlns="http://www.w3.org/1999/xhtml"
3772 datetime=" 2007-02-21T23:00Z">s</ins>
3773 #errors
3774 /ins/@datetime;datetime:syntax error
3775
3776 #data
3777 <del cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</del>
3778 #errors
3779
3780 #data
3781 <del cite='"about:"' xmlns="http://www.w3.org/1999/xhtml">x</del>
3782 #errors
3783 /del/@cite;URI::syntax error:iriref3987;m
3784
3785 #data
3786 <del xmlns="http://www.w3.org/1999/xhtml"
3787 datetime="2007-02-21T23:00Z">x</del>
3788 #errors
3789
3790 #data
3791 <del xmlns="http://www.w3.org/1999/xhtml"
3792 datetime="2007-02-31T23:00Z">x</del>
3793 #errors
3794 /del/@datetime;datetime:bad day
3795
3796 #data
3797 <img xmlns="http://www.w3.org/1999/xhtml"/>
3798 #errors
3799 /img;attribute missing:alt;s
3800 /img;attribute missing:src
3801
3802 #data
3803 <img alt="" xmlns="http://www.w3.org/1999/xhtml"/>
3804 #errors
3805 /img;attribute missing:src
3806
3807 #data
3808 <img src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3809 #errors
3810 /img;attribute missing:alt;s
3811
3812 #data
3813 <img alt="" src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3814 #errors
3815
3816 #data
3817 <img alt="" src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
3818 #errors
3819 /img/@src;URI::syntax error:iriref3987;m
3820
3821 #data
3822 <img alt="" src="" longdesc="" xmlns="http://www.w3.org/1999/xhtml"/>
3823 #errors
3824 /img/@longdesc;attribute not defined;m
3825
3826 #data
3827 <img alt="" src="" longdesc="http://www.example.com/"
3828 xmlns="http://www.w3.org/1999/xhtml"/>
3829 #errors
3830 /img/@longdesc;attribute not defined;m
3831
3832 #data
3833 <img alt="" src="" longdesc="[]" xmlns="http://www.w3.org/1999/xhtml"/>
3834 #errors
3835 /img/@longdesc;attribute not defined;m
3836 /img/@longdesc;URI::syntax error:iriref3987;m
3837
3838 #data
3839 <img alt="" src="" hspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
3840 #errors
3841 /img/@hspace;attribute not defined;m
3842
3843 #data
3844 <img alt="" src="" vspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
3845 #errors
3846 /img/@vspace;attribute not defined;m
3847
3848 #data
3849 <img alt="" src="" hspace="120" xmlns="http://www.w3.org/1999/xhtml"/>
3850 #errors
3851 /img/@hspace;attribute not defined;m
3852
3853 #data
3854 <img alt="" src="" vspace="120" xmlns="http://www.w3.org/1999/xhtml"/>
3855 #errors
3856 /img/@vspace;attribute not defined;m
3857
3858 #data
3859 <img alt="" src="" hspace="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
3860 #errors
3861 /img/@hspace;attribute not defined;m
3862 /img/@hspace;nninteger:syntax error
3863
3864 #data
3865 <img alt="" src="" vspace="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
3866 #errors
3867 /img/@vspace;attribute not defined;m
3868 /img/@vspace;nninteger:syntax error
3869
3870 #data
3871 <img alt="" src="" hspace="10px" xmlns="http://www.w3.org/1999/xhtml"/>
3872 #errors
3873 /img/@hspace;attribute not defined;m
3874 /img/@hspace;nninteger:syntax error
3875
3876 #data
3877 <img alt="" src="" vspace="10px" xmlns="http://www.w3.org/1999/xhtml"/>
3878 #errors
3879 /img/@vspace;attribute not defined;m
3880 /img/@vspace;nninteger:syntax error
3881
3882 #data
3883 <img alt="" src="" hspace="0 " xmlns="http://www.w3.org/1999/xhtml"/>
3884 #errors
3885 /img/@hspace;attribute not defined;m
3886 /img/@hspace;nninteger:syntax error
3887
3888 #data
3889 <img alt="" src="" vspace=" 0" xmlns="http://www.w3.org/1999/xhtml"/>
3890 #errors
3891 /img/@vspace;nninteger:syntax error
3892 /img/@vspace;attribute not defined;m
3893
3894 #data
3895 <img alt="" src="" hspace="0%" xmlns="http://www.w3.org/1999/xhtml"/>
3896 #errors
3897 /img/@hspace;attribute not defined;m
3898 /img/@hspace;nninteger:syntax error
3899
3900 #data
3901 <img alt="" src="" vspace="20%" xmlns="http://www.w3.org/1999/xhtml"/>
3902 #errors
3903 /img/@vspace;attribute not defined;m
3904 /img/@vspace;nninteger:syntax error
3905
3906 #data
3907 <img alt="" src="" hspace="-0" xmlns="http://www.w3.org/1999/xhtml"/>
3908 #errors
3909 /img/@hspace;attribute not defined;m
3910 /img/@hspace;nninteger:syntax error
3911
3912 #data
3913 <img alt="" src="" vspace="-0" xmlns="http://www.w3.org/1999/xhtml"/>
3914 #errors
3915 /img/@vspace;attribute not defined;m
3916 /img/@vspace;nninteger:syntax error
3917
3918 #data
3919 <img alt="" src="" border="0" xmlns="http://www.w3.org/1999/xhtml"/>
3920 #errors
3921 /img/@border;attribute not defined;m
3922
3923 #data
3924 <img alt="" src="" border="4563" xmlns="http://www.w3.org/1999/xhtml"/>
3925 #errors
3926 /img/@border;attribute not defined;m
3927
3928 #data
3929 <img alt="" src="" border="-0" xmlns="http://www.w3.org/1999/xhtml"/>
3930 #errors
3931 /img/@border;attribute not defined;m
3932 /img/@border;nninteger:syntax error
3933
3934 #data
3935 <img alt="" src="" border="10-0" xmlns="http://www.w3.org/1999/xhtml"/>
3936 #errors
3937 /img/@border;attribute not defined;m
3938 /img/@border;nninteger:syntax error
3939
3940 #data
3941 <img alt="" src="" border="none" xmlns="http://www.w3.org/1999/xhtml"/>
3942 #errors
3943 /img/@border;attribute not defined;m
3944 /img/@border;nninteger:syntax error
3945
3946 #data
3947 <img alt="" src="" border="" xmlns="http://www.w3.org/1999/xhtml"/>
3948 #errors
3949 /img/@border;attribute not defined;m
3950 /img/@border;nninteger:syntax error
3951
3952 #data
3953 <img alt="" src="" noborder="" xmlns="http://www.w3.org/1999/xhtml"/>
3954 #errors
3955 /img/@noborder;attribute not defined;m
3956
3957 #data
3958 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
3959 #errors
3960 /img/@ismap;attribute not allowed:ismap;m
3961
3962 #data
3963 <span xmlns="http://www.w3.org/1999/xhtml">
3964 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
3965 </span>
3966 #errors
3967 /span/img/@ismap;attribute not allowed:ismap;m
3968
3969 #data
3970 <span xmlns="http://www.w3.org/1999/xhtml">
3971 <a>a</a>
3972 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
3973 </span>
3974 #errors
3975 /span/img/@ismap;attribute not allowed:ismap;m
3976
3977 #data
3978 <a xmlns="http://www.w3.org/1999/xhtml">
3979 <img alt="" src="http://test/" ismap="ismap"/>
3980 </a>
3981 #errors
3982 /a/img/@ismap;attribute not allowed:ismap;m
3983
3984 #data
3985 <a title="" xmlns="http://www.w3.org/1999/xhtml">
3986 <img alt="" src="http://test/" ismap="ismap"/>
3987 </a>
3988 #errors
3989 /a/img/@ismap;attribute not allowed:ismap;m
3990
3991 #data
3992 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
3993 <img alt="" src="http://test/" ismap=""/>
3994 </a>
3995 #errors
3996
3997 #data
3998 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
3999 <img alt="" src="http://test/" ismap="ismap"/>
4000 </a>
4001 #errors
4002
4003 #data
4004 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4005 <img alt="" src="http://test/" ismap="true"/>
4006 </a>
4007 #errors
4008 /a/img/@ismap;boolean:invalid;m
4009
4010 #data
4011 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4012 <img alt="" src="http://test/" ismap="IsMap"/>
4013 </a>
4014 #errors
4015
4016 #data
4017 <div xmlns="http://www.w3.org/1999/xhtml">
4018 <a href="http://link.test/">a</a>
4019 <img alt="" src="http://test/" ismap="ismap"/>
4020 </div>
4021 #errors
4022 /div/img/@ismap;attribute not allowed:ismap;m
4023
4024 #data
4025 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4026 <span>
4027 <img alt="" src="http://test/" ismap="ismap"/>
4028 </span>
4029 </a>
4030 #errors
4031
4032 #data
4033 <div xmlns="http://www.w3.org/1999/xhtml">
4034 <p><img src="http://test/" alt="" usemap=""/></p>
4035 </div>
4036 #errors
4037 /div/p/img/@usemap;#idref:syntax error
4038
4039 #data
4040 <div xmlns="http://www.w3.org/1999/xhtml">
4041 <p><img src="http://test/" alt="" usemap="abc"/></p>
4042 </div>
4043 #errors
4044 /div/p/img/@usemap;#idref:syntax error
4045
4046 #data
4047 <div xmlns="http://www.w3.org/1999/xhtml">
4048 <p><img src="http://test/" alt="" usemap="abc#"/></p>
4049 </div>
4050 #errors
4051 /div/p/img/@usemap;#idref:syntax error
4052
4053 #data
4054 <div xmlns="http://www.w3.org/1999/xhtml">
4055 <p><img src="http://test/" alt="" usemap="&#x0A;#abc"/></p>
4056 </div>
4057 #errors
4058 /div/p/img/@usemap;#idref:syntax error
4059
4060 #data
4061 <div xmlns="http://www.w3.org/1999/xhtml">
4062 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4063 <map id="aa"/>
4064 </div>
4065 #errors
4066 /div/map;no significant content;s
4067
4068 #data
4069 <div xmlns="http://www.w3.org/1999/xhtml">
4070 <map id="aa"/>
4071 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4072 </div>
4073 #errors
4074 /div/map;no significant content;s
4075
4076 #data
4077 <div xmlns="http://www.w3.org/1999/xhtml">
4078 <map id="a a"/>
4079 <p><img src="http://test/" alt="" usemap="#a a"/></p>
4080 </div>
4081 #errors
4082 /div/map/@id;space in ID
4083 /div/map;no significant content;s
4084
4085 #data
4086 <div xmlns="http://www.w3.org/1999/xhtml">
4087 <map id="a a"/>
4088 <p><img src="http://test/" alt="" usemap="#a%20a"/></p>
4089 </div>
4090 #errors
4091 /div/map/@id;space in ID
4092 /div/map;no significant content;s
4093 /div/p/img/@usemap;no referenced map
4094
4095 #data
4096 <div xmlns="http://www.w3.org/1999/xhtml">
4097 <map id="&#x4E00;"/>
4098 <p><img src="http://test/" alt="" usemap="#&#x4E00;"/></p>
4099 </div>
4100 #errors
4101 /div/map;no significant content;s
4102
4103 #data
4104 <div xmlns="http://www.w3.org/1999/xhtml">
4105 <map id="aa"/>
4106 <p><img src="http://test/" alt="" usemap="#bb"/></p>
4107 </div>
4108 #errors
4109 /div/p/img/@usemap;no referenced map
4110 /div/map;no significant content;s
4111
4112 #data
4113 <div xmlns="http://www.w3.org/1999/xhtml">
4114 <map id="aa"/>
4115 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4116 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4117 </div>
4118 #errors
4119 /div/map;no significant content;s
4120
4121 #data
4122 <div xmlns="http://www.w3.org/1999/xhtml">
4123 <map id="aa"/>
4124 <p><img src="http://test/" alt="" usemap="#AA"/></p>
4125 </div>
4126 #errors
4127 /div/p/img/@usemap;no referenced map
4128 /div/map;no significant content;s
4129
4130 #data
4131 <div xmlns="http://www.w3.org/1999/xhtml">
4132 <map id="AA"/>
4133 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4134 </div>
4135 #errors
4136 /div/p/img/@usemap;no referenced map
4137 /div/map;no significant content;s
4138
4139 #data
4140 <div xmlns="http://www.w3.org/1999/xhtml">
4141 <p id="aa"/>
4142 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4143 </div>
4144 #errors
4145 /div/p/img/@usemap;no referenced map
4146 /div/p;no significant content;s
4147
4148 #data
4149 <img alt="" src="" align="" xmlns="http://www.w3.org/1999/xhtml"/>
4150 #errors
4151 /img/@align;attribute not defined;m
4152 /img/@align;enumerated:invalid
4153
4154 #data
4155 <img alt="" src="" align="char" xmlns="http://www.w3.org/1999/xhtml"/>
4156 #errors
4157 /img/@align;attribute not defined;m
4158 /img/@align;enumerated:invalid
4159
4160 #data
4161 <img alt="" src="" align="justify" xmlns="http://www.w3.org/1999/xhtml"/>
4162 #errors
4163 /img/@align;attribute not defined;m
4164 /img/@align;enumerated:invalid
4165
4166 #data
4167 <img alt="" src="" align="center" xmlns="http://www.w3.org/1999/xhtml"/>
4168 #errors
4169 /img/@align;attribute not defined;m
4170 /img/@align;enumerated:invalid
4171
4172 #data
4173 <img alt="" src="" align="bottom" xmlns="http://www.w3.org/1999/xhtml"/>
4174 #errors
4175 /img/@align;attribute not defined;m
4176
4177 #data
4178 <img alt="" src="" align="middle" xmlns="http://www.w3.org/1999/xhtml"/>
4179 #errors
4180 /img/@align;attribute not defined;m
4181
4182 #data
4183 <img alt="" src="" align="top" xmlns="http://www.w3.org/1999/xhtml"/>
4184 #errors
4185 /img/@align;attribute not defined;m
4186
4187 #data
4188 <img alt="" src="" align="left" xmlns="http://www.w3.org/1999/xhtml"/>
4189 #errors
4190 /img/@align;attribute not defined;m
4191
4192 #data
4193 <img alt="" src="" align="right" xmlns="http://www.w3.org/1999/xhtml"/>
4194 #errors
4195 /img/@align;attribute not defined;m
4196
4197 #data
4198 <iframe xmlns="http://www.w3.org/1999/xhtml"/>
4199 #errors
4200
4201 #data
4202 <iframe name="" xmlns="http://www.w3.org/1999/xhtml"/>
4203 #errors
4204 /iframe/@name;window name:empty;m
4205
4206 #data
4207 <iframe name="_" xmlns="http://www.w3.org/1999/xhtml"/>
4208 #errors
4209 /iframe/@name;window name:reserved;m
4210
4211 #data
4212 <iframe name="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
4213 #errors
4214 /iframe/@name;window name:reserved;m
4215
4216 #data
4217 <iframe name="blank" xmlns="http://www.w3.org/1999/xhtml"/>
4218 #errors
4219
4220 #data
4221 <iframe name="_parent" xmlns="http://www.w3.org/1999/xhtml"/>
4222 #errors
4223 /iframe/@name;window name:reserved;m
4224
4225 #data
4226 <iframe name="_top" xmlns="http://www.w3.org/1999/xhtml"/>
4227 #errors
4228 /iframe/@name;window name:reserved;m
4229
4230 #data
4231 <iframe name="_self" xmlns="http://www.w3.org/1999/xhtml"/>
4232 #errors
4233 /iframe/@name;window name:reserved;m
4234
4235 #data
4236 <iframe name="_a" xmlns="http://www.w3.org/1999/xhtml"/>
4237 #errors
4238 /iframe/@name;window name:reserved;m
4239
4240 #data
4241 <iframe name="_main" xmlns="http://www.w3.org/1999/xhtml"/>
4242 #errors
4243 /iframe/@name;window name:reserved;m
4244
4245 #data
4246 <iframe src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4247 #errors
4248
4249 #data
4250 <iframe src="&lt;http://test/>" xmlns="http://www.w3.org/1999/xhtml"/>
4251 #errors
4252 /iframe/@src;URI::syntax error:iriref3987;m
4253
4254 #data
4255 <embed xmlns="http://www.w3.org/1999/xhtml"/>
4256 #errors
4257 /embed;attribute missing:src
4258
4259 #data
4260 <embed src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4261 #errors
4262
4263 #data
4264 <embed src="[http://test/]" xmlns="http://www.w3.org/1999/xhtml"/>
4265 #errors
4266 /embed/@src;URI::syntax error:iriref3987;m
4267
4268 #data
4269 <embed src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
4270 #errors
4271 /embed/@type;IMT:syntax error
4272
4273 #data
4274 <embed src="http://test/" type="text"
4275 xmlns="http://www.w3.org/1999/xhtml"/>
4276 #errors
4277 /embed/@type;IMT:syntax error
4278
4279 #data
4280 <embed src="http://test/" type="text/plain"
4281 xmlns="http://www.w3.org/1999/xhtml"/>
4282 #errors
4283
4284 #data
4285 <embed src="http://test/" id=""
4286 xmlns="http://www.w3.org/1999/xhtml"/>
4287 #errors
4288 /embed/@id;empty attribute value
4289
4290 #data
4291 <embed src="http://test/" a="b" c="d" checked="checked"
4292 xmlns="http://www.w3.org/1999/xhtml"/>
4293 #errors
4294
4295 #data
4296 <object xmlns="http://www.w3.org/1999/xhtml"/>
4297 #errors
4298 /object;attribute missing:data|type
4299 /object;no significant content;s
4300
4301 #data
4302 <object data="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4303 #errors
4304 /object;no significant content;s
4305
4306 #data
4307 <object data="`http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
4308 #errors
4309 /object/@data;URI::syntax error:iriref3987;m
4310 /object;no significant content;s
4311
4312 #data
4313 <object type="" xmlns="http://www.w3.org/1999/xhtml"/>
4314 #errors
4315 /object/@type;IMT:syntax error
4316 /object;no significant content;s
4317
4318 #data
4319 <object type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
4320 #errors
4321 /object;no significant content;s
4322
4323 #data
4324 <object type="text/css" data="http://test/"
4325 xmlns="http://www.w3.org/1999/xhtml"/>
4326 #errors
4327 /object;no significant content;s
4328
4329 #data
4330 <div xmlns="http://www.w3.org/1999/xhtml">
4331 <p><object data="http://test/" usemap="">x</object></p>
4332 </div>
4333 #errors
4334 /div/p/object/@usemap;#idref:syntax error
4335
4336 #data
4337 <div xmlns="http://www.w3.org/1999/xhtml">
4338 <p><object data="http://test/" usemap="abc">x</object></p>
4339 </div>
4340 #errors
4341 /div/p/object/@usemap;#idref:syntax error
4342
4343 #data
4344 <div xmlns="http://www.w3.org/1999/xhtml">
4345 <p><object data="http://test/" usemap="abc#">x</object></p>
4346 </div>
4347 #errors
4348 /div/p/object/@usemap;#idref:syntax error
4349
4350 #data
4351 <div xmlns="http://www.w3.org/1999/xhtml">
4352 <p><object data="http://test/" usemap="&#x0A;#abc">x</object></p>
4353 </div>
4354 #errors
4355 /div/p/object/@usemap;#idref:syntax error
4356
4357 #data
4358 <div xmlns="http://www.w3.org/1999/xhtml">
4359 <p><object data="http://test/" usemap="#aa">x</object></p>
4360 <map id="aa"/>
4361 </div>
4362 #errors
4363 /div/map;no significant content;s
4364
4365 #data
4366 <div xmlns="http://www.w3.org/1999/xhtml">
4367 <map id="aa"/>
4368 <p><object data="http://test/" usemap="#aa">x</object></p>
4369 </div>
4370 #errors
4371 /div/map;no significant content;s
4372
4373 #data
4374 <div xmlns="http://www.w3.org/1999/xhtml">
4375 <map id="&#x4E00;"/>
4376 <p><object data="http://test/" usemap="#&#x4E00;">x</object></p>
4377 </div>
4378 #errors
4379 /div/map;no significant content;s
4380
4381 #data
4382 <div xmlns="http://www.w3.org/1999/xhtml">
4383 <map id="aa"/>
4384 <p><object data="http://test/" usemap="#bb">x</object></p>
4385 </div>
4386 #errors
4387 /div/p/object/@usemap;no referenced map
4388 /div/map;no significant content;s
4389
4390 #data
4391 <div xmlns="http://www.w3.org/1999/xhtml">
4392 <map id="aa"/>
4393 <p><object data="http://test/" usemap="#aa">x</object></p>
4394 <p><object data="http://test/" usemap="#aa">x</object></p>
4395 </div>
4396 #errors
4397 /div/map;no significant content;s
4398
4399 #data
4400 <div xmlns="http://www.w3.org/1999/xhtml">
4401 <map id="aa"/>
4402 <p><object data="http://test/" usemap="#AA">x</object></p>
4403 </div>
4404 #errors
4405 /div/p/object/@usemap;no referenced map
4406 /div/map;no significant content;s
4407
4408 #data
4409 <div xmlns="http://www.w3.org/1999/xhtml">
4410 <map id="AA"/>
4411 <p><object data="http://test/" usemap="#aa">x</object></p>
4412 </div>
4413 #errors
4414 /div/p/object/@usemap;no referenced map
4415 /div/map;no significant content;s
4416
4417 #data
4418 <div xmlns="http://www.w3.org/1999/xhtml">
4419 <object data="" usemap="#a">x</object><menu id="a">x</menu>
4420 </div>
4421 #errors
4422 /div/object/@usemap;no referenced map
4423
4424 #data
4425 <object data="" declare="" xmlns="http://www.w3.org/1999/xhtml"/>
4426 #errors
4427 /object/@declare;attribute not defined;m
4428 /object;no significant content;s
4429
4430 #data
4431 <object data="" declare="declare" xmlns="http://www.w3.org/1999/xhtml"/>
4432 #errors
4433 /object/@declare;attribute not defined;m
4434
4435 /object;no significant content;s
4436 #data
4437 <object data="" declare="yes" xmlns="http://www.w3.org/1999/xhtml"/>
4438 #errors
4439 /object/@declare;attribute not defined;m
4440 /object/@declare;boolean:invalid;m
4441 /object;no significant content;s
4442
4443 #data
4444 <object data="" declare="no" xmlns="http://www.w3.org/1999/xhtml"/>
4445 #errors
4446 /object/@declare;attribute not defined;m
4447 /object/@declare;boolean:invalid;m
4448 /object;no significant content;s
4449
4450 #data
4451 <object data="" declare="Declare" xmlns="http://www.w3.org/1999/xhtml"/>
4452 #errors
4453 /object/@declare;attribute not defined;m
4454 /object;no significant content;s
4455
4456 #data
4457 <object data="" classid="" xmlns="http://www.w3.org/1999/xhtml"/>
4458 #errors
4459 /object/@classid;attribute not defined;m
4460 /object;no significant content;s
4461
4462 #data
4463 <object data="" classid="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4464 #errors
4465 /object/@classid;attribute not defined;m
4466 /object/@classid;URI::syntax error:iriref3987;m
4467 /object;no significant content;s
4468
4469 #data
4470 <object data="" codebase="" xmlns="http://www.w3.org/1999/xhtml"/>
4471 #errors
4472 /object/@codebase;attribute not defined;m
4473 /object;no significant content;s
4474
4475 #data
4476 <object data="" codebase="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4477 #errors
4478 /object/@codebase;attribute not defined;m
4479 /object/@codebase;URI::syntax error:iriref3987;m
4480 /object;no significant content;s
4481
4482 #data
4483 <object data="" archive="" xmlns="http://www.w3.org/1999/xhtml"/>
4484 #errors
4485 /object/@archive;attribute not defined;m
4486 /object;no significant content;s
4487
4488 #data
4489 <object data="" archive="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4490 #errors
4491 /object/@archive;attribute not defined;m
4492 /object/@archive;URIs::syntax error:iriref3987:0;m
4493 /object;no significant content;s
4494
4495 #data
4496 <object data="" archive="a,[]" xmlns="http://www.w3.org/1999/xhtml"/>
4497 #errors
4498 /object/@archive;attribute not defined;m
4499 /object/@archive;URIs::syntax error:iriref3987:0;m
4500 /object;no significant content;s
4501
4502 #data
4503 <object data="" archives="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4504 #errors
4505 /object/@archives;attribute not defined;m
4506 /object;no significant content;s
4507
4508 #data
4509 <object data="" codetype="" xmlns="http://www.w3.org/1999/xhtml"/>
4510 #errors
4511 /object/@codetype;attribute not defined;m
4512 /object/@codetype;IMT:syntax error
4513 /object;no significant content;s
4514
4515 #data
4516 <object data="" codetype="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
4517 #errors
4518 /object/@codetype;attribute not defined;m
4519 /object;no significant content;s
4520
4521 #data
4522 <object data="" standby="" xmlns="http://www.w3.org/1999/xhtml"/>
4523 #errors
4524 /object/@standby;attribute not defined;m
4525 /object;no significant content;s
4526
4527 #data
4528 <object data="" standby="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4529 #errors
4530 /object/@standby;attribute not defined;m
4531 /object;no significant content;s
4532
4533 #data
4534 <object data="" border="0" xmlns="http://www.w3.org/1999/xhtml"/>
4535 #errors
4536 /object;no significant content;s
4537 /object/@border;attribute not defined;m
4538
4539 #data
4540 <object data="" border="none" xmlns="http://www.w3.org/1999/xhtml"/>
4541 #errors
4542 /object/@border;attribute not defined;m
4543 /object/@border;nninteger:syntax error
4544 /object;no significant content;s
4545
4546 #data
4547 <object data="" hspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
4548 #errors
4549 /object/@hspace;attribute not defined;m
4550 /object;no significant content;s
4551
4552 #data
4553 <object data="" hspace="none" xmlns="http://www.w3.org/1999/xhtml"/>
4554 #errors
4555 /object/@hspace;attribute not defined;m
4556 /object;no significant content;s
4557 /object/@hspace;nninteger:syntax error
4558
4559 #data
4560 <object data="" vspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
4561 #errors
4562 /object;no significant content;s
4563 /object/@vspace;attribute not defined;m
4564
4565 #data
4566 <object data="" vspace="none" xmlns="http://www.w3.org/1999/xhtml"/>
4567 #errors
4568 /object;no significant content;s
4569 /object/@vspace;attribute not defined;m
4570 /object/@vspace;nninteger:syntax error
4571
4572 #data
4573 <object data="" align="" xmlns="http://www.w3.org/1999/xhtml"/>
4574 #errors
4575 /object;no significant content;s
4576 /object/@align;attribute not defined;m
4577 /object/@align;enumerated:invalid
4578
4579 #data
4580 <object data="" align="char" xmlns="http://www.w3.org/1999/xhtml"/>
4581 #errors
4582 /object;no significant content;s
4583 /object/@align;attribute not defined;m
4584 /object/@align;enumerated:invalid
4585
4586 #data
4587 <object data="" align="justify" xmlns="http://www.w3.org/1999/xhtml"/>
4588 #errors
4589 /object;no significant content;s
4590 /object/@align;attribute not defined;m
4591 /object/@align;enumerated:invalid
4592
4593 #data
4594 <object data="" align="center" xmlns="http://www.w3.org/1999/xhtml"/>
4595 #errors
4596 /object;no significant content;s
4597 /object/@align;attribute not defined;m
4598 /object/@align;enumerated:invalid
4599
4600 #data
4601 <object data="" align="bottom" xmlns="http://www.w3.org/1999/xhtml"/>
4602 #errors
4603 /object;no significant content;s
4604 /object/@align;attribute not defined;m
4605
4606 #data
4607 <object data="" align="middle" xmlns="http://www.w3.org/1999/xhtml"/>
4608 #errors
4609 /object;no significant content;s
4610 /object/@align;attribute not defined;m
4611
4612 #data
4613 <object data="" align="top" xmlns="http://www.w3.org/1999/xhtml"/>
4614 #errors
4615 /object;no significant content;s
4616 /object/@align;attribute not defined;m
4617
4618 #data
4619 <object data="" align="left" xmlns="http://www.w3.org/1999/xhtml"/>
4620 #errors
4621 /object;no significant content;s
4622 /object/@align;attribute not defined;m
4623
4624 #data
4625 <object data="" align="right" xmlns="http://www.w3.org/1999/xhtml"/>
4626 #errors
4627 /object;no significant content;s
4628 /object/@align;attribute not defined;m
4629
4630 #data
4631 <object name="" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4632 #errors
4633 /object/@name;window name:empty;m
4634
4635 #data
4636 <object name="_" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4637 #errors
4638 /object/@name;window name:reserved;m
4639
4640 #data
4641 <object name="_a" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4642 #errors
4643 /object/@name;window name:reserved;m
4644
4645 #data
4646 <object name="_blank" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4647 #errors
4648 /object/@name;window name:reserved;m
4649
4650 #data
4651 <object name="_parent" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4652 #errors
4653 /object/@name;window name:reserved;m
4654
4655 #data
4656 <object name="_self" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4657 #errors
4658 /object/@name;window name:reserved;m
4659
4660 #data
4661 <object name="_top" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4662 #errors
4663 /object/@name;window name:reserved;m
4664
4665 #data
4666 <object name="abc" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4667 #errors
4668
4669 #data
4670 <object name="self" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
4671 #errors
4672
4673 #data
4674 <param xmlns="http://www.w3.org/1999/xhtml"/>
4675 #errors
4676 /param;attribute missing:name
4677 /param;attribute missing:value
4678
4679 #data
4680 <param name="a" xmlns="http://www.w3.org/1999/xhtml"/>
4681 #errors
4682 /param;attribute missing:value
4683
4684 #data
4685 <param value="a" xmlns="http://www.w3.org/1999/xhtml"/>
4686 #errors
4687 /param;attribute missing:name
4688
4689 #data
4690 <param name="a" value="b" xmlns="http://www.w3.org/1999/xhtml"/>
4691 #errors
4692
4693 #data
4694 <param name="" value="" xmlns="http://www.w3.org/1999/xhtml"/>
4695 #errors
4696
4697 #data
4698 <param name="a" value="b" valuetype="data" xmlns="http://www.w3.org/1999/xhtml"/>
4699 #errors
4700 /param/@valuetype;attribute not defined;m
4701
4702 #data
4703 <param name="a" value="b" valuetype="ref" xmlns="http://www.w3.org/1999/xhtml"/>
4704 #errors
4705 /param/@valuetype;attribute not defined;m
4706
4707 #data
4708 <param name="a" value="b" valuetype="object" xmlns="http://www.w3.org/1999/xhtml"/>
4709 #errors
4710 /param/@valuetype;attribute not defined;m
4711
4712 #data
4713 <param name="a" value="b" valuetype="text" xmlns="http://www.w3.org/1999/xhtml"/>
4714 #errors
4715 /param/@valuetype;attribute not defined;m
4716 /param/@valuetype;enumerated:invalid
4717
4718 #data
4719 <param name="a" value="b" type="text" xmlns="http://www.w3.org/1999/xhtml"/>
4720 #errors
4721 /param/@type;attribute not defined;m
4722 /param/@type;IMT:syntax error
4723
4724 #data
4725 <param name="a" value="b" type="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
4726 #errors
4727 /param/@type;attribute not defined;m
4728
4729 #data
4730 <video xmlns="http://www.w3.org/1999/xhtml"/>
4731 #errors
4732 /video;no significant content;s
4733 /video;element missing:source;m
4734
4735 #data
4736 <video src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4737 #errors
4738 /video;no significant content;s
4739
4740 #data
4741 <video src="``http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4742 #errors
4743 /video/@src;URI::syntax error:iriref3987;m
4744 /video;no significant content;s
4745
4746 #data
4747 <video autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
4748 #errors
4749 /video;no significant content;s
4750 /video;element missing:source;m
4751
4752 #data
4753 <video autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
4754 #errors
4755 /video;no significant content;s
4756 /video;element missing:source;m
4757
4758 #data
4759 <video autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
4760 #errors
4761 /video;no significant content;s
4762 /video/@autoplay;boolean:invalid;m
4763 /video;element missing:source;m
4764
4765 #data
4766 <video autoplay="AUTOPlay" xmlns="http://www.w3.org/1999/xhtml"/>
4767 #errors
4768 /video;no significant content;s
4769 /video;element missing:source;m
4770
4771 #data
4772 <video controls="" xmlns="http://www.w3.org/1999/xhtml"/>
4773 #errors
4774 /video;no significant content;s
4775 /video;element missing:source;m
4776
4777 #data
4778 <video controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
4779 #errors
4780 /video;no significant content;s
4781 /video;element missing:source;m
4782
4783 #data
4784 <video controls="Controls" xmlns="http://www.w3.org/1999/xhtml"/>
4785 #errors
4786 /video;no significant content;s
4787 /video;element missing:source;m
4788
4789 #data
4790 <video controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
4791 #errors
4792 /video/@controls;boolean:invalid;m
4793 /video;no significant content;s
4794 /video;element missing:source;m
4795
4796 #data
4797 <video controls="control" xmlns="http://www.w3.org/1999/xhtml"/>
4798 #errors
4799 /video/@controls;boolean:invalid;m
4800 /video;no significant content;s
4801 /video;element missing:source;m
4802
4803 #data
4804 <video control="" xmlns="http://www.w3.org/1999/xhtml"/>
4805 #errors
4806 /video/@control;attribute not defined;m
4807 /video;no significant content;s
4808 /video;element missing:source;m
4809
4810 #data
4811 <video poster="" xmlns="http://www.w3.org/1999/xhtml"/>
4812 #errors
4813 /video;no significant content;s
4814 /video;element missing:source;m
4815
4816 #data
4817 <video poster="abc" xmlns="http://www.w3.org/1999/xhtml"/>
4818 #errors
4819 /video;element missing:source;m
4820 /video;no significant content;s
4821
4822 #data
4823 <video poster="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4824 #errors
4825 /video/@poster;URI::syntax error:iriref3987;m
4826 /video;no significant content;s
4827 /video;element missing:source;m
4828
4829 #data
4830 <audio xmlns="http://www.w3.org/1999/xhtml"/>
4831 #errors
4832 /audio;no significant content;s
4833 /audio;element missing:source;m
4834
4835 #data
4836 <audio src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4837 #errors
4838 /audio;no significant content;s
4839
4840 #data
4841 <audio src="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
4842 #errors
4843 /audio/@src;URI::syntax error:iriref3987;m
4844 /audio;no significant content;s
4845
4846 #data
4847 <audio autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
4848 #errors
4849 /audio;no significant content;s
4850 /audio;element missing:source;m
4851
4852 #data
4853 <audio autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
4854 #errors
4855 /audio;no significant content;s
4856 /audio;element missing:source;m
4857
4858 #data
4859 <audio autoplay="AUTOPLAY" xmlns="http://www.w3.org/1999/xhtml"/>
4860 #errors
4861 /audio;no significant content;s
4862 /audio;element missing:source;m
4863
4864 #data
4865 <audio autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
4866 #errors
4867 /audio/@autoplay;boolean:invalid;m
4868 /audio;no significant content;s
4869 /audio;element missing:source;m
4870
4871 #data
4872 <audio controls="" xmlns="http://www.w3.org/1999/xhtml"/>
4873 #errors
4874 /audio;no significant content;s
4875 /audio;element missing:source;m
4876
4877 #data
4878 <audio controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
4879 #errors
4880 /audio;no significant content;s
4881 /audio;element missing:source;m
4882
4883 #data
4884 <audio controls="CONTROLS" xmlns="http://www.w3.org/1999/xhtml"/>
4885 #errors
4886 /audio;no significant content;s
4887 /audio;element missing:source;m
4888
4889 #data
4890 <audio controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
4891 #errors
4892 /audio/@controls;boolean:invalid;m
4893 /audio;no significant content;s
4894 /audio;element missing:source;m
4895
4896 #data
4897 <source xmlns="http://www.w3.org/1999/xhtml"/>
4898 #errors
4899 /source;attribute missing:src
4900
4901 #data
4902 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4903 #errors
4904
4905 #data
4906 <source src="%http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4907 #errors
4908 /source/@src;URI::syntax error:iriref3987;m
4909
4910 #data
4911 <source src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
4912 #errors
4913 /source/@type;IMT:syntax error
4914
4915 #data
4916 <source src="http://test/" type="video" xmlns="http://www.w3.org/1999/xhtml"/>
4917 #errors
4918 /source/@type;IMT:syntax error
4919
4920 #data
4921 <source src="http://test/" type="audio/mpeg"
4922 xmlns="http://www.w3.org/1999/xhtml"/>
4923 #errors
4924
4925 #data
4926 <source src="http://test/" type="video/3gpp2; codecs=sevc,s263"
4927 xmlns="http://www.w3.org/1999/xhtml"/>
4928 #errors
4929 /source/@type;IMT:syntax error
4930
4931 #data
4932 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc,s263&quot;"
4933 xmlns="http://www.w3.org/1999/xhtml"/>
4934 #errors
4935
4936 #data
4937 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc, s263&quot;"
4938 xmlns="http://www.w3.org/1999/xhtml"/>
4939 #errors
4940
4941 #data
4942 <source src="http://test/" type="video/3gpp2; codecs='sevc, s263'"
4943 xmlns="http://www.w3.org/1999/xhtml"/>
4944 #errors
4945 /source/@type;IMT:syntax error
4946
4947 #data
4948 <source src="http://test/" media="screen"
4949 xmlns="http://www.w3.org/1999/xhtml"/>
4950 #errors
4951 /source/@media;media query;unsupported
4952
4953 #data
4954 <canvas xmlns="http://www.w3.org/1999/xhtml"/>
4955 #errors
4956 /canvas;no significant content;s
4957
4958 #data
4959 <canvas width="" xmlns="http://www.w3.org/1999/xhtml"/>
4960 #errors
4961 /canvas;no significant content;s
4962 /canvas/@width;nninteger:syntax error
4963
4964 #data
4965 <canvas width="1" xmlns="http://www.w3.org/1999/xhtml"/>
4966 #errors
4967 /canvas;no significant content;s
4968
4969 #data
4970 <canvas width="0" xmlns="http://www.w3.org/1999/xhtml"/>
4971 #errors
4972 /canvas;no significant content;s
4973
4974 #data
4975 <canvas width="100" xmlns="http://www.w3.org/1999/xhtml"/>
4976 #errors
4977 /canvas;no significant content;s
4978
4979 #data
4980 <canvas width="-1" xmlns="http://www.w3.org/1999/xhtml"/>
4981 #errors
4982 /canvas;no significant content;s
4983 /canvas/@width;nninteger:syntax error
4984
4985 #data
4986 <canvas width="saaa" xmlns="http://www.w3.org/1999/xhtml"/>
4987 #errors
4988 /canvas/@width;nninteger:syntax error
4989 /canvas;no significant content;s
4990
4991 #data
4992 <canvas width="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
4993 #errors
4994 /canvas/@width;nninteger:syntax error
4995 /canvas;no significant content;s
4996
4997 #data
4998 <canvas width="13344aa" xmlns="http://www.w3.org/1999/xhtml"/>
4999 #errors
5000 /canvas/@width;nninteger:syntax error
5001 /canvas;no significant content;s
5002
5003 #data
5004 <canvas height="" xmlns="http://www.w3.org/1999/xhtml"/>
5005 #errors
5006 /canvas/@height;nninteger:syntax error
5007 /canvas;no significant content;s
5008
5009 #data
5010 <canvas height="0" xmlns="http://www.w3.org/1999/xhtml"/>
5011 #errors
5012 /canvas;no significant content;s
5013
5014 #data
5015 <canvas height="1" xmlns="http://www.w3.org/1999/xhtml"/>
5016 #errors
5017 /canvas;no significant content;s
5018
5019 #data
5020 <canvas height="-2" xmlns="http://www.w3.org/1999/xhtml"/>
5021 #errors
5022 /canvas/@height;nninteger:syntax error
5023 /canvas;no significant content;s
5024
5025 #data
5026 <canvas height="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
5027 #errors
5028 /canvas/@height;nninteger:syntax error
5029 /canvas;no significant content;s
5030
5031 #data
5032 <canvas height="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
5033 #errors
5034 /canvas/@height;nninteger:syntax error
5035 /canvas;no significant content;s
5036
5037 #data
5038 <canvas width="44" height="14" xmlns="http://www.w3.org/1999/xhtml"/>
5039 #errors
5040 /canvas;no significant content;s
5041
5042 #data
5043 <map xmlns="http://www.w3.org/1999/xhtml"/>
5044 #errors
5045 /map;attribute missing:id
5046 /map;no significant content;s
5047
5048 #data
5049 <map name="aa" xmlns="http://www.w3.org/1999/xhtml"/>
5050 #errors
5051 /map;attribute missing:id
5052 /map/@name;attribute;unsupported
5053 /map;no significant content;s
5054
5055 #data
5056 <map id="aa" xmlns="http://www.w3.org/1999/xhtml"/>
5057 #errors
5058 /map;no significant content;s
5059
5060 #data
5061 <div xmlns="http://www.w3.org/1999/xhtml">
5062 <map id="aa"/>
5063 <p id="aa">x</p>
5064 </div>
5065 #errors
5066 /div/p/@id;duplicate ID
5067 /div/map;no significant content;s
5068
5069 #data
5070 <div xmlns="http://www.w3.org/1999/xhtml">
5071 <p id="aa">x</p>
5072 <map id="aa"/>
5073 </div>
5074 #errors
5075 /div/map/@id;duplicate ID
5076 /div/map;no significant content;s
5077
5078 #data
5079 <map id="" xmlns="http://www.w3.org/1999/xhtml"/>
5080 #errors
5081 /map/@id;empty attribute value
5082 /map;no significant content;s
5083
5084 #data
5085 <area xmlns="http://www.w3.org/1999/xhtml"/>
5086 #errors
5087 /area;attribute missing:coords
5088
5089 #data
5090 <area href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5091 #errors
5092 /area;attribute missing:alt
5093 /area;attribute missing:coords
5094
5095 #data
5096 <area alt="" xmlns="http://www.w3.org/1999/xhtml"/>
5097 #errors
5098 /area/@alt;attribute not allowed
5099 /area;attribute missing:coords
5100
5101 #data
5102 <area href="http://test/" alt="" xmlns="http://www.w3.org/1999/xhtml"/>
5103 #errors
5104 /area;attribute missing:coords
5105
5106 #data
5107 <area href="http://test/" alt="" coords="1,2,3,4"
5108 xmlns="http://www.w3.org/1999/xhtml"/>
5109 #errors
5110
5111 #data
5112 <area href="%%http://test/" alt="" coords="1,2,3,4"
5113 xmlns="http://www.w3.org/1999/xhtml"/>
5114 #errors
5115 /area/@href;URI::syntax error:iriref3987;m
5116
5117 #data
5118 <area href="http://test/" alt="" coords="1,2,3,4"
5119 hreflang=""
5120 xmlns="http://www.w3.org/1999/xhtml"/>
5121 #errors
5122 /area/@hreflang;LangTag:nosemantics:language;m
5123
5124 #data
5125 <area href="http://test/" alt="" coords="1,2,3,4"
5126 hreflang="en"
5127 xmlns="http://www.w3.org/1999/xhtml"/>
5128 #errors
5129
5130 #data
5131 <area coords="1,2,3,4" hreflang="en"
5132 xmlns="http://www.w3.org/1999/xhtml"/>
5133 #errors
5134 /area/@hreflang;attribute not allowed
5135
5136 #data
5137 <area href="http://test/" alt="" coords="1,2,3,4"
5138 media="screen"
5139 xmlns="http://www.w3.org/1999/xhtml"/>
5140 #errors
5141 /area/@media;media query;unsupported
5142
5143 #data
5144 <area coords="1,2,3,4" media="screen"
5145 xmlns="http://www.w3.org/1999/xhtml"/>
5146 #errors
5147 /area/@media;attribute not allowed
5148 /area/@media;media query;unsupported
5149
5150 #data
5151 <area href="http://test/" coords="1,2,3,4" alt="" target=""
5152 xmlns="http://www.w3.org/1999/xhtml"/>
5153 #errors
5154 /area/@target;window name:empty;m
5155
5156 #data
5157 <area href="http://test/" coords="1,2,3,4" alt="" target="_"
5158 xmlns="http://www.w3.org/1999/xhtml"/>
5159 #errors
5160 /area/@target;window name:reserved;m
5161
5162 #data
5163 <area href="http://test/" coords="1,2,3,4" alt="" target="_self"
5164 xmlns="http://www.w3.org/1999/xhtml"/>
5165 #errors
5166
5167 #data
5168 <area href="http://test/" coords="1,2,3,4" alt="" target="_parent"
5169 xmlns="http://www.w3.org/1999/xhtml"/>
5170 #errors
5171
5172 #data
5173 <area href="http://test/" coords="1,2,3,4" alt="" target="_top"
5174 xmlns="http://www.w3.org/1999/xhtml"/>
5175 #errors
5176
5177 #data
5178 <area href="http://test/" coords="1,2,3,4" alt="" target="_blank"
5179 xmlns="http://www.w3.org/1999/xhtml"/>
5180 #errors
5181
5182 #data
5183 <area href="http://test/" coords="1,2,3,4" alt="" target="self"
5184 xmlns="http://www.w3.org/1999/xhtml"/>
5185 #errors
5186
5187 #data
5188 <area href="http://test/" coords="1,2,3,4" alt="" target="_any"
5189 xmlns="http://www.w3.org/1999/xhtml"/>
5190 #errors
5191 /area/@target;window name:reserved;m
5192
5193 #data
5194 <area coords="1,2,3,4" target="_self"
5195 xmlns="http://www.w3.org/1999/xhtml"/>
5196 #errors
5197 /area/@target;attribute not allowed
5198
5199 #data
5200 <area coords="1,2,3,4"
5201 xmlns="http://www.w3.org/1999/xhtml"/>
5202 #errors
5203
5204 #data
5205 <area shape="rect" coords="1,2,3,4"
5206 xmlns="http://www.w3.org/1999/xhtml"/>
5207 #errors
5208
5209 #data
5210 <area shape="RECT" coords="1,2,3,4"
5211 xmlns="http://www.w3.org/1999/xhtml"/>
5212 #errors
5213
5214 #data
5215 <area shape="rectangle" coords="1,2,3,4"
5216 xmlns="http://www.w3.org/1999/xhtml"/>
5217 #errors
5218 /area/@shape;enumerated:non-conforming
5219
5220 #data
5221 <area shape="rec" coords="1,2,3,4"
5222 xmlns="http://www.w3.org/1999/xhtml"/>
5223 #errors
5224 /area/@shape;enumerated:invalid
5225
5226 #data
5227 <area shape="default"
5228 xmlns="http://www.w3.org/1999/xhtml"/>
5229 #errors
5230
5231 #data
5232 <area shape="defaulT"
5233 xmlns="http://www.w3.org/1999/xhtml"/>
5234 #errors
5235
5236 #data
5237 <area shape="circ" coords="1,2,3"
5238 xmlns="http://www.w3.org/1999/xhtml"/>
5239 #errors
5240 /area/@shape;enumerated:non-conforming
5241
5242 #data
5243 <area shape="circle" coords="1,2,3"
5244 xmlns="http://www.w3.org/1999/xhtml"/>
5245 #errors
5246
5247 #data
5248 <area shape="poly" coords="1,2,3,4,5,6"
5249 xmlns="http://www.w3.org/1999/xhtml"/>
5250 #errors
5251
5252 #data
5253 <area shape="polygon" coords="1,2,3,4,5,6"
5254 xmlns="http://www.w3.org/1999/xhtml"/>
5255 #errors
5256 /area/@shape;enumerated:non-conforming
5257
5258 #data
5259 <area shape="XXX" coords="1,2,3,4"
5260 xmlns="http://www.w3.org/1999/xhtml"/>
5261 #errors
5262 /area/@shape;enumerated:invalid
5263
5264 #data
5265 <area shape="circle" coords=""
5266 xmlns="http://www.w3.org/1999/xhtml"/>
5267 #errors
5268 /area/@coords;coords:syntax error
5269
5270 #data
5271 <area shape="circle" coords="1"
5272 xmlns="http://www.w3.org/1999/xhtml"/>
5273 #errors
5274 /area/@coords;coords:number:3:1
5275
5276 #data
5277 <area shape="circle" coords="1,2"
5278 xmlns="http://www.w3.org/1999/xhtml"/>
5279 #errors
5280 /area/@coords;coords:number:3:2
5281
5282 #data
5283 <area shape="circle" coords="1,2,3,4"
5284 xmlns="http://www.w3.org/1999/xhtml"/>
5285 #errors
5286 /area/@coords;coords:number:3:4
5287
5288 #data
5289 <area shape="circle" coords="1,2,3,4,5"
5290 xmlns="http://www.w3.org/1999/xhtml"/>
5291 #errors
5292 /area/@coords;coords:number:3:5
5293
5294 #data
5295 <area shape="circle" coords="1,2,-3"
5296 xmlns="http://www.w3.org/1999/xhtml"/>
5297 #errors
5298 /area/@coords;coords:out of range:2
5299
5300 #data
5301 <area shape="circle" coords="1,2,0"
5302 xmlns="http://www.w3.org/1999/xhtml"/>
5303 #errors
5304
5305 #data
5306 <area shape="circle" coords="-1,-2,4"
5307 xmlns="http://www.w3.org/1999/xhtml"/>
5308 #errors
5309
5310 #data
5311 <area shape="circle" coords="0,0,0"
5312 xmlns="http://www.w3.org/1999/xhtml"/>
5313 #errors
5314
5315 #data
5316 <area shape="circle"
5317 xmlns="http://www.w3.org/1999/xhtml"/>
5318 #errors
5319 /area;attribute missing:coords
5320
5321 #data
5322 <area shape="default" coords="1"
5323 xmlns="http://www.w3.org/1999/xhtml"/>
5324 #errors
5325 /area/@coords;attribute not allowed
5326
5327 #data
5328 <area shape="poly" coords=""
5329 xmlns="http://www.w3.org/1999/xhtml"/>
5330 #errors
5331 /area/@coords;coords:syntax error
5332
5333 #data
5334 <area shape="poly" coords="1"
5335 xmlns="http://www.w3.org/1999/xhtml"/>
5336 #errors
5337 /area/@coords;coords:number:>=6:1
5338
5339 #data
5340 <area shape="poly" coords="1,2"
5341 xmlns="http://www.w3.org/1999/xhtml"/>
5342 #errors
5343 /area/@coords;coords:number:>=6:2
5344
5345 #data
5346 <area shape="poly" coords="1,2,3"
5347 xmlns="http://www.w3.org/1999/xhtml"/>
5348 #errors
5349 /area/@coords;coords:number:>=6:3
5350
5351 #data
5352 <area shape="poly" coords="1,2,3,4"
5353 xmlns="http://www.w3.org/1999/xhtml"/>
5354 #errors
5355 /area/@coords;coords:number:>=6:4
5356
5357 #data
5358 <area shape="poly" coords="1,2,3,4,5"
5359 xmlns="http://www.w3.org/1999/xhtml"/>
5360 #errors
5361 /area/@coords;coords:number:>=6:5
5362
5363 #data
5364 <area shape="poly" coords="1,2,3,4,5,6,7"
5365 xmlns="http://www.w3.org/1999/xhtml"/>
5366 #errors
5367 /area/@coords;coords:number:even:7
5368
5369 #data
5370 <area shape="poly" coords="-1,-23,55,455,232,0"
5371 xmlns="http://www.w3.org/1999/xhtml"/>
5372 #errors
5373
5374 #data
5375 <area shape="poly" coords="0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
5376 xmlns="http://www.w3.org/1999/xhtml"/>
5377 #errors
5378
5379 #data
5380 <area shape="poly"
5381 xmlns="http://www.w3.org/1999/xhtml"/>
5382 #errors
5383 /area;attribute missing:coords
5384
5385 #data
5386 <area shape="rect" coords=""
5387 xmlns="http://www.w3.org/1999/xhtml"/>
5388 #errors
5389 /area/@coords;coords:syntax error
5390
5391 #data
5392 <area shape="rect" coords="1"
5393 xmlns="http://www.w3.org/1999/xhtml"/>
5394 #errors
5395 /area/@coords;coords:number:4:1
5396
5397 #data
5398 <area shape="rect" coords="1,2"
5399 xmlns="http://www.w3.org/1999/xhtml"/>
5400 #errors
5401 /area/@coords;coords:number:4:2
5402
5403 #data
5404 <area shape="rect" coords="1,2,3"
5405 xmlns="http://www.w3.org/1999/xhtml"/>
5406 #errors
5407 /area/@coords;coords:number:4:3
5408
5409 #data
5410 <area shape="rect" coords="1,2,3,4,5"
5411 xmlns="http://www.w3.org/1999/xhtml"/>
5412 #errors
5413 /area/@coords;coords:number:4:5
5414
5415 #data
5416 <area shape="rect"
5417 xmlns="http://www.w3.org/1999/xhtml"/>
5418 #errors
5419 /area;attribute missing:coords
5420
5421 #data
5422 <area shape="rect" coords="0,0,1,1"
5423 xmlns="http://www.w3.org/1999/xhtml"/>
5424 #errors
5425
5426 #data
5427 <area shape="rect" coords="-1,-1,0,0"
5428 xmlns="http://www.w3.org/1999/xhtml"/>
5429 #errors
5430
5431 #data
5432 <area shape="rect" coords="-1,-1,6,6"
5433 xmlns="http://www.w3.org/1999/xhtml"/>
5434 #errors
5435
5436 #data
5437 <area shape="rect" coords="54,54,7876,466"
5438 xmlns="http://www.w3.org/1999/xhtml"/>
5439 #errors
5440
5441 #data
5442 <area shape="rect" coords="646,4,3,657"
5443 xmlns="http://www.w3.org/1999/xhtml"/>
5444 #errors
5445 /area/@coords;coords:out of range:0
5446
5447 #data
5448 <area shape="rect" coords="4,646,657,7"
5449 xmlns="http://www.w3.org/1999/xhtml"/>
5450 #errors
5451 /area/@coords;coords:out of range:1
5452
5453 #data
5454 <area shape="rect" coords="1,2,3,4"
5455 ping="a b"
5456 xmlns="http://www.w3.org/1999/xhtml"/>
5457 #errors
5458 /area/@ping;attribute not allowed
5459
5460 #data
5461 <area shape="rect" coords="1,2,3,4"
5462 rel="author"
5463 xmlns="http://www.w3.org/1999/xhtml"/>
5464 #errors
5465 /area/@rel;attribute not allowed
5466
5467 #data
5468 <area shape="rect" coords="1,2,3,4"
5469 type="text/css"
5470 xmlns="http://www.w3.org/1999/xhtml"/>
5471 #errors
5472 /area/@type;attribute not allowed
5473
5474 #data
5475 <area shape="rect" coords="1,2,3,4"
5476 href="http://test/" type="text" alt=""
5477 xmlns="http://www.w3.org/1999/xhtml"/>
5478 #errors
5479 /area/@type;IMT:syntax error
5480
5481 #data
5482 <area shape="rect" coords="1,2,3,4"
5483 href="http://test/" type="text/css" alt=""
5484 xmlns="http://www.w3.org/1999/xhtml"/>
5485 #errors
5486
5487 #data
5488 <area shape="rect" coords="1,2,3,4"
5489 href="http://test/" rel="author" alt=""
5490 xmlns="http://www.w3.org/1999/xhtml"/>
5491 #errors
5492
5493 #data
5494 <area shape="rect" coords="1,2,3,4"
5495 href="http://test/" rel="author author" alt=""
5496 xmlns="http://www.w3.org/1999/xhtml"/>
5497 #errors
5498 /area/@rel;duplicate token:author
5499
5500 #data
5501 <area shape="rect" coords="1,2,3,4"
5502 href="http://test/" rel="bookmark" alt=""
5503 xmlns="http://www.w3.org/1999/xhtml"/>
5504 #errors
5505
5506 #data
5507 <area shape="rect" coords="1,2,3,4"
5508 href="http://test/" rel="previous" alt=""
5509 xmlns="http://www.w3.org/1999/xhtml"/>
5510 #errors
5511 /area/@rel;link type:non-conforming:previous
5512
5513 #data
5514 <area shape="rect" coords="1,2,3,4"
5515 href="http://test/" rel="edit" alt=""
5516 xmlns="http://www.w3.org/1999/xhtml"/>
5517 #errors
5518 /area/@rel;link type:proposed:edit;s
5519
5520 #data
5521 <area shape="rect" coords="1,2,3,4"
5522 href="http://test/" rel="script" alt=""
5523 xmlns="http://www.w3.org/1999/xhtml"/>
5524 #errors
5525 /area/@rel;link type:non-conforming:script
5526
5527 #data
5528 <area shape="rect" coords="1,2,3,4"
5529 href="http://test/" rel="icon" alt=""
5530 xmlns="http://www.w3.org/1999/xhtml"/>
5531 #errors
5532 /area/@rel;link type:bad context:icon
5533
5534 #data
5535 <area shape="rect" coords="1,2,3,4"
5536 href="http://test/" rel="example-link-type" alt=""
5537 xmlns="http://www.w3.org/1999/xhtml"/>
5538 #errors
5539 /area/@rel;link type:example-link-type;unsupported
5540
5541 #data
5542 <area shape="rect" coords="1,2,3,4"
5543 href="http://test/" ping="a b" alt=""
5544 xmlns="http://www.w3.org/1999/xhtml"/>
5545 #errors
5546
5547 #data
5548 <area shape="rect" coords="1,2,3,4"
5549 href="http://test/" ping="a [b]" alt=""
5550 xmlns="http://www.w3.org/1999/xhtml"/>
5551 #errors
5552 /area/@ping;URIs::syntax error:iriref3987:1;m
5553
5554 #data
5555 <area shape="rect" coords="1,2,3,4"
5556 href="http://test/" ping="a [b] [@c]" alt=""
5557 xmlns="http://www.w3.org/1999/xhtml"/>
5558 #errors
5559 /area/@ping;URIs::syntax error:iriref3987:1;m
5560 /area/@ping;URIs::syntax error:iriref3987:2;m
5561
5562 #data
5563 <area shape="default" rev="" xmlns="http://www.w3.org/1999/xhtml"/>
5564 #errors
5565 /area/@rev;attribute not defined;m
5566
5567 #data
5568 <area shape="default" nohref="" xmlns="http://www.w3.org/1999/xhtml"/>
5569 #errors
5570 /area/@nohref;attribute not defined;m
5571
5572 #data
5573 <area shape="default" nohref="nohref" xmlns="http://www.w3.org/1999/xhtml"/>
5574 #errors
5575 /area/@nohref;attribute not defined;m
5576
5577 #data
5578 <area shape="default" nohref="noHREF" xmlns="http://www.w3.org/1999/xhtml"/>
5579 #errors
5580 /area/@nohref;attribute not defined;m
5581
5582 #data
5583 <area shape="default" nohref="http://example/" xmlns="http://www.w3.org/1999/xhtml"/>
5584 #errors
5585 /area/@nohref;attribute not defined;m
5586 /area/@nohref;boolean:invalid;m
5587
5588 #data
5589 <table xmlns="http://www.w3.org/1999/xhtml"/>
5590 #errors
5591
5592 #data
5593 <table xmlns="http://www.w3.org/1999/xhtml" summary=""/>
5594 #errors
5595 /table/@summary;attribute not defined;m
5596
5597 #data
5598 <table xmlns="http://www.w3.org/1999/xhtml" summary="xxxx"/>
5599 #errors
5600 /table/@summary;attribute not defined;m
5601
5602 #data
5603 <table border="" xmlns="http://www.w3.org/1999/xhtml"/>
5604 #errors
5605 /table/@border;attribute not defined;m
5606 /table/@border;nninteger:syntax error
5607
5608 #data
5609 <table border="1" xmlns="http://www.w3.org/1999/xhtml"/>
5610 #errors
5611 /table/@border;attribute not defined;m
5612
5613 #data
5614 <table frame="border" xmlns="http://www.w3.org/1999/xhtml"/>
5615 #errors
5616 /table/@frame;attribute not defined;m
5617
5618 #data
5619 <table frame="below" xmlns="http://www.w3.org/1999/xhtml"/>
5620 #errors
5621 /table/@frame;attribute not defined;m
5622
5623 #data
5624 <table frame="box" xmlns="http://www.w3.org/1999/xhtml"/>
5625 #errors
5626 /table/@frame;attribute not defined;m
5627
5628 #data
5629 <table frame="vside" xmlns="http://www.w3.org/1999/xhtml"/>
5630 #errors
5631 /table/@frame;attribute not defined;m
5632 /table/@frame;enumerated:invalid
5633
5634 #data
5635 <table rules="none" xmlns="http://www.w3.org/1999/xhtml"/>
5636 #errors
5637 /table/@rules;attribute not defined;m
5638
5639 #data
5640 <table rules="groups" xmlns="http://www.w3.org/1999/xhtml"/>
5641 #errors
5642 /table/@rules;attribute not defined;m
5643
5644 #data
5645 <table rules="all" xmlns="http://www.w3.org/1999/xhtml"/>
5646 #errors
5647 /table/@rules;attribute not defined;m
5648
5649 #data
5650 <table rules="group" xmlns="http://www.w3.org/1999/xhtml"/>
5651 #errors
5652 /table/@rules;attribute not defined;m
5653 /table/@rules;enumerated:invalid
5654
5655 #data
5656 <table cellpadding="1" xmlns="http://www.w3.org/1999/xhtml"/>
5657 #errors
5658 /table/@cellpadding;attribute not defined;m
5659
5660 #data
5661 <table cellpadding="0" xmlns="http://www.w3.org/1999/xhtml"/>
5662 #errors
5663 /table/@cellpadding;attribute not defined;m
5664
5665 #data
5666 <table cellpadding="1%" xmlns="http://www.w3.org/1999/xhtml"/>
5667 #errors
5668 /table/@cellpadding;attribute not defined;m
5669
5670 #data
5671 <table cellpadding="1000%" xmlns="http://www.w3.org/1999/xhtml"/>
5672 #errors
5673 /table/@cellpadding;attribute not defined;m
5674
5675 #data
5676 <table cellpadding="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5677 #errors
5678 /table/@cellpadding;attribute not defined;m
5679 /table/@cellpadding;length:syntax error;m
5680
5681 #data
5682 <table cellpadding="1 " xmlns="http://www.w3.org/1999/xhtml"/>
5683 #errors
5684 /table/@cellpadding;attribute not defined;m
5685 /table/@cellpadding;length:syntax error;m
5686
5687 #data
5688 <table cellpadding=" 4" xmlns="http://www.w3.org/1999/xhtml"/>
5689 #errors
5690 /table/@cellpadding;attribute not defined;m
5691 /table/@cellpadding;length:syntax error;m
5692
5693 #data
5694 <table cellpadding="" xmlns="http://www.w3.org/1999/xhtml"/>
5695 #errors
5696 /table/@cellpadding;attribute not defined;m
5697 /table/@cellpadding;length:syntax error;m
5698
5699 #data
5700 <table cellpadding="1,45" xmlns="http://www.w3.org/1999/xhtml"/>
5701 #errors
5702 /table/@cellpadding;attribute not defined;m
5703 /table/@cellpadding;length:syntax error;m
5704
5705 #data
5706 <table cellpadding="1*" xmlns="http://www.w3.org/1999/xhtml"/>
5707 #errors
5708 /table/@cellpadding;attribute not defined;m
5709 /table/@cellpadding;length:syntax error;m
5710
5711 #data
5712 <table cellpadding="+1" xmlns="http://www.w3.org/1999/xhtml"/>
5713 #errors
5714 /table/@cellpadding;attribute not defined;m
5715 /table/@cellpadding;length:syntax error;m
5716
5717 #data
5718 <table cellpadding="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
5719 #errors
5720 /table/@cellpadding;attribute not defined;m
5721 /table/@cellpadding;length:syntax error;m
5722
5723 #data
5724 <table cellpadding="-0" xmlns="http://www.w3.org/1999/xhtml"/>
5725 #errors
5726 /table/@cellpadding;attribute not defined;m
5727 /table/@cellpadding;length:syntax error;m
5728
5729 #data
5730 <table cellspacing="1" xmlns="http://www.w3.org/1999/xhtml"/>
5731 #errors
5732 /table/@cellspacing;attribute not defined;m
5733
5734 #data
5735 <table cellspacing="0" xmlns="http://www.w3.org/1999/xhtml"/>
5736 #errors
5737 /table/@cellspacing;attribute not defined;m
5738
5739 #data
5740 <table cellspacing="1%" xmlns="http://www.w3.org/1999/xhtml"/>
5741 #errors
5742 /table/@cellspacing;attribute not defined;m
5743
5744 #data
5745 <table cellspacing="1000%" xmlns="http://www.w3.org/1999/xhtml"/>
5746 #errors
5747 /table/@cellspacing;attribute not defined;m
5748
5749 #data
5750 <table cellspacing="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5751 #errors
5752 /table/@cellspacing;attribute not defined;m
5753 /table/@cellspacing;length:syntax error;m
5754
5755 #data
5756 <table cellspacing="1 " xmlns="http://www.w3.org/1999/xhtml"/>
5757 #errors
5758 /table/@cellspacing;attribute not defined;m
5759 /table/@cellspacing;length:syntax error;m
5760
5761 #data
5762 <table cellspacing=" 4" xmlns="http://www.w3.org/1999/xhtml"/>
5763 #errors
5764 /table/@cellspacing;attribute not defined;m
5765 /table/@cellspacing;length:syntax error;m
5766
5767 #data
5768 <table cellspacing="" xmlns="http://www.w3.org/1999/xhtml"/>
5769 #errors
5770 /table/@cellspacing;attribute not defined;m
5771 /table/@cellspacing;length:syntax error;m
5772
5773 #data
5774 <table cellspacing="1,45" xmlns="http://www.w3.org/1999/xhtml"/>
5775 #errors
5776 /table/@cellspacing;attribute not defined;m
5777 /table/@cellspacing;length:syntax error;m
5778
5779 #data
5780 <table cellspacing="1*" xmlns="http://www.w3.org/1999/xhtml"/>
5781 #errors
5782 /table/@cellspacing;attribute not defined;m
5783 /table/@cellspacing;length:syntax error;m
5784
5785 #data
5786 <table cellspacing="+1" xmlns="http://www.w3.org/1999/xhtml"/>
5787 #errors
5788 /table/@cellspacing;attribute not defined;m
5789 /table/@cellspacing;length:syntax error;m
5790
5791 #data
5792 <table cellspacing="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
5793 #errors
5794 /table/@cellspacing;attribute not defined;m
5795 /table/@cellspacing;length:syntax error;m
5796
5797 #data
5798 <table cellspacing="-0" xmlns="http://www.w3.org/1999/xhtml"/>
5799 #errors
5800 /table/@cellspacing;attribute not defined;m
5801 /table/@cellspacing;length:syntax error;m
5802
5803 #data
5804 <caption align="top" xmlns="http://www.w3.org/1999/xhtml"/>
5805 #errors
5806 /caption/@align;attribute not defined;m
5807 /caption;no significant content;s
5808
5809 #data
5810 <caption align="bottom" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5811 #errors
5812 /caption/@align;attribute not defined;m
5813
5814 #data
5815 <caption align="left" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5816 #errors
5817 /caption/@align;attribute not defined;m
5818
5819 #data
5820 <caption align="right" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5821 #errors
5822 /caption/@align;attribute not defined;m
5823
5824 #data
5825 <caption align="middle" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5826 #errors
5827 /caption/@align;attribute not defined;m
5828 /caption/@align;enumerated:invalid
5829
5830 #data
5831 <caption align="center" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5832 #errors
5833 /caption/@align;attribute not defined;m
5834 /caption/@align;enumerated:invalid
5835
5836 #data
5837 <caption align="justify" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5838 #errors
5839 /caption/@align;attribute not defined;m
5840 /caption/@align;enumerated:invalid
5841
5842 #data
5843 <caption align="" xmlns="http://www.w3.org/1999/xhtml">x</caption>
5844 #errors
5845 /caption/@align;attribute not defined;m
5846 /caption/@align;enumerated:invalid
5847
5848 #data
5849 <colgroup xmlns="http://www.w3.org/1999/xhtml"/>
5850 #errors
5851
5852 #data
5853 <colgroup span="" xmlns="http://www.w3.org/1999/xhtml"/>
5854 #errors
5855 /colgroup/@span;nninteger:syntax error
5856
5857 #data
5858 <colgroup span="1" xmlns="http://www.w3.org/1999/xhtml"/>
5859 #errors
5860
5861 #data
5862 <colgroup span="0000000000001" xmlns="http://www.w3.org/1999/xhtml"/>
5863 #errors
5864
5865 #data
5866 <colgroup span="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
5867 #errors
5868
5869 #data
5870 <colgroup span="0" xmlns="http://www.w3.org/1999/xhtml"/>
5871 #errors
5872 /colgroup/@span;nninteger:out of range
5873
5874 #data
5875 <colgroup span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
5876 #errors
5877 /colgroup/@span;nninteger:syntax error
5878
5879 #data
5880 <colgroup span="+1" xmlns="http://www.w3.org/1999/xhtml"/>
5881 #errors
5882 /colgroup/@span;nninteger:syntax error
5883
5884 #data
5885 <colgroup span="111.1" xmlns="http://www.w3.org/1999/xhtml"/>
5886 #errors
5887 /colgroup/@span;nninteger:syntax error
5888
5889 #data
5890 <colgroup span="haergrghra" xmlns="http://www.w3.org/1999/xhtml"/>
5891 #errors
5892 /colgroup/@span;nninteger:syntax error
5893
5894 #data
5895 <colgroup charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
5896 #errors
5897 /colgroup/@charoff;attribute not defined;m
5898
5899 #data
5900 <colgroup charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
5901 #errors
5902 /colgroup/@charoff;attribute not defined;m
5903
5904 #data
5905 <colgroup charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5906 #errors
5907 /colgroup/@charoff;attribute not defined;m
5908 /colgroup/@charoff;length:syntax error;m
5909
5910 #data
5911 <col xmlns="http://www.w3.org/1999/xhtml"/>
5912 #errors
5913
5914 #data
5915 <col span="" xmlns="http://www.w3.org/1999/xhtml"/>
5916 #errors
5917 /col/@span;nninteger:syntax error
5918
5919 #data
5920 <col span="0" xmlns="http://www.w3.org/1999/xhtml"/>
5921 #errors
5922 /col/@span;nninteger:out of range
5923
5924 #data
5925 <col span="1" xmlns="http://www.w3.org/1999/xhtml"/>
5926 #errors
5927
5928 #data
5929 <col span="10" xmlns="http://www.w3.org/1999/xhtml"/>
5930 #errors
5931
5932 #data
5933 <col span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
5934 #errors
5935 /col/@span;nninteger:syntax error
5936
5937 #data
5938 <col charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
5939 #errors
5940 /col/@charoff;attribute not defined;m
5941
5942 #data
5943 <col charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
5944 #errors
5945 /col/@charoff;attribute not defined;m
5946
5947 #data
5948 <col charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5949 #errors
5950 /col/@charoff;attribute not defined;m
5951 /col/@charoff;length:syntax error;m
5952
5953 #data
5954 <thead charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
5955 #errors
5956 /thead/@charoff;attribute not defined;m
5957
5958 #data
5959 <thead charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
5960 #errors
5961 /thead/@charoff;attribute not defined;m
5962
5963 #data
5964 <thead charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5965 #errors
5966 /thead/@charoff;attribute not defined;m
5967 /thead/@charoff;length:syntax error;m
5968
5969 #data
5970 <tbody charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
5971 #errors
5972 /tbody/@charoff;attribute not defined;m
5973
5974 #data
5975 <tbody charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
5976 #errors
5977 /tbody/@charoff;attribute not defined;m
5978
5979 #data
5980 <tbody charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5981 #errors
5982 /tbody/@charoff;attribute not defined;m
5983 /tbody/@charoff;length:syntax error;m
5984
5985 #data
5986 <tfoot charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
5987 #errors
5988 /tfoot/@charoff;attribute not defined;m
5989
5990 #data
5991 <tfoot charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
5992 #errors
5993 /tfoot/@charoff;attribute not defined;m
5994
5995 #data
5996 <tfoot charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
5997 #errors
5998 /tfoot/@charoff;attribute not defined;m
5999 /tfoot/@charoff;length:syntax error;m
6000
6001 #data
6002 <tr bgcolor="blue" xmlns="http://www.w3.org/1999/xhtml"><td>x</td></tr>
6003 #errors
6004 /tr/@bgcolor;attribute not defined;m
6005
6006 #data
6007 <tr charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
6008 #errors
6009 /tr/@charoff;attribute not defined;m
6010
6011 #data
6012 <tr charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
6013 #errors
6014 /tr/@charoff;attribute not defined;m
6015
6016 #data
6017 <tr charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
6018 #errors
6019 /tr/@charoff;attribute not defined;m
6020 /tr/@charoff;length:syntax error;m
6021
6022 #data
6023 <td colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
6024 #errors
6025 /td;no significant content;s
6026
6027 #data
6028 <td colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
6029 #errors
6030 /td/@colspan;nninteger:out of range
6031 /td;no significant content;s
6032
6033 #data
6034 <td rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
6035 #errors
6036 /td;no significant content;s
6037
6038 #data
6039 <td rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
6040 #errors
6041 /td/@rowspan;nninteger:out of range
6042 /td;no significant content;s
6043
6044 #data
6045 <td charoff="1" xmlns="http://www.w3.org/1999/xhtml">x</td>
6046 #errors
6047 /td/@charoff;attribute not defined;m
6048
6049 #data
6050 <td charoff="0%" xmlns="http://www.w3.org/1999/xhtml">x</td>
6051 #errors
6052 /td/@charoff;attribute not defined;m
6053
6054 #data
6055 <td charoff="1px" xmlns="http://www.w3.org/1999/xhtml">x</td>
6056 #errors
6057 /td/@charoff;attribute not defined;m
6058 /td/@charoff;length:syntax error;m
6059
6060 #data
6061 <th charoff="1" xmlns="http://www.w3.org/1999/xhtml">x</th>
6062 #errors
6063 /th/@charoff;attribute not defined;m
6064
6065 #data
6066 <th charoff="0%" xmlns="http://www.w3.org/1999/xhtml">x</th>
6067 #errors
6068 /th/@charoff;attribute not defined;m
6069
6070 #data
6071 <th charoff="1px" xmlns="http://www.w3.org/1999/xhtml">x</th>
6072 #errors
6073 /th/@charoff;attribute not defined;m
6074 /th/@charoff;length:syntax error;m
6075
6076 #data
6077 <th colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
6078 #errors
6079 /th;no significant content;s
6080
6081 #data
6082 <th colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
6083 #errors
6084 /th;no significant content;s
6085 /th/@colspan;nninteger:out of range
6086
6087 #data
6088 <th rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
6089 #errors
6090 /th;no significant content;s
6091
6092 #data
6093 <th rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
6094 #errors
6095 /th/@rowspan;nninteger:out of range
6096 /th;no significant content;s
6097
6098 #data
6099 <th scope="" xmlns="http://www.w3.org/1999/xhtml"/>
6100 #errors
6101 /th/@scope;enumerated:invalid
6102 /th;no significant content;s
6103
6104 #data
6105 <th scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
6106 #errors
6107 /th;no significant content;s
6108
6109 #data
6110 <th scope="col" xmlns="http://www.w3.org/1999/xhtml"/>
6111 #errors
6112 /th;no significant content;s
6113
6114 #data
6115 <th scope="Col" xmlns="http://www.w3.org/1999/xhtml"/>
6116 #errors
6117 /th;no significant content;s
6118
6119 #data
6120 <th scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/>
6121 #errors
6122 /th;no significant content;s
6123
6124 #data
6125 <th scope="colgroup" xmlns="http://www.w3.org/1999/xhtml"/>
6126 #errors
6127 /th;no significant content;s
6128
6129 #data
6130 <td scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
6131 #errors
6132 /td/@scope;attribute not defined;m
6133 /td;no significant content;s
6134
6135 #data
6136 <td scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/>
6137 #errors
6138 /td/@scope;attribute not defined;m
6139 /td;no significant content;s
6140
6141 #data
6142 <td scope="" xmlns="http://www.w3.org/1999/xhtml"/>
6143 #errors
6144 /td/@scope;attribute not defined;m
6145 /td/@scope;enumerated:invalid
6146 /td;no significant content;s
6147
6148 #data
6149 <td nowrap="" xmlns="http://www.w3.org/1999/xhtml">x</td>
6150 #errors
6151 /td/@nowrap;attribute not defined;m
6152
6153 #data
6154 <td nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</td>
6155 #errors
6156 /td/@nowrap;attribute not defined;m
6157
6158 #data
6159 <td nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</td>
6160 #errors
6161 /td/@nowrap;attribute not defined;m
6162
6163 #data
6164 <td nowrap="NoWrap" xmlns="http://www.w3.org/1999/xhtml">x</td>
6165 #errors
6166 /td/@nowrap;attribute not defined;m
6167
6168 #data
6169 <td nowrap="yes" xmlns="http://www.w3.org/1999/xhtml">x</td>
6170 #errors
6171 /td/@nowrap;attribute not defined;m
6172 /td/@nowrap;boolean:invalid;m
6173
6174 #data
6175 <th nowrap="" xmlns="http://www.w3.org/1999/xhtml">x</th>
6176 #errors
6177 /th/@nowrap;attribute not defined;m
6178
6179 #data
6180 <th nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</th>
6181 #errors
6182 /th/@nowrap;attribute not defined;m
6183
6184 #data
6185 <th nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</th>
6186 #errors
6187 /th/@nowrap;attribute not defined;m
6188
6189 #data
6190 <th nowrap="NOwrap" xmlns="http://www.w3.org/1999/xhtml">x</th>
6191 #errors
6192 /th/@nowrap;attribute not defined;m
6193
6194 #data
6195 <th nowrap="yes" xmlns="http://www.w3.org/1999/xhtml">x</th>
6196 #errors
6197 /th/@nowrap;attribute not defined;m
6198 /th/@nowrap;boolean:invalid;m
6199
6200 #data
6201 <td abbr="" xmlns="http://www.w3.org/1999/xhtml">x</td>
6202 #errors
6203 /td/@abbr;attribute not defined;m
6204
6205 #data
6206 <th abbr="" xmlns="http://www.w3.org/1999/xhtml">x</th>
6207 #errors
6208 /th/@abbr;attribute not defined;m
6209
6210 #data
6211 <td axis="" xmlns="http://www.w3.org/1999/xhtml">x</td>
6212 #errors
6213 /td/@axis;attribute not defined;m
6214
6215 #data
6216 <th axis="" xmlns="http://www.w3.org/1999/xhtml">x</th>
6217 #errors
6218 /th/@axis;attribute not defined;m
6219
6220 #data
6221 <td bgcolor="" xmlns="http://www.w3.org/1999/xhtml">x</td>
6222 #errors
6223 /td/@bgcolor;attribute not defined;m
6224 /td/@bgcolor;color:syntax error;m
6225
6226 #data
6227 <th bgcolor="" xmlns="http://www.w3.org/1999/xhtml">x</th>
6228 #errors
6229 /th/@bgcolor;attribute not defined;m
6230 /th/@bgcolor;color:syntax error;m
6231
6232 #data
6233 <td bgcolor="blue" xmlns="http://www.w3.org/1999/xhtml">x</td>
6234 #errors
6235 /td/@bgcolor;attribute not defined;m
6236
6237 #data
6238 <th bgcolor="blue" xmlns="http://www.w3.org/1999/xhtml">x</th>
6239 #errors
6240 /th/@bgcolor;attribute not defined;m
6241
6242 #data
6243 <tbody align="" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
6244 #errors
6245 /tbody/@align;attribute not defined;m
6246 /tbody/@align;enumerated:invalid
6247
6248 #data
6249 <tbody align="left" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
6250 #errors
6251 /tbody/@align;attribute not defined;m
6252
6253 #data
6254 <thead align="right" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></thead>
6255 #errors
6256 /thead/@align;attribute not defined;m
6257
6258 #data
6259 <tfoot align="center" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tfoot>
6260 #errors
6261 /tfoot/@align;attribute not defined;m
6262
6263 #data
6264 <col align="justify" xmlns="http://www.w3.org/1999/xhtml"/>
6265 #errors
6266 /col/@align;attribute not defined;m
6267
6268 #data
6269 <colgroup align="char" xmlns="http://www.w3.org/1999/xhtml"/>
6270 #errors
6271 /colgroup/@align;attribute not defined;m
6272
6273 #data
6274 <tr align="centre" xmlns="http://www.w3.org/1999/xhtml"><th>x</th></tr>
6275 #errors
6276 /tr/@align;attribute not defined;m
6277 /tr/@align;enumerated:invalid
6278
6279 #data
6280 <th align="top" xmlns="http://www.w3.org/1999/xhtml">x</th>
6281 #errors
6282 /th/@align;attribute not defined;m
6283 /th/@align;enumerated:invalid
6284
6285 #data
6286 <td align="bottom" xmlns="http://www.w3.org/1999/xhtml">x</td>
6287 #errors
6288 /td/@align;attribute not defined;m
6289 /td/@align;enumerated:invalid
6290
6291 #data
6292 <tbody valign="" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
6293 #errors
6294 /tbody/@valign;attribute not defined;m
6295 /tbody/@valign;enumerated:invalid
6296
6297 #data
6298 <thead valign="top" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></thead>
6299 #errors
6300 /thead/@valign;attribute not defined;m
6301
6302 #data
6303 <tfoot valign="middle" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tfoot>
6304 #errors
6305 /tfoot/@valign;attribute not defined;m
6306
6307 #data
6308 <tr valign="bottom" xmlns="http://www.w3.org/1999/xhtml"><td>x</td></tr>
6309 #errors
6310 /tr/@valign;attribute not defined;m
6311
6312 #data
6313 <th valign="baseline" xmlns="http://www.w3.org/1999/xhtml">x</th>
6314 #errors
6315 /th/@valign;attribute not defined;m
6316
6317 #data
6318 <td valign="center" xmlns="http://www.w3.org/1999/xhtml">x</td>
6319 #errors
6320 /td/@valign;attribute not defined;m
6321 /td/@valign;enumerated:invalid
6322
6323 #data
6324 <col valign="center" xmlns="http://www.w3.org/1999/xhtml"/>
6325 #errors
6326 /col/@valign;attribute not defined;m
6327 /col/@valign;enumerated:invalid
6328
6329 #data
6330 <colgroup valign="text-bottom" xmlns="http://www.w3.org/1999/xhtml"/>
6331 #errors
6332 /colgroup/@valign;attribute not defined;m
6333 /colgroup/@valign;enumerated:invalid
6334
6335 #data
6336 <tbody char="" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
6337 #errors
6338 /tbody/@char;attribute not defined;m
6339 /tbody/@char;char:syntax error;m
6340
6341 #data
6342 <thead char=" " xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></thead>
6343 #errors
6344 /thead/@char;attribute not defined;m
6345
6346 #data
6347 <tfoot char="x" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tfoot>
6348 #errors
6349 /tfoot/@char;attribute not defined;m
6350
6351 #data
6352 <colgroup char="aa" xmlns="http://www.w3.org/1999/xhtml"/>
6353 #errors
6354 /colgroup/@char;attribute not defined;m
6355 /colgroup/@char;char:syntax error;m
6356
6357 #data
6358 <col char="&#x4e00;" xmlns="http://www.w3.org/1999/xhtml"/>
6359 #errors
6360 /col/@char;attribute not defined;m
6361
6362 #data
6363 <tr char=" x" xmlns="http://www.w3.org/1999/xhtml"><td>x</td></tr>
6364 #errors
6365 /tr/@char;attribute not defined;m
6366 /tr/@char;char:syntax error;m
6367
6368 #data
6369 <th char="." xmlns="http://www.w3.org/1999/xhtml">x</th>
6370 #errors
6371 /th/@char;attribute not defined;m
6372
6373 #data
6374 <td char="char" xmlns="http://www.w3.org/1999/xhtml">x</td>
6375 #errors
6376 /td/@char;attribute not defined;m
6377 /td/@char;char:syntax error;m
6378
6379 #data
6380 <table xmlns="http://www.w3.org/1999/xhtml">
6381 <tr><td headers="a">x</td><th id="a">x</th></tr>
6382 </table>
6383 #errors
6384
6385 #data
6386 <table xmlns="http://www.w3.org/1999/xhtml">
6387 <tr><td headers=" a a ">x</td><th id="a">x</th></tr>
6388 </table>
6389 #errors
6390 /table/tr/td/@headers;duplicate token;m
6391
6392 #data
6393 <table xmlns="http://www.w3.org/1999/xhtml">
6394 <tr><td headers=" b ">x</td><th id="a">x</th></tr>
6395 </table>
6396 #errors
6397 /table/tr/td/@headers;no header cell;m
6398
6399 #data
6400 <table xmlns="http://www.w3.org/1999/xhtml">
6401 <tr><td headers=" b c ">x</td><th id="a">x</th></tr>
6402 </table>
6403 #errors
6404 /table/tr/td/@headers;no header cell;m
6405 /table/tr/td/@headers;no header cell;m
6406
6407 #data
6408 <table xmlns="http://www.w3.org/1999/xhtml">
6409 <tr><td headers=" b">x</td><th id="a">x</th><td id="b">y</td></tr>
6410 </table>
6411 #errors
6412 /table/tr/td/@headers;no header cell;m
6413
6414 #data
6415 <td header="c" xmlns="http://www.w3.org/1999/xhtml">x</td>
6416 #errors
6417 /td/@header;attribute not defined;m
6418
6419 #data
6420 <script xmlns="http://www.w3.org/1999/xhtml"/>
6421 #errors
6422 /script;script:text/javascript;unsupported
6423
6424 #data
6425 <script type="" xmlns="http://www.w3.org/1999/xhtml"/>
6426 #errors
6427 /script/@type;IMT:syntax error
6428 /script;script:text/javascript;unsupported
6429
6430 #data
6431 <script type="text/javascript" xmlns="http://www.w3.org/1999/xhtml"/>
6432 #errors
6433 /script/@type;IMT:obsolete subtype;w
6434 /script;script:text/javascript;unsupported
6435
6436 #data
6437 <script type="text/javascript;e4x=1" xmlns="http://www.w3.org/1999/xhtml"/>
6438 #errors
6439 /script/@type;IMT:obsolete subtype;w
6440 /script/@type;IMT:parameter not allowed:e4x;m
6441 /script;script:text/javascript;e4x=1;unsupported
6442
6443 #data
6444 <script type="text/JavaScript;E4X=1" xmlns="http://www.w3.org/1999/xhtml"/>
6445 #errors
6446 /script/@type;IMT:obsolete subtype;w
6447 /script/@type;IMT:parameter not allowed:e4x;m
6448 /script;script:text/JavaScript;E4X=1;unsupported
6449
6450 #data
6451 <script type="text/javascript;e4x=&quot;1&quot;"
6452 xmlns="http://www.w3.org/1999/xhtml"/>
6453 #errors
6454 /script/@type;IMT:obsolete subtype;w
6455 /script/@type;IMT:parameter not allowed:e4x;m
6456 /script;script:text/javascript;e4x="1";unsupported
6457
6458 #data
6459 <script type="text/javascript;e4x=&quot;\1&quot;"
6460 xmlns="http://www.w3.org/1999/xhtml"/>
6461 #errors
6462 /script/@type;IMT:obsolete subtype;w
6463 /script/@type;IMT:parameter not allowed:e4x;m
6464 /script;script:text/javascript;e4x="\1";unsupported
6465
6466 #data
6467 <script type="text/javascript; ~=a"
6468 xmlns="http://www.w3.org/1999/xhtml"/>
6469 #errors
6470 /script/@type;IMT:obsolete subtype;w
6471 /script/@type;IMT:attribute:syntax error:~;m
6472 /script/@type;IMT:parameter not allowed:~;m
6473 /script;script:text/javascript; ~=a;unsupported
6474
6475 #data
6476 <script type="text~/javascript"
6477 xmlns="http://www.w3.org/1999/xhtml"/>
6478 #errors
6479 /script/@type;IMT:type;unsupported
6480 /script/@type;IMT:unregistered type;w
6481 /script/@type;IMT:type:syntax error:text~;m
6482 /script;script:text~/javascript;unsupported
6483
6484 #data
6485 <script type="text/javascript~"
6486 xmlns="http://www.w3.org/1999/xhtml"/>
6487 #errors
6488 /script/@type;IMT:subtype;unsupported
6489 /script/@type;IMT:subtype:syntax error:javascript~;m
6490 /script;script:text/javascript~;unsupported
6491
6492 #data
6493 <script src="http://test/" type="text/javascript"
6494 xmlns="http://www.w3.org/1999/xhtml"/>
6495 #errors
6496 /script/@type;IMT:obsolete subtype;w
6497
6498 #data
6499 <script src="http://test/%" type="text/javascript"
6500 xmlns="http://www.w3.org/1999/xhtml"/>
6501 #errors
6502 /script/@src;URI::syntax error:iriref3987;m
6503 /script/@type;IMT:obsolete subtype;w
6504
6505 #data
6506 <script defer="" xmlns="http://www.w3.org/1999/xhtml"/>
6507 #errors
6508 /script;script:text/javascript;unsupported
6509
6510 #data
6511 <script src="http://test/" defer=""
6512 xmlns="http://www.w3.org/1999/xhtml"/>
6513 #errors
6514
6515 #data
6516 <script defer="defer" xmlns="http://www.w3.org/1999/xhtml"/>
6517 #errors
6518 /script;script:text/javascript;unsupported
6519
6520 #data
6521 <script src="http://test/" defer="defer"
6522 xmlns="http://www.w3.org/1999/xhtml"/>
6523 #errors
6524
6525 #data
6526 <script defer="DEFER" xmlns="http://www.w3.org/1999/xhtml"/>
6527 #errors
6528 /script;script:text/javascript;unsupported
6529
6530 #data
6531 <script defer="true" xmlns="http://www.w3.org/1999/xhtml"/>
6532 #errors
6533 /script/@defer;boolean:invalid;m
6534 /script;script:text/javascript;unsupported
6535
6536 #data
6537 <script src="http://test/" defer="true"
6538 xmlns="http://www.w3.org/1999/xhtml"/>
6539 #errors
6540 /script/@defer;boolean:invalid;m
6541
6542 #data
6543 <script async="" xmlns="http://www.w3.org/1999/xhtml"/>
6544 #errors
6545 /script;script:text/javascript;unsupported
6546
6547 #data
6548 <script src="http://test/" async=""
6549 xmlns="http://www.w3.org/1999/xhtml"/>
6550 #errors
6551
6552 #data
6553 <script async="async" xmlns="http://www.w3.org/1999/xhtml"/>
6554 #errors
6555 /script;script:text/javascript;unsupported
6556
6557 #data
6558 <script src="http://test/" async="async"
6559 xmlns="http://www.w3.org/1999/xhtml"/>
6560 #errors
6561
6562 #data
6563 <script async="true" xmlns="http://www.w3.org/1999/xhtml"/>
6564 #errors
6565 /script/@async;boolean:invalid;m
6566 /script;script:text/javascript;unsupported
6567
6568 #data
6569 <script src="http://test/" async="true"
6570 xmlns="http://www.w3.org/1999/xhtml"/>
6571 #errors
6572 /script/@async;boolean:invalid;m
6573
6574 #data
6575 <script src="http://test/" async="aSync"
6576 xmlns="http://www.w3.org/1999/xhtml"/>
6577 #errors
6578
6579 #data
6580 <script defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
6581 #errors
6582 /script;script:text/javascript;unsupported
6583
6584 #data
6585 <script defer="defer" async="async" xmlns="http://www.w3.org/1999/xhtml"/>
6586 #errors
6587 /script;script:text/javascript;unsupported
6588
6589 #data
6590 <script src="" defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
6591 #errors
6592
6593 #data
6594 <script language="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
6595 #errors
6596 /script/@language;attribute not defined;m
6597 /script;script:text/javascript;unsupported
6598
6599 #data
6600 <script langage="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
6601 #errors
6602 /script/@langage;attribute not defined;m
6603 /script;script:text/javascript;unsupported
6604
6605 #data
6606 <script languege="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
6607 #errors
6608 /script/@languege;attribute not defined;m
6609 /script;script:text/javascript;unsupported
6610
6611 #data
6612 <script language="JavaScript" xmlns="http://www.w3.org/1999/xhtml"/>
6613 #errors
6614 /script/@language;attribute not defined;m
6615 /script;script:text/JavaScript;unsupported
6616
6617 #data
6618 <script language="jscript" xmlns="http://www.w3.org/1999/xhtml"/>
6619 #errors
6620 /script/@language;attribute not defined;m
6621 /script;script:text/jscript;unsupported
6622
6623 #data
6624 <script language="javascript1.2" xmlns="http://www.w3.org/1999/xhtml"/>
6625 #errors
6626 /script/@language;attribute not defined;m
6627 /script;script:text/javascript1.2;unsupported
6628
6629 #data
6630 <script language="vbscript" xmlns="http://www.w3.org/1999/xhtml"/>
6631 #errors
6632 /script/@language;attribute not defined;m
6633 /script;script:text/vbscript;unsupported
6634
6635 #data
6636 <script language="XML" xmlns="http://www.w3.org/1999/xhtml"/>
6637 #errors
6638 /script/@language;attribute not defined;m
6639 /script;script:text/XML;unsupported
6640
6641 #data
6642 <event-source xmlns="http://www.w3.org/1999/xhtml"/>
6643 #errors
6644
6645 #data
6646 <event-source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
6647 #errors
6648
6649 #data
6650 <event-source src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
6651 #errors
6652 /event-source/@src;URI::syntax error:iriref3987;m
6653
6654 #data
6655 <details xmlns="http://www.w3.org/1999/xhtml"/>
6656 #errors
6657 /details;no significant content;s
6658 /details;element missing:legend;m
6659
6660 #data
6661 <details open="" xmlns="http://www.w3.org/1999/xhtml"/>
6662 #errors
6663 /details;no significant content;s
6664 /details;element missing:legend;m
6665
6666 #data
6667 <details open="open" xmlns="http://www.w3.org/1999/xhtml"/>
6668 #errors
6669 /details;no significant content;s
6670 /details;element missing:legend;m
6671
6672 #data
6673 <details open="OPEN" xmlns="http://www.w3.org/1999/xhtml"/>
6674 #errors
6675 /details;no significant content;s
6676 /details;element missing:legend;m
6677
6678 #data
6679 <details open="true" xmlns="http://www.w3.org/1999/xhtml"/>
6680 #errors
6681 /details/@open;boolean:invalid;m
6682 /details;no significant content;s
6683 /details;element missing:legend;m
6684
6685 #data
6686 <datagrid xmlns="http://www.w3.org/1999/xhtml"/>
6687 #errors
6688 /datagrid;no significant content;s
6689
6690 #data
6691 <datagrid disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
6692 #errors
6693 /datagrid;no significant content;s
6694
6695 #data
6696 <datagrid disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
6697 #errors
6698 /datagrid;no significant content;s
6699
6700 #data
6701 <datagrid disabled="Disabled" xmlns="http://www.w3.org/1999/xhtml"/>
6702 #errors
6703 /datagrid;no significant content;s
6704
6705 #data
6706 <datagrid disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
6707 #errors
6708 /datagrid/@disabled;boolean:invalid;m
6709 /datagrid;no significant content;s
6710
6711 #data
6712 <datagrid multiple="" xmlns="http://www.w3.org/1999/xhtml"/>
6713 #errors
6714 /datagrid;no significant content;s
6715
6716 #data
6717 <datagrid multiple="multiple" xmlns="http://www.w3.org/1999/xhtml"/>
6718 #errors
6719 /datagrid;no significant content;s
6720
6721 #data
6722 <datagrid multiple="MULTIPLE" xmlns="http://www.w3.org/1999/xhtml"/>
6723 #errors
6724 /datagrid;no significant content;s
6725
6726 #data
6727 <datagrid multiple="true" xmlns="http://www.w3.org/1999/xhtml"/>
6728 #errors
6729 /datagrid/@multiple;boolean:invalid;m
6730 /datagrid;no significant content;s
6731
6732 #data
6733 <command xmlns="http://www.w3.org/1999/xhtml"/>
6734 #errors
6735
6736 #data
6737 <command default="" xmlns="http://www.w3.org/1999/xhtml"/>
6738 #errors
6739
6740 #data
6741 <command default="default" xmlns="http://www.w3.org/1999/xhtml"/>
6742 #errors
6743
6744 #data
6745 <command default="DEFAULT" xmlns="http://www.w3.org/1999/xhtml"/>
6746 #errors
6747
6748 #data
6749 <command default="true" xmlns="http://www.w3.org/1999/xhtml"/>
6750 #errors
6751 /command/@default;boolean:invalid;m
6752
6753 #data
6754 <command checked="" xmlns="http://www.w3.org/1999/xhtml"/>
6755 #errors
6756
6757 #data
6758 <command checked="checked" xmlns="http://www.w3.org/1999/xhtml"/>
6759 #errors
6760
6761 #data
6762 <command checked="Checked" xmlns="http://www.w3.org/1999/xhtml"/>
6763 #errors
6764
6765 #data
6766 <command checked="true" xmlns="http://www.w3.org/1999/xhtml"/>
6767 #errors
6768 /command/@checked;boolean:invalid;m
6769
6770 #data
6771 <command hidden="" xmlns="http://www.w3.org/1999/xhtml"/>
6772 #errors
6773
6774 #data
6775 <command hidden="hidden" xmlns="http://www.w3.org/1999/xhtml"/>
6776 #errors
6777
6778 #data
6779 <command hidden="HIDDEN" xmlns="http://www.w3.org/1999/xhtml"/>
6780 #errors
6781
6782 #data
6783 <command hidden="true" xmlns="http://www.w3.org/1999/xhtml"/>
6784 #errors
6785 /command/@hidden;boolean:invalid;m
6786
6787 #data
6788 <command disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
6789 #errors
6790
6791 #data
6792 <command disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
6793 #errors
6794
6795 #data
6796 <command disabled="Disabled" xmlns="http://www.w3.org/1999/xhtml"/>
6797 #errors
6798
6799 #data
6800 <command disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
6801 #errors
6802 /command/@disabled;boolean:invalid;m
6803
6804 #data
6805 <command label="" xmlns="http://www.w3.org/1999/xhtml"/>
6806 #errors
6807
6808 #data
6809 <command label=" " xmlns="http://www.w3.org/1999/xhtml"/>
6810 #errors
6811
6812 #data
6813 <command label="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
6814 #errors
6815
6816 #data
6817 <command label="label" xmlns="http://www.w3.org/1999/xhtml"/>
6818 #errors
6819
6820 #data
6821 <command label="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
6822 #errors
6823
6824 #data
6825 <command label="&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
6826 #errors
6827
6828 #data
6829 <command title="" xmlns="http://www.w3.org/1999/xhtml"/>
6830 #errors
6831
6832 #data
6833 <command title="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
6834 #errors
6835
6836 #data
6837 <command radiogroup="" xmlns="http://www.w3.org/1999/xhtml"/>
6838 #errors
6839
6840 #data
6841 <command radiogroup="aa" xmlns="http://www.w3.org/1999/xhtml"/>
6842 #errors
6843
6844 #data
6845 <command type="" xmlns="http://www.w3.org/1999/xhtml"/>
6846 #errors
6847 /command/@type;attribute value not allowed
6848
6849 #data
6850 <command type=" " xmlns="http://www.w3.org/1999/xhtml"/>
6851 #errors
6852 /command/@type;attribute value not allowed
6853
6854 #data
6855 <command type="default" xmlns="http://www.w3.org/1999/xhtml"/>
6856 #errors
6857 /command/@type;attribute value not allowed
6858
6859 #data
6860 <command type="command" xmlns="http://www.w3.org/1999/xhtml"/>
6861 #errors
6862
6863 #data
6864 <command type="Command" xmlns="http://www.w3.org/1999/xhtml"/>
6865 #errors
6866 /command/@type;attribute value not allowed
6867
6868 #data
6869 <command type=" command" xmlns="http://www.w3.org/1999/xhtml"/>
6870 #errors
6871 /command/@type;attribute value not allowed
6872
6873 #data
6874 <command type="command " xmlns="http://www.w3.org/1999/xhtml"/>
6875 #errors
6876 /command/@type;attribute value not allowed
6877
6878 #data
6879 <command type="commandline" xmlns="http://www.w3.org/1999/xhtml"/>
6880 #errors
6881 /command/@type;attribute value not allowed
6882
6883 #data
6884 <command type="checkbox" xmlns="http://www.w3.org/1999/xhtml"/>
6885 #errors
6886
6887 #data
6888 <command type="check" xmlns="http://www.w3.org/1999/xhtml"/>
6889 #errors
6890 /command/@type;attribute value not allowed
6891
6892 #data
6893 <command type="radio" xmlns="http://www.w3.org/1999/xhtml"/>
6894 #errors
6895
6896 #data
6897 <command type="radiobutton" xmlns="http://www.w3.org/1999/xhtml"/>
6898 #errors
6899 /command/@type;attribute value not allowed
6900
6901 #data
6902 <command icon="" xmlns="http://www.w3.org/1999/xhtml"/>
6903 #errors
6904
6905 #data
6906 <command icon="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
6907 #errors
6908
6909 #data
6910 <command icon="http://test/#test" xmlns="http://www.w3.org/1999/xhtml"/>
6911 #errors
6912
6913 #data
6914 <command icon="test" xmlns="http://www.w3.org/1999/xhtml"/>
6915 #errors
6916
6917 #data
6918 <command icon="[]" xmlns="http://www.w3.org/1999/xhtml"/>
6919 #errors
6920 /command/@icon;URI::syntax error:iriref3987;m
6921
6922 #data
6923 <command icon="a b" xmlns="http://www.w3.org/1999/xhtml"/>
6924 #errors
6925 /command/@icon;URI::syntax error:iriref3987;m
6926
6927 #data
6928 <menu xmlns="http://www.w3.org/1999/xhtml"/>
6929 #errors
6930 /menu;no significant content;s
6931
6932 #data
6933 <menu label="" xmlns="http://www.w3.org/1999/xhtml"/>
6934 #errors
6935 /menu;no significant content;s
6936
6937 #data
6938 <menu label=" " xmlns="http://www.w3.org/1999/xhtml"/>
6939 #errors
6940 /menu;no significant content;s
6941
6942 #data
6943 <menu label="aa" xmlns="http://www.w3.org/1999/xhtml"/>
6944 #errors
6945 /menu;no significant content;s
6946
6947 #data
6948 <menu type="" xmlns="http://www.w3.org/1999/xhtml"/>
6949 #errors
6950 /menu/@type;enumerated:invalid
6951 /menu;no significant content;s
6952
6953 #data
6954 <menu type="type" xmlns="http://www.w3.org/1999/xhtml"/>
6955 #errors
6956 /menu;no significant content;s
6957 /menu/@type;enumerated:invalid
6958
6959 #data
6960 <menu type="toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
6961 #errors
6962 /menu;no significant content;s
6963
6964 #data
6965 <menu type="Toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
6966 #errors
6967 /menu;no significant content;s
6968
6969 #data
6970 <menu type=" toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
6971 #errors
6972 /menu/@type;enumerated:invalid
6973 /menu;no significant content;s
6974
6975 #data
6976 <menu type="context" xmlns="http://www.w3.org/1999/xhtml"/>
6977 #errors
6978 /menu;no significant content;s
6979
6980 #data
6981 <menu type="conteXt" xmlns="http://www.w3.org/1999/xhtml"/>
6982 #errors
6983 /menu;no significant content;s
6984
6985 #data
6986 <menu type="context " xmlns="http://www.w3.org/1999/xhtml"/>
6987 #errors
6988 /menu/@type;enumerated:invalid
6989 /menu;no significant content;s
6990
6991 #data
6992 <menu autosubmit="" xmlns="http://www.w3.org/1999/xhtml"/>
6993 #errors
6994 /menu;no significant content;s
6995
6996 #data
6997 <menu autosubmit="autosubmit" xmlns="http://www.w3.org/1999/xhtml"/>
6998 #errors
6999 /menu;no significant content;s
7000
7001 #data
7002 <menu autosubmit="yes" xmlns="http://www.w3.org/1999/xhtml"/>
7003 #errors
7004 /menu/@autosubmit;boolean:invalid;m
7005 /menu;no significant content;s
7006
7007 #data
7008 <menu autosubmit="AUTOSubmit" xmlns="http://www.w3.org/1999/xhtml"/>
7009 #errors
7010 /menu;no significant content;s
7011
7012 #data
7013 <menu autosubmit="AutoSubmit" xmlns="http://www.w3.org/1999/xhtml"/>
7014 #errors
7015 /menu;no significant content;s
7016
7017 #data
7018 <p contextmenu="" xmlns="http://www.w3.org/1999/xhtml"/>
7019 #errors
7020 /p/@contextmenu;no referenced menu
7021 /p;no significant content;s
7022
7023 #data
7024 <p contextmenu="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
7025 #errors
7026 /p/@contextmenu;no referenced menu
7027 /p;no significant content;s
7028
7029 #data
7030 <div xmlns="http://www.w3.org/1999/xhtml">
7031 <p contextmenu=""/><menu id=""/>
7032 </div>
7033 #errors
7034 /div/menu/@id;empty attribute value
7035 /div;no significant content;s
7036 /div/p;no significant content;s
7037 /div/menu;no significant content;s
7038
7039 #data
7040 <div xmlns="http://www.w3.org/1999/xhtml">
7041 <p contextmenu="a"/><menu id="a"/>
7042 </div>
7043 #errors
7044 /div;no significant content;s
7045 /div/p;no significant content;s
7046 /div/menu;no significant content;s
7047
7048 #data
7049 <div xmlns="http://www.w3.org/1999/xhtml">
7050 <p contextmenu="a"/><menu id="A"/>
7051 </div>
7052 #errors
7053 /div/p/@contextmenu;no referenced menu
7054 /div;no significant content;s
7055 /div/p;no significant content;s
7056 /div/menu;no significant content;s
7057
7058 #data
7059 <div xmlns="http://www.w3.org/1999/xhtml">
7060 <menu id="a"/><p contextmenu="a"/>
7061 </div>
7062 #errors
7063 /div;no significant content;s
7064 /div/menu;no significant content;s
7065 /div/p;no significant content;s
7066
7067 #data
7068 <div contextmenu="a" xmlns="http://www.w3.org/1999/xhtml">
7069 <menu id="a"/>
7070 </div>
7071 #errors
7072 /div;no significant content;s
7073 /div/menu;no significant content;s
7074
7075 #data
7076 <menu id="a" xmlns="http://www.w3.org/1999/xhtml">
7077 <span contextmenu="a"/>
7078 </menu>
7079 #errors
7080 /menu;no significant content;s
7081 /menu/span;no significant content;s
7082
7083 #data
7084 <div xmlns="http://www.w3.org/1999/xhtml">
7085 <p contextmenu="a a"/><menu id="a a"/>
7086 </div>
7087 #errors
7088 /div/menu/@id;space in ID
7089 /div;no significant content;s
7090 /div/p;no significant content;s
7091 /div/menu;no significant content;s
7092
7093 #data
7094 <div xmlns="http://www.w3.org/1999/xhtml">
7095 <p contextmenu="a a"/><menu id="a"/>
7096 </div>
7097 #errors
7098 /div/p/@contextmenu;no referenced menu
7099 /div;no significant content;s
7100 /div/p;no significant content;s
7101 /div/menu;no significant content;s
7102
7103 #data
7104 <div xmlns="http://www.w3.org/1999/xhtml">
7105 <p contextmenu="a a"/><menu id="a a"/>
7106 </div>
7107 #errors
7108 /div/p/@contextmenu;no referenced menu
7109 /div/menu/@id;space in ID
7110 /div;no significant content;s
7111 /div/p;no significant content;s
7112 /div/menu;no significant content;s
7113
7114 #data
7115 <div xmlns="http://www.w3.org/1999/xhtml">
7116 <p contextmenu="a"/><ul id="a"/>
7117 </div>
7118 #errors
7119 /div/p/@contextmenu;no referenced menu
7120 /div;no significant content;s
7121 /div/p;no significant content;s
7122
7123 #data
7124 <rule xmlns="http://www.w3.org/1999/xhtml" mode=""/>
7125 #errors
7126
7127 #data
7128 <rule xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
7129 #errors
7130
7131 #data
7132 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a"/>
7133 #errors
7134
7135 #data
7136 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
7137 #errors
7138
7139 #data
7140 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
7141 #errors
7142
7143 #data
7144 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a A"/>
7145 #errors
7146
7147 #data
7148 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a a"/>
7149 #errors
7150 /rule/@mode;duplicate token:a
7151
7152 #data
7153 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
7154 #errors
7155 /rule/@mode;duplicate token:a
7156
7157 #data
7158 <rule xmlns="http://www.w3.org/1999/xhtml" condition=""/>
7159 #errors
7160 /rule/@condition;selectors:no sss;m
7161
7162 #data
7163 <rule xmlns="http://www.w3.org/1999/xhtml" condition=" "/>
7164 #errors
7165 /rule/@condition;selectors:no sss;m
7166
7167 #data
7168 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a"/>
7169 #errors
7170
7171 #data
7172 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a b "/>
7173 #errors
7174
7175 #data
7176 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a, b"/>
7177 #errors
7178
7179 #data
7180 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a|b"/>
7181 #errors
7182 /rule/@condition;selectors:namespace prefix:not declared;m
7183
7184 #data
7185 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a["/>
7186 #errors
7187 /rule/@condition;selectors:no attr name;m
7188
7189 #data
7190 <rule xmlns="http://www.w3.org/1999/xhtml" condition="*/**/*"/>
7191 #errors
7192 /rule/@condition;selectors:no combinator;m
7193
7194 #data
7195 <rule xmlns="http://www.w3.org/1999/xhtml" filter=""/>
7196 #errors
7197 /rule/@filter;attribute not defined;m
7198
7199 #data
7200 <nest xmlns="http://www.w3.org/1999/xhtml" mode=""/>
7201 #errors
7202 /nest/@mode;mode:syntax error
7203
7204 #data
7205 <nest xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
7206 #errors
7207 /nest/@mode;mode:syntax error
7208
7209 #data
7210 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a"/>
7211 #errors
7212
7213 #data
7214 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a "/>
7215 #errors
7216 /nest/@mode;mode:syntax error
7217
7218 #data
7219 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
7220 #errors
7221 /nest/@mode;mode:syntax error
7222
7223 #data
7224 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
7225 #errors
7226 /nest/@mode;mode:syntax error
7227
7228 #data
7229 <nest xmlns="http://www.w3.org/1999/xhtml" mode="&#x3000;"/>
7230 #errors
7231
7232 #data
7233 <nest xmlns="http://www.w3.org/1999/xhtml" filter=""/>
7234 #errors
7235 /nest/@filter;selectors:no sss;m
7236
7237 #data
7238 <nest xmlns="http://www.w3.org/1999/xhtml" filter=" "/>
7239 #errors
7240 /nest/@filter;selectors:no sss;m
7241
7242 #data
7243 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a b"/>
7244 #errors
7245
7246 #data
7247 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a + b"/>
7248 #errors
7249
7250 #data
7251 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a.b#c[d]"/>
7252 #errors
7253
7254 #data
7255 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a|b"/>
7256 #errors
7257 /nest/@filter;selectors:namespace prefix:not declared;m
7258
7259 #data
7260 <nest xmlns="http://www.w3.org/1999/xhtml" condition="a|b"/>
7261 #errors
7262 /nest/@condition;attribute not defined;m
7263
7264 #data
7265 <div xmlns="http://www.w3.org/1999/xhtml"
7266 template="#a">x
7267 <datatemplate id="a">
7268 </datatemplate>
7269 </div>
7270 #errors
7271
7272 #data
7273 <div xmlns="http://www.w3.org/1999/xhtml">
7274 <datatemplate id="a"></datatemplate>
7275 <p template="#a">x</p>
7276 </div>
7277 #errors
7278
7279 #data
7280 <div xmlns="http://www.w3.org/1999/xhtml">
7281 <p template="#a">x</p>
7282 <datatemplate id="a"/>
7283 </div>
7284 #errors
7285
7286 #data
7287 <div xmlns="http://www.w3.org/1999/xhtml">
7288 <div template="#a">x<datatemplate id="a"></datatemplate></div>
7289 </div>
7290 #errors
7291
7292 #data
7293 <div xmlns="http://www.w3.org/1999/xhtml">
7294 <p template="#a">x</p>
7295 <p id="a">y</p>
7296 </div>
7297 #errors
7298 /div/p/@template;template:not template;m
7299
7300 #data
7301 <div xmlns="http://www.w3.org/1999/xhtml">
7302 <p template="#">x</p>
7303 </div>
7304 #errors
7305 /div/p/@template;template:not template;m
7306
7307 #data
7308 <div xmlns="http://www.w3.org/1999/xhtml">
7309 <p template="">x</p>
7310 </div>
7311 #errors
7312 /div/p/@template;template:not template;m
7313
7314 #data
7315 <div xmlns="http://www.w3.org/1999/xhtml">
7316 <p template="#no-such-template">x</p>
7317 </div>
7318 #errors
7319 /div/p/@template;template:not template;m
7320
7321 #data
7322 <div xmlns="http://www.w3.org/1999/xhtml">
7323 <p template="#">x</p>
7324 <datatemplate id=""/>
7325 </div>
7326 #errors
7327 /div/p/@template;template:not template;m
7328 /div/datatemplate/@id;empty attribute value
7329
7330 #data
7331 <div xmlns="http://www.w3.org/1999/xhtml"
7332 template="external-template">x</div>
7333 #errors
7334
7335 #data
7336 <div xmlns="http://www.w3.org/1999/xhtml"
7337 template="external-inline-template#temlate">x</div>
7338 #errors
7339
7340 #data
7341 <div xmlns="http://www.w3.org/1999/xhtml">
7342 <p id="itself" template="#itself">x</p>
7343 </div>
7344 #errors
7345 /div/p/@template;template:not template;m
7346
7347 #data
7348 <div xmlns="http://www.w3.org/1999/xhtml">
7349 <datatemplate id="itself" template="#itself"/>x
7350 </div>
7351 #errors
7352 /div/datatemplate/@template;fragment points itself;m
7353
7354 #data
7355 <div xmlns="http://www.w3.org/1999/xhtml">
7356 <div id="a">x</div>
7357 <div template="#t" ref="#a">y</div>
7358 <datatemplate id="t"/>
7359 </div>
7360 #errors
7361
7362 #data
7363 <div xmlns="http://www.w3.org/1999/xhtml">
7364 <div template="#t" ref="#a">y</div>
7365 <div id="a">x</div>
7366 <datatemplate id="t"/>
7367 </div>
7368 #errors
7369
7370 #data
7371 <div xmlns="http://www.w3.org/1999/xhtml">
7372 <div template="#t" ref="#">y</div>
7373 <div id="">x</div>
7374 <datatemplate id="t"/>
7375 </div>
7376 #errors
7377 /div/div/@id;empty attribute value
7378
7379 #data
7380 <div xmlns="http://www.w3.org/1999/xhtml">
7381 <div template="#t" ref="#">y</div>
7382 <datatemplate id="t"/>
7383 </div>
7384 #errors
7385
7386 #data
7387 <div xmlns="http://www.w3.org/1999/xhtml">
7388 <div template="#t" ref="#no-such-element">y</div>
7389 <datatemplate id="t"/>
7390 </div>
7391 #errors
7392 /div/div/@ref;fragment points nothing;m
7393
7394 #data
7395 <div xmlns="http://www.w3.org/1999/xhtml">
7396 <div template="#t" ref="external-html">y</div>
7397 <datatemplate id="t"/>
7398 </div>
7399 #errors
7400
7401 #data
7402 <div xmlns="http://www.w3.org/1999/xhtml">
7403 <div template="#t" ref="external-html#element">y</div>
7404 <datatemplate id="t"/>
7405 </div>
7406 #errors
7407
7408 #data
7409 <div xmlns="http://www.w3.org/1999/xhtml">
7410 <div template="#t" ref="">y</div>
7411 <datatemplate id="t"/>
7412 </div>
7413 #errors
7414
7415 #data
7416 <div xmlns="http://www.w3.org/1999/xhtml">
7417 <div template="#t" id="itself" ref="#itself">y</div>
7418 <datatemplate id="t"/>
7419 </div>
7420 #errors
7421 /div/div/@ref;fragment points itself;m
7422
7423 #data
7424 <div xmlns="http://www.w3.org/1999/xhtml" ref="x">x</div>
7425 #errors
7426 /div/@ref;attribute not allowed;m
7427
7428 #data
7429 <div xmlns="http://www.w3.org/1999/xhtml"
7430 registrationmark="">x</div>
7431 #errors
7432 /div/@registrationmark;attribute not allowed;m
7433
7434 #data
7435 <rule xmlns="http://www.w3.org/1999/xhtml"
7436 registrationmark="">x</rule>
7437 #errors
7438 /rule/@registrationmark;attribute not allowed;m
7439
7440 #data
7441 <rule xmlns="http://www.w3.org/1999/xhtml">
7442 <div registrationmark="">x</div>
7443 </rule>
7444 #errors
7445
7446 #data
7447 <rule xmlns="http://www.w3.org/1999/xhtml">
7448 <div registrationmark="xxxx">x</div>
7449 </rule>
7450 #errors
7451
7452 #data
7453 <rule xmlns="http://www.w3.org/1999/xhtml">
7454 <div registrationmark="a b c">x</div>
7455 </rule>
7456 #errors
7457
7458 #data
7459 <rule xmlns="http://www.w3.org/1999/xhtml">
7460 <div registrationmark="a">x</div>
7461 <div registrationmark="a">x</div>
7462 </rule>
7463 #errors
7464
7465 #data
7466 <rule xmlns="http://www.w3.org/1999/xhtml">
7467 <rule>
7468 <div registrationmark="a">x</div>
7469 </rule>
7470 </rule>
7471 #errors
7472
7473 #data
7474 <rule xmlns="http://www.w3.org/1999/xhtml">
7475 <rule>
7476 </rule>
7477 <div registrationmark="a">x</div>
7478 </rule>
7479 #errors
7480
7481 #data
7482 <datatemplate xmlns="http://www.w3.org/1999/xhtml">
7483 <rule>
7484 </rule>
7485 <div registrationmark="a">x</div>
7486 </datatemplate>
7487 #errors
7488 /datatemplate/div;element not allowed:datatemplate
7489 /datatemplate/div/@registrationmark;attribute not allowed;m
7490
7491 #data
7492 <rule xmlns="http://www.w3.org/1999/xhtml">
7493 <div>
7494 <div registrationmark="a">x</div>
7495 </div>
7496 </rule>
7497 #errors
7498
7499 #data
7500 <rule xmlns="http://www.w3.org/1999/xhtml">
7501 <div>x
7502 <nest registrationmark="a"/>
7503 </div>
7504 </rule>
7505 #errors
7506 /rule/div/nest/@registrationmark;attribute not allowed;m
7507
7508 #data
7509 <rule xmlns="http://www.w3.org/1999/xhtml">
7510 <div>
7511 <rule registrationmark="">
7512 x
7513 </rule>
7514 </div>
7515 </rule>
7516 #errors
7517 /rule/div/rule;element not allowed:flow;m
7518
7519 #data
7520 <rule xmlns="http://www.w3.org/1999/xhtml">
7521 <div registartionmark="a">x</div>
7522 </rule>
7523 #errors
7524 /rule/div/@registartionmark;attribute not defined;m
7525
7526 #data
7527 <div align="" xmlns="http://www.w3.org/1999/xhtml">x</div>
7528 #errors
7529 /div/@align;attribute not defined;m
7530 /div/@align;enumerated:invalid
7531
7532 #data
7533 <div align="Left" xmlns="http://www.w3.org/1999/xhtml">x</div>
7534 #errors
7535 /div/@align;attribute not defined;m
7536
7537 #data
7538 <div align="center" xmlns="http://www.w3.org/1999/xhtml"/>
7539 #errors
7540 /div/@align;attribute not defined;m
7541 /div;no significant content;s
7542
7543 #data
7544 <div align="right" xmlns="http://www.w3.org/1999/xhtml">x</div>
7545 #errors
7546 /div/@align;attribute not defined;m
7547
7548 #data
7549 <div align="justify" xmlns="http://www.w3.org/1999/xhtml">x</div>
7550 #errors
7551 /div/@align;attribute not defined;m
7552
7553 #data
7554 <div align="xxx" xmlns="http://www.w3.org/1999/xhtml">x</div>
7555 #errors
7556 /div/@align;attribute not defined;m
7557 /div/@align;enumerated:invalid
7558
7559 #data
7560 <div align=" left" xmlns="http://www.w3.org/1999/xhtml">x</div>
7561 #errors
7562 /div/@align;attribute not defined;m
7563 /div/@align;enumerated:invalid
7564
7565 #data
7566 <a accesskey="" xmlns="http://www.w3.org/1999/xhtml">x</a>
7567 #errors
7568 /a/@accesskey;char:syntax error;m
7569 /a/@accesskey;attribute not defined;m
7570
7571 #data
7572 <a accesskey="a" xmlns="http://www.w3.org/1999/xhtml">x</a>
7573 #errors
7574 /a/@accesskey;attribute not defined;m
7575
7576 #data
7577 <a accesskey=" " xmlns="http://www.w3.org/1999/xhtml">x</a>
7578 #errors
7579 /a/@accesskey;attribute not defined;m
7580
7581 #data
7582 <a accesskey="xx" xmlns="http://www.w3.org/1999/xhtml">x</a>
7583 #errors
7584 /a/@accesskey;char:syntax error;m
7585 /a/@accesskey;attribute not defined;m
7586
7587 #data
7588 <area href="" shape="default" alt="" accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
7589 #errors
7590 /area/@accesskey;char:syntax error;m
7591 /area/@accesskey;attribute not defined;m
7592
7593 #data
7594 <area href="" shape="default" alt="" accesskey="a" xmlns="http://www.w3.org/1999/xhtml"/>
7595 #errors
7596 /area/@accesskey;attribute not defined;m
7597
7598 #data
7599 <area href="" shape="default" alt="" accesskey=" " xmlns="http://www.w3.org/1999/xhtml"/>
7600 #errors
7601 /area/@accesskey;attribute not defined;m
7602
7603 #data
7604 <area href="" shape="default" alt="" accesskey="xx" xmlns="http://www.w3.org/1999/xhtml"/>
7605 #errors
7606 /area/@accesskey;char:syntax error;m
7607 /area/@accesskey;attribute not defined;m
7608
7609 #data
7610 <input accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
7611 #errors
7612 /input/@accesskey;char:syntax error;m
7613 /input/@accesskey;attribute not defined;m
7614
7615 #data
7616 <input accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
7617 #errors
7618 /input/@accesskey;attribute not defined;m
7619
7620 #data
7621 <button accesskey="" xmlns="http://www.w3.org/1999/xhtml">x</button>
7622 #errors
7623 /button/@accesskey;char:syntax error;m
7624 /button/@accesskey;attribute not defined;m
7625
7626 #data
7627 <button accesskey="x" xmlns="http://www.w3.org/1999/xhtml">x</button>
7628 #errors
7629 /button/@accesskey;attribute not defined;m
7630
7631 #data
7632 <label accesskey="" xmlns="http://www.w3.org/1999/xhtml"><input/>x</label>
7633 #errors
7634 /label/@accesskey;char:syntax error;m
7635
7636 #data
7637 <label accesskey="x" xmlns="http://www.w3.org/1999/xhtml"><input/>x</label>
7638 #errors
7639
7640 #data
7641 <select accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
7642 #errors
7643 /select/@accesskey;char:syntax error;m
7644
7645 #data
7646 <select accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
7647 #errors
7648
7649 #data
7650 <textarea accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
7651 #errors
7652 /textarea/@accesskey;char:syntax error;m
7653 /textarea/@accesskey;attribute not defined;m
7654
7655 #data
7656 <textarea accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
7657 #errors
7658 /textarea/@accesskey;attribute not defined;m
7659
7660
7661 #data
7662 <legend accesskey="" xmlns="http://www.w3.org/1999/xhtml">x</legend>
7663 #errors
7664 /legend/@accesskey;char:syntax error;m
7665 /legend/@accesskey;attribute not defined;m
7666
7667 #data
7668 <legend accesskey="x" xmlns="http://www.w3.org/1999/xhtml">x</legend>
7669 #errors
7670 /legend/@accesskey;attribute not defined;m
7671
7672 #data
7673 <p repeat="" xmlns="http://www.w3.org/1999/xhtml">x</p>
7674 #errors
7675 /p/@repeat;repeat:syntax error;m
7676
7677 #data
7678 <p repeat="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7679 #errors
7680
7681 #data
7682 <p repeat="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7683 #errors
7684
7685 #data
7686 <p repeat="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
7687 #errors
7688
7689 #data
7690 <p repeat="00001" xmlns="http://www.w3.org/1999/xhtml">x</p>
7691 #errors
7692
7693 #data
7694 <p repeat="-1" xmlns="http://www.w3.org/1999/xhtml">x</p>
7695 #errors
7696
7697 #data
7698 <p repeat="-00001" xmlns="http://www.w3.org/1999/xhtml">x</p>
7699 #errors
7700
7701 #data
7702 <p repeat="-1255" xmlns="http://www.w3.org/1999/xhtml">x</p>
7703 #errors
7704
7705 #data
7706 <p repeat="template " xmlns="http://www.w3.org/1999/xhtml">x</p>
7707 #errors
7708 /p/@repeat;repeat:syntax error;m
7709
7710 #data
7711 <p repeat="templatE" xmlns="http://www.w3.org/1999/xhtml">x</p>
7712 #errors
7713 /p/@repeat;repeat:syntax error;m
7714
7715 #data
7716 <p repeat=" template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7717 #errors
7718 /p/@repeat;repeat:syntax error;m
7719
7720 #data
7721 <p repeat="0.000" xmlns="http://www.w3.org/1999/xhtml">x</p>
7722 #errors
7723 /p/@repeat;repeat:syntax error;m
7724
7725 #data
7726 <p repeat=".12" xmlns="http://www.w3.org/1999/xhtml">x</p>
7727 #errors
7728 /p/@repeat;repeat:syntax error;m
7729
7730 #data
7731 <p repeat="120 " xmlns="http://www.w3.org/1999/xhtml">x</p>
7732 #errors
7733 /p/@repeat;repeat:syntax error;m
7734
7735 #data
7736 <p repeat="+21434" xmlns="http://www.w3.org/1999/xhtml">x</p>
7737 #errors
7738 /p/@repeat;repeat:syntax error;m
7739
7740 #data
7741 <p repeat="template-text" xmlns="http://www.w3.org/1999/xhtml">x</p>
7742 #errors
7743 /p/@repeat;repeat:syntax error;m
7744
7745 #data
7746 <div xmlns="http://www.w3.org/1999/xhtml">
7747 <p repeat="1" repeat-template="t">x</p>
7748 <p id="t" repeat="template">x</p>
7749 </div>
7750 #errors
7751
7752 #data
7753 <div xmlns="http://www.w3.org/1999/xhtml">
7754 <p id="t" repeat="template">x</p>
7755 <p repeat="1" repeat-template="t">x</p>
7756 </div>
7757 #errors
7758
7759 #data
7760 <p repeate="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7761 #errors
7762 /p/@repeate;attribute not defined;m
7763
7764 #data
7765 <p repet="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7766 #errors
7767 /p/@repet;attribute not defined;m
7768
7769 #data
7770 <p repea="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7771 #errors
7772 /p/@repea;attribute not defined;m
7773
7774 #data
7775 <input type="add" xmlns="http://www.w3.org/1999/xhtml"/>
7776 #errors
7777
7778 #data
7779 <button type="add" xmlns="http://www.w3.org/1999/xhtml">x</button>
7780 #errors
7781
7782 #data
7783 <input type="remove" xmlns="http://www.w3.org/1999/xhtml"/>
7784 #errors
7785
7786 #data
7787 <input type="delete" xmlns="http://www.w3.org/1999/xhtml"/>
7788 #errors
7789 /input/@type;enumerated:invalid
7790
7791 #data
7792 <button type="remove" xmlns="http://www.w3.org/1999/xhtml">x</button>
7793 #errors
7794
7795 #data
7796 <button type="delete" xmlns="http://www.w3.org/1999/xhtml">x</button>
7797 #errors
7798 /button/@type;enumerated:invalid
7799
7800 #data
7801 <input type="move-up" xmlns="http://www.w3.org/1999/xhtml"/>
7802 #errors
7803
7804 #data
7805 <button type="move-up" xmlns="http://www.w3.org/1999/xhtml">x</button>
7806 #errors
7807
7808 #data
7809 <input type="move-down" xmlns="http://www.w3.org/1999/xhtml"/>
7810 #errors
7811
7812 #data
7813 <button type="move-down" xmlns="http://www.w3.org/1999/xhtml">x</button>
7814 #errors
7815
7816 #data
7817 <div xmlns="http://www.w3.org/1999/xhtml">
7818 <input type="add" template="t"/>
7819 <p repeat="template" id="t">x</p>
7820 </div>
7821 #errors
7822
7823 #data
7824 <div xmlns="http://www.w3.org/1999/xhtml">
7825 <button type="add" template="t">x</button>
7826 <p repeat="template" id="t">x</p>
7827 </div>
7828 #errors
7829
7830 #data
7831 <p repeat="template" repeat-min="" xmlns="http://www.w3.org/1999/xhtml">x</p>
7832 #errors
7833 /p/@repeat-min;nninteger:syntax error
7834
7835 #data
7836 <p repeat="template" repeat-min="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7837 #errors
7838
7839 #data
7840 <p repeat="template" repeat-min="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
7841 #errors
7842
7843 #data
7844 <p repeat="template" repeat-min="01" xmlns="http://www.w3.org/1999/xhtml">x</p>
7845 #errors
7846
7847 #data
7848 <p repeat="template" repeat-min="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7849 #errors
7850 /p/@repeat-min;nninteger:syntax error
7851
7852 #data
7853 <p repeat="template" repeat-min="-12" xmlns="http://www.w3.org/1999/xhtml">x</p>
7854 #errors
7855 /p/@repeat-min;nninteger:syntax error
7856
7857 #data
7858 <p repeat="template" repeat-min="+0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7859 #errors
7860 /p/@repeat-min;nninteger:syntax error
7861
7862 #data
7863 <p repeat="template" repeat-min="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
7864 #errors
7865 /p/@repeat-min;nninteger:syntax error
7866
7867 #data
7868 <p repeat="template" repeat-min="infinite" xmlns="http://www.w3.org/1999/xhtml">x</p>
7869 #errors
7870 /p/@repeat-min;nninteger:syntax error
7871
7872 #data
7873 <p repeat="template" repeat-max="" xmlns="http://www.w3.org/1999/xhtml">x</p>
7874 #errors
7875 /p/@repeat-max;nninteger:syntax error
7876
7877 #data
7878 <p repeat="template" repeat-max="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7879 #errors
7880
7881 #data
7882 <p repeat="template" repeat-max="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
7883 #errors
7884
7885 #data
7886 <p repeat="template" repeat-max="01" xmlns="http://www.w3.org/1999/xhtml">x</p>
7887 #errors
7888
7889 #data
7890 <p repeat="template" repeat-max="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7891 #errors
7892 /p/@repeat-max;nninteger:syntax error
7893
7894 #data
7895 <p repeat="template" repeat-max="-12" xmlns="http://www.w3.org/1999/xhtml">x</p>
7896 #errors
7897 /p/@repeat-max;nninteger:syntax error
7898
7899 #data
7900 <p repeat="template" repeat-max="+0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7901 #errors
7902 /p/@repeat-max;nninteger:syntax error
7903
7904 #data
7905 <p repeat="template" repeat-max="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
7906 #errors
7907 /p/@repeat-max;nninteger:syntax error
7908
7909 #data
7910 <p repeat="template" repeat-max="infinite" xmlns="http://www.w3.org/1999/xhtml">x</p>
7911 #errors
7912 /p/@repeat-max;nninteger:syntax error
7913
7914 #data
7915 <p repeat="template" repeat-start="" xmlns="http://www.w3.org/1999/xhtml">x</p>
7916 #errors
7917 /p/@repeat-start;nninteger:syntax error
7918
7919 #data
7920 <p repeat="template" repeat-start="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7921 #errors
7922
7923 #data
7924 <p repeat="template" repeat-start="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
7925 #errors
7926
7927 #data
7928 <p repeat="template" repeat-start="01" xmlns="http://www.w3.org/1999/xhtml">x</p>
7929 #errors
7930
7931 #data
7932 <p repeat="template" repeat-start="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
7933 #errors
7934 /p/@repeat-start;nninteger:syntax error
7935
7936 #data
7937 <p repeat="template" repeat-start="-12" xmlns="http://www.w3.org/1999/xhtml">x</p>
7938 #errors
7939 /p/@repeat-start;nninteger:syntax error
7940
7941 #data
7942 <p repeat="template" repeat-start="+0" xmlns="http://www.w3.org/1999/xhtml">x</p>
7943 #errors
7944 /p/@repeat-start;nninteger:syntax error
7945
7946 #data
7947 <p repeat="template" repeat-start="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
7948 #errors
7949 /p/@repeat-start;nninteger:syntax error
7950
7951 #data
7952 <p repeat="template" repeat-start="infinite" xmlns="http://www.w3.org/1999/xhtml">x</p>
7953 #errors
7954 /p/@repeat-start;nninteger:syntax error
7955
7956 #data
7957 <x html:repeat="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
7958 #errors
7959 /x;element;unsupported
7960 /x/@repeat;repeat:syntax error;m
7961
7962 #data
7963 <x html:repeat-start="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
7964 #errors
7965 /x;element;unsupported
7966 /x/@repeat-start;nninteger:syntax error;m
7967
7968 #data
7969 <x html:repeat-min="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
7970 #errors
7971 /x;element;unsupported
7972 /x/@repeat-min;nninteger:syntax error;m
7973
7974 #data
7975 <x html:repeat-max="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
7976 #errors
7977 /x;element;unsupported
7978 /x/@repeat-max;nninteger:syntax error;m
7979
7980 #data
7981 <x html:repeat-template="x" xmlns:html="http://www.w3.org/1999/xhtml"><p repeat="template" id="x" xmlns="http://www.w3.org/1999/xhtml">x</p></x>
7982 #errors
7983 /x;element;unsupported
7984
7985 #data
7986 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
7987 html:repeat="template">x</p>
7988 #errors
7989 /p/@repeat;attribute not allowed;m
7990
7991 #data
7992 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
7993 html:repeat-min="1" repeat="template">x</p>
7994 #errors
7995 /p/@repeat-min;attribute not allowed;m
7996
7997 #data
7998 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
7999 html:repeat-max="5" repeat="template">x</p>
8000 #errors
8001 /p/@repeat-max;attribute not allowed;m
8002
8003 #data
8004 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
8005 html:repeat-start="0" repeat="template">x</p>
8006 #errors
8007 /p/@repeat-start;attribute not allowed;m
8008
8009 #data
8010 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
8011 html:repeat-template="t"><q repeat="template" id="t">x</q></p>
8012 #errors
8013 /p/@repeat-template;attribute not allowed;m
8014

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24