/[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.46 - (show annotations) (download)
Thu Mar 20 08:54:00 2008 UTC (18 years, 5 months ago) by wakaba
Branch: MAIN
Changes since 1.45: +21 -21 lines
++ whatpm/t/ChangeLog	20 Mar 2008 08:53:32 -0000
	* ContentCheker.t: Replace dummy error type for subdoc
	checking invocations to ";SUBDOC".

	* content-model-1.dat, content-model-2.dat: Test
	results revised to support the aforementioned change.

	* content-model-atom-1.dat: Test results revised
	so that |type=html| in Text construct is now
	tested whether the subdoc code is invoked.

2008-03-20  Wakaba  <wakaba@suika.fam.cx>

	* content-model-atom-1.dat: Test data on cases of
	missing |atom:summary| in |atom:entry| are added.

2008-03-20  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ContentChecker/ChangeLog	20 Mar 2008 08:38:25 -0000
	* Atom.pm: Raise an error if required |atom:summary|
	element is missing from an |atom:entry| element.

2008-03-20  Wakaba  <wakaba@suika.fam.cx>

1 #data
2 <unknown u1=""></unknown>
3 #errors
4 /unknown;element;unsupported
5 /unknown/@u1;attribute;unsupported
6
7 #data
8 <unknown u1="" u2=""></unknown>
9 #errors
10 /unknown;element;unsupported
11 /unknown/@u1;attribute;unsupported
12 /unknown/@u2;attribute;unsupported
13
14 #data
15 <unknown u1="" xmlns=""></unknown>
16 #errors
17 /unknown;element;unsupported
18 /unknown/@u1;attribute;unsupported
19
20 #data
21 <unknown xml:lang="!" xmlns=""></unknown>
22 #errors
23 /unknown;element;unsupported
24 /unknown/@lang;LangTag:nosemantics:language;m
25 /unknown/@lang;LangTag:syntax:illegal;m
26
27 #data
28 <unknown u1="" xml:lang="!" xmlns=""></unknown>
29 #errors
30 /unknown;element;unsupported
31 /unknown/@lang;LangTag:nosemantics:language;m
32 /unknown/@lang;LangTag:syntax:illegal;m
33 /unknown/@u1;attribute;unsupported
34
35 #data
36 <unknown u1="" xmlns="http://www.w3.org/1999/xhtml"></unknown>
37 #errors
38 /unknown;element;unsupported
39 /unknown/@u1;attribute not defined;m
40
41 #data
42 <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
43 #errors
44 /unknown;element;unsupported
45 /unknown/@lang;syntax error
46 /unknown/@u1;attribute not defined;m
47
48 #data
49 <unknown class="" u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
50 #errors
51 /unknown;element;unsupported
52 /unknown/@lang;syntax error
53 /unknown/@u1;attribute not defined;m
54
55 #data
56 <p xmlns="http://www.w3.org/1999/xhtml" unknown="">x</p>
57 #errors
58 /p/@unknown;attribute not defined;m
59
60 #data
61 <a xmlns="http://www.w3.org/1999/xhtml" unknown="">x</a>
62 #errors
63 /a/@unknown;attribute not defined;m
64
65 #data
66 <area xmlns="http://www.w3.org/1999/xhtml" unknown="" alt="x" href="" shape="default"></area>
67 #errors
68 /area/@unknown;attribute not defined;m
69
70 #data
71 <meta xmlns="http://www.w3.org/1999/xhtml" name="keywords" content="a" unknown=""/>
72 #errors
73 /meta/@unknown;attribute not defined;m
74
75 #data
76 <p xmlns="http://www.w3.org/1999/xhtml"
77 a:b="" xmlns:a="http://www.example.test/">a</p>
78 #errors
79 /p/@b;attribute;unsupported
80
81 #data
82 <p xmlns="http://www.w3.org/1999/xhtml"
83 id="">a</p>
84 #errors
85 /p/@id;empty attribute value
86
87 #data
88 <p xmlns="http://www.w3.org/1999/xhtml"
89 id="a">a</p>
90 #errors
91
92 #data
93 <p xmlns="http://www.w3.org/1999/xhtml"
94 id=" ">a</p>
95 #errors
96 /p/@id;space in ID
97
98 #data
99 <p xmlns="http://www.w3.org/1999/xhtml"
100 id="&#x9;">a</p>
101 #errors
102 /p/@id;space in ID
103
104 #data
105 <p xmlns="http://www.w3.org/1999/xhtml"
106 id="&#xA;">a</p>
107 #errors
108 /p/@id;space in ID
109
110 #data
111 <?xml version="1.1"?>
112 <p xmlns="http://www.w3.org/1999/xhtml"
113 id="&#xB;">a</p>
114 #errors
115 /p/@id;space in ID
116
117 #data
118 <?xml version="1.1"?>
119 <p xmlns="http://www.w3.org/1999/xhtml"
120 id="&#xC;">a</p>
121 #errors
122 /p/@id;space in ID
123
124 #data
125 <p xmlns="http://www.w3.org/1999/xhtml"
126 id="&#xD;">a</p>
127 #errors
128 /p/@id;space in ID
129
130 #data
131 <p xmlns="http://www.w3.org/1999/xhtml"
132 id="a ">a</p>
133 #errors
134 /p/@id;space in ID
135
136 #data
137 <p xmlns="http://www.w3.org/1999/xhtml"
138 id="a b">a</p>
139 #errors
140 /p/@id;space in ID
141
142 #data
143 <p xmlns="http://www.w3.org/1999/xhtml"
144 id="aaaaaaa">a</p>
145 #errors
146
147 #data
148 <p xmlns="http://www.w3.org/1999/xhtml"
149 id="a"><span id="a">a</span></p>
150 #errors
151 /p/span/@id;duplicate ID
152
153 #data
154 <p xmlns="http://www.w3.org/1999/xhtml"
155 id="a b"><span id="a b">x</span></p>
156 #errors
157 /p/@id;space in ID
158 /p/span/@id;duplicate ID
159 /p/span/@id;space in ID
160
161 #data
162 <p xmlns="http://www.w3.org/1999/xhtml"
163 id=""><span id="">x</span></p>
164 #errors
165 /p/@id;empty attribute value
166 /p/span/@id;empty attribute value
167
168 #data
169 <p xmlns="http://www.w3.org/1999/xhtml">
170 <span id="a">x</span>
171 <span id="b">x</span>
172 <span id="c">x</span>
173 </p>
174 #errors
175
176 #data
177 <p xmlns="http://www.w3.org/1999/xhtml">
178 <span id="a ">x</span>
179 <span id=" a">x</span>
180 <span id=" a ">x</span>
181 </p>
182 #errors
183 /p/span/@id;space in ID
184 /p/span/@id;space in ID
185 /p/span/@id;space in ID
186
187 #data
188 <p xmlns="http://www.w3.org/1999/xhtml">
189 <span id="i">x</span>
190 <span id="I">x</span>
191 <span id="&#x0131;">x</span>
192 </p>
193 #errors
194
195 #data
196 <p title="" xmlns="http://www.w3.org/1999/xhtml">x</p>
197 #errors
198
199 #data
200 <p title="a" xmlns="http://www.w3.org/1999/xhtml">x</p>
201 #errors
202
203 #data
204 <p title="AAAAAA" xmlns="http://www.w3.org/1999/xhtml">x</p>
205 #errors
206
207 #data
208 <p title="XXXX&#x0A;YYYY" xmlns="http://www.w3.org/1999/xhtml">x</p>
209 #errors
210
211 #data
212 <p title="" xmlns="http://www.w3.org/1999/xhtml">x</p>
213 #errors
214
215 #data
216 <p title="AAA" xmlns="http://www.w3.org/1999/xhtml">
217 <span title="BBB">x</span>
218 </p>
219 #errors
220
221 #data
222 <p lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
223 #errors
224 /p/@lang;in XML:lang
225
226 #data
227 <p xml:lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
228 #errors
229
230 #data html
231 <!DOCTYPE HTML><title>x</title><p xml:lang="">x</p>
232 #errors
233 /html/body/p/@xml:lang;in HTML:xml:lang
234
235 #data
236 <p dir="" xmlns="http://www.w3.org/1999/xhtml">x</p>
237 #errors
238 /p/@dir;enumerated:invalid
239
240 #data
241 <p dir="ltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
242 #errors
243
244 #data
245 <p dir=" ltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
246 #errors
247 /p/@dir;enumerated:invalid
248
249 #data
250 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml">x</p>
251 #errors
252 /p/@dir;enumerated:invalid
253
254 #data
255 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
256 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml">x</p>
257 #errors
258
259 #data
260 <?xml version="1.1"?>
261 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
262 <p dir="ltr&#x0C;" xmlns="http://www.w3.org/1999/xhtml">x</p>
263 #errors
264 /p/@dir;enumerated:invalid
265
266 #data
267 <p dir="LTR" xmlns="http://www.w3.org/1999/xhtml">x</p>
268 #errors
269
270 #data
271 <p dir="LtR" xmlns="http://www.w3.org/1999/xhtml">x</p>
272 #errors
273
274 #data
275 <p dir="rtl" xmlns="http://www.w3.org/1999/xhtml">x</p>
276 #errors
277
278 #data
279 <p dir="Rtl" xmlns="http://www.w3.org/1999/xhtml">x</p>
280 #errors
281
282 #data
283 <p dir="rtltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
284 #errors
285 /p/@dir;enumerated:invalid
286
287 #data
288 <p dir="XXXXXX" xmlns="http://www.w3.org/1999/xhtml">x</p>
289 #errors
290 /p/@dir;enumerated:invalid
291
292 #data
293 <p class="" xmlns="http://www.w3.org/1999/xhtml">x</p>
294 #errors
295
296 #data
297 <p class=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
298 #errors
299
300 #data
301 <?xml version="1.1"?>
302 <p class="&#xD;&#xB;" xmlns="http://www.w3.org/1999/xhtml">x</p>
303 #errors
304
305 #data
306 <p class="a b c d ef g h" xmlns="http://www.w3.org/1999/xhtml">x</p>
307 #errors
308
309 #data
310 <?xml version="1.1"?>
311 <p class=" a b c d &#xC; efg h &#xC;" xmlns="http://www.w3.org/1999/xhtml">x</p>
312 #errors
313
314 #data
315 <p class="a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
316 #errors
317 /p/@class;duplicate token:a
318
319 #data
320 <?xml version="1.1"?>
321 <p class=" aa&#xC; aa" xmlns="http://www.w3.org/1999/xhtml">x</p>
322 #errors
323 /p/@class;duplicate token:aa
324
325 #data
326 <p class="a a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
327 #errors
328 /p/@class;duplicate token:a
329 /p/@class;duplicate token:a
330
331 #data
332 <p class="I i &#x0131;" xmlns="http://www.w3.org/1999/xhtml">x</p>
333 #errors
334
335 #data
336 <p contenteditable="" xmlns="http://www.w3.org/1999/xhtml">x</p>
337 #errors
338
339 #data
340 <p contenteditable="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
341 #errors
342
343 #data
344 <p contenteditable="TruE" xmlns="http://www.w3.org/1999/xhtml">x</p>
345 #errors
346
347 #data
348 <p contenteditable="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
349 #errors
350
351 #data
352 <p contenteditable="False" xmlns="http://www.w3.org/1999/xhtml">x</p>
353 #errors
354
355 #data
356 <p contenteditable="none" xmlns="http://www.w3.org/1999/xhtml">x</p>
357 #errors
358 /p/@contenteditable;enumerated:invalid
359
360 #data
361 <p contenteditable="true " xmlns="http://www.w3.org/1999/xhtml">x</p>
362 #errors
363 /p/@contenteditable;enumerated:invalid
364
365 #data
366 <p contenteditable="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
367 #errors
368 /p/@contenteditable;enumerated:invalid
369
370 #data
371 <p contenteditable="contenteditable" xmlns="http://www.w3.org/1999/xhtml">x</p>
372 #errors
373 /p/@contenteditable;enumerated:invalid
374
375 #data
376 <p contenteditable="inherit" xmlns="http://www.w3.org/1999/xhtml">x</p>
377 #errors
378 /p/@contenteditable;enumerated:invalid
379
380 #data
381 <p contenteditable="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
382 #errors
383 /p/@contenteditable;enumerated:invalid
384
385 #data
386 <p contentEditable="" xmlns="http://www.w3.org/1999/xhtml">x</p>
387 #errors
388 /p/@contentEditable;attribute not defined;m
389
390 #data
391 <p irrelevant="" xmlns="http://www.w3.org/1999/xhtml">x</p>
392 #errors
393
394 #data
395 <p irrelevant=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
396 #errors
397 /p/@irrelevant;boolean:invalid
398
399 #data
400 <p irrelevant="irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
401 #errors
402
403 #data
404 <p irrelevant=" irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
405 #errors
406 /p/@irrelevant;boolean:invalid
407
408 #data
409 <p irrelevant="irrelevant " xmlns="http://www.w3.org/1999/xhtml">x</p>
410 #errors
411 /p/@irrelevant;boolean:invalid
412
413 #data
414 <p irrelevant=" irrelevant " xmlns="http://www.w3.org/1999/xhtml">x</p>
415 #errors
416 /p/@irrelevant;boolean:invalid
417
418 #data
419 <p irrelevant="Irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
420 #errors
421 /p/@irrelevant;boolean:invalid
422
423 #data
424 <p irrelevant="IRRELEVANT" xmlns="http://www.w3.org/1999/xhtml">x</p>
425 #errors
426 /p/@irrelevant;boolean:invalid
427
428 #data
429 <p irrelevant="relevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
430 #errors
431 /p/@irrelevant;boolean:invalid
432
433 #data
434 <p irrelevant="irrelevants" xmlns="http://www.w3.org/1999/xhtml">x</p>
435 #errors
436 /p/@irrelevant;boolean:invalid
437
438 #data
439 <p irrelevant="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
440 #errors
441 /p/@irrelevant;boolean:invalid
442
443 #data
444 <p irrelevant="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
445 #errors
446 /p/@irrelevant;boolean:invalid
447
448 #data
449 <p irrelevant="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
450 #errors
451 /p/@irrelevant;boolean:invalid
452
453 #data
454 <p irrelevant="on" xmlns="http://www.w3.org/1999/xhtml">x</p>
455 #errors
456 /p/@irrelevant;boolean:invalid
457
458 #data
459 <p tabindex="-1" xmlns="http://www.w3.org/1999/xhtml">x</p>
460 #errors
461
462 #data
463 <p tabindex="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
464 #errors
465
466 #data
467 <p tabindex="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
468 #errors
469
470 #data
471 <p tabindex="10000" xmlns="http://www.w3.org/1999/xhtml">x</p>
472 #errors
473
474 #data
475 <p tabindex="1.0" xmlns="http://www.w3.org/1999/xhtml">x</p>
476 #errors
477 /p/@tabindex;integer:syntax error
478
479 #data
480 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml">x</p>
481 #errors
482 /p/@tabindex;integer:syntax error
483
484 #data
485 <p tabindex="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
486 #errors
487 /p/@tabindex;integer:syntax error
488
489 #data
490 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml">x</p>
491 #errors
492 /p/@tabindex;integer:syntax error
493
494 #data
495 <p onabort="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
496 #errors
497 /p/@onabort;event handler;unsupported
498
499 #data
500 <p onbeforeunload="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
501 #errors
502 /p/@onbeforeunload;event handler;unsupported
503
504 #data
505 <p onblur="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
506 #errors
507 /p/@onblur;event handler;unsupported
508
509 #data
510 <p onchange="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
511 #errors
512 /p/@onchange;event handler;unsupported
513
514 #data
515 <p onclick="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
516 #errors
517 /p/@onclick;event handler;unsupported
518
519 #data
520 <p onxxxx="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
521 #errors
522 /p/@onxxxx;attribute;unsupported
523
524 #data html
525 <!DOCTYPE html>
526 <html>
527 <head><title>x</title></head>
528 <body></body>
529 </html>
530 #errors
531 /html/body;no significant content;s
532
533 #data
534 <html xmlns="http://www.w3.org/1999/xhtml"
535 manifest="http://www.example.com/">
536 <head><title>a</title></head>
537 <body><p>a</p></body>
538 </html>
539 #errors
540
541 #data
542 <html xmlns="http://www.w3.org/1999/xhtml"
543 manifest="[http://www.example.com/]">
544 <head><title>a</title></head>
545 <body><p>a</p></body>
546 </html>
547 #errors
548 /html/@manifest;URI::syntax error:iriref3987;m
549
550 #data
551 <html xmlns="http://www.w3.org/1999/xhtml"
552 manifest=" ">
553 <head><title>a</title></head>
554 <body><p>a</p></body>
555 </html>
556 #errors
557 /html/@manifest;URI::syntax error:iriref3987;m
558
559 #data
560 <html xmlns="http://www.w3.org/1999/xhtml"
561 application="http://www.example.com/">
562 <head><title>a</title></head>
563 <body><p>a</p></body>
564 </html>
565 #errors
566 /html/@application;attribute;unsupported
567
568 #data html
569 <!DOCTYPE html>
570 <html xmlns="http://www.w3.org/1999/xhtml">
571 <head><title>x</title></head>
572 <body></body>
573 </html>
574 #errors
575 /html/body;no significant content;s
576
577 #data html
578 <!DOCTYPE html>
579 <html xmlns="">
580 <head><title>x</title></head>
581 <body></body>
582 </html>
583 #errors
584 /html/@xmlns;invalid attribute value
585 /html/body;no significant content;s
586
587 #data html
588 <!DOCTYPE html>
589 <html xmlns="http://www.w3.org/TR/xhtml1/strict">
590 <head><title>x</title></head>
591 <body></body>
592 </html>
593 #errors
594 /html/@xmlns;invalid attribute value
595 /html/body;no significant content;s
596
597 #data html
598 <!DOCTYPE html>
599 <html xmlns="http://www.w3.org/TR/REC-html40">
600 <head><title>x</title></head>
601 <body></body>
602 </html>
603 #errors
604 /html/@xmlns;invalid attribute value
605 /html/body;no significant content;s
606
607 #data html
608 <!DOCTYPE html>
609 <html xmlns=" http://www.w3.org/1999/xhtml ">
610 <head><title>x</title></head>
611 <body></body>
612 </html>
613 #errors
614 /html/@xmlns;invalid attribute value
615 /html/body;no significant content;s
616
617 #data html
618 <!DOCTYPE html>
619 <html xmlns="http://www.w3.org/1999/XHTML">
620 <head><title>x</title></head>
621 <body></body>
622 </html>
623 #errors
624 /html/@xmlns;invalid attribute value
625 /html/body;no significant content;s
626
627 #data html
628 <!DOCTYPE html>
629 <html xmlns="http://www.w3.org/1999/html">
630 <head><title>x</title></head>
631 <body></body>
632 </html>
633 #errors
634 /html/@xmlns;invalid attribute value
635 /html/body;no significant content;s
636
637 #data
638 <html xmlns="http://www.w3.org/1999/xhtml">
639 <head><title>x</title></head>
640 <body></body>
641 </html>
642 #errors
643 /html/body;no significant content;s
644
645 #data
646 <html xmlns="http://www.w3.org/1999/xhtml ">
647 <head><title>x</title></head>
648 <body></body>
649 </html>
650 #errors
651 /html;element;unsupported
652 /html/head;element;unsupported
653 /html/head/title;element;unsupported
654 /html/body;element;unsupported
655
656 #data html
657 <!DOCTYPE html>
658 <html>
659 <head xmlns="http://www.w3.org/1999/xhtml"><title>x</title></head>
660 <body></body>
661 </html>
662 #errors
663 /html/head/@xmlns;attribute;unsupported
664 /html/body;no significant content;s
665
666 #data
667 <head profile="http://www.test/" xmlns="http://www.w3.org/1999/xhtml">
668 <title/>
669 </head>
670 #errors
671 /head/@profile;attribute;unsupported
672
673 #data
674 <base xmlns="http://www.w3.org/1999/xhtml"/>
675 #errors
676 /base;attribute missing:href|target
677
678 #data
679 <base title="" xmlns="http://www.w3.org/1999/xhtml"/>
680 #errors
681 /base;attribute missing:href|target
682
683 #data
684 <base href="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
685 #errors
686 /base/@href;URI::syntax error:iriref3987;m
687
688 #data
689 <base href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
690 #errors
691
692 #data
693 <base href="test" xmlns="http://www.w3.org/1999/xhtml"/>
694 #errors
695
696 #data
697 <base href="http://test/#a" xmlns="http://www.w3.org/1999/xhtml"/>
698 #errors
699
700 #data
701 <base href="http://test/" target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
702 #errors
703
704 #data
705 <base target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
706 #errors
707
708 #data
709 <base target="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
710 #errors
711 /base/@target;reserved browsing context name
712
713 #data
714 <base target="blank" xmlns="http://www.w3.org/1999/xhtml"/>
715 #errors
716
717 #data
718 <head xmlns="http://www.w3.org/1999/xhtml">
719 <link rel="stylesheet" href=""/>
720 <base href=""/>
721 <title/>
722 </head>
723 #errors
724 /head/base;basehref after URI attribute
725
726 #data
727 <head xmlns="http://www.w3.org/1999/xhtml">
728 <base href=""/>
729 <link rel="stylesheet" href=""/>
730 <title/>
731 </head>
732 #errors
733
734 #data
735 <head xmlns="http://www.w3.org/1999/xhtml">
736 <link rel="stylesheet" href=""/>
737 <base target="_self"/>
738 <title/>
739 </head>
740 #errors
741
742 #data
743 <head xmlns="http://www.w3.org/1999/xhtml">
744 <base target="_self"/>
745 <link rel="stylesheet" href=""/>
746 <title/>
747 </head>
748 #errors
749
750 #data
751 <head xmlns="http://www.w3.org/1999/xhtml">
752 <link rel="stylesheet" href=""/>
753 <base target="_self" href=""/>
754 <title/>
755 </head>
756 #errors
757 /head/base;basehref after URI attribute
758
759 #data
760 <head xmlns="http://www.w3.org/1999/xhtml">
761 <base target="_self" href=""/>
762 <link rel="stylesheet" href=""/>
763 <title/>
764 </head>
765 #errors
766
767 #data
768 <head xmlns="http://www.w3.org/1999/xhtml">
769 <link rel="up" href=""/>
770 <base href=""/>
771 <title/>
772 </head>
773 #errors
774 /head/base;basehref after URI attribute
775
776 #data
777 <head xmlns="http://www.w3.org/1999/xhtml">
778 <base href=""/>
779 <link rel="up" href=""/>
780 <title/>
781 </head>
782 #errors
783
784 #data
785 <head xmlns="http://www.w3.org/1999/xhtml">
786 <link rel="up" href=""/>
787 <base target="_self"/>
788 <title/>
789 </head>
790 #errors
791 /head/base;basetarget after hyperlink
792
793 #data
794 <head xmlns="http://www.w3.org/1999/xhtml">
795 <base target="_self"/>
796 <link rel="up" href=""/>
797 <title/>
798 </head>
799 #errors
800
801 #data
802 <head xmlns="http://www.w3.org/1999/xhtml">
803 <link rel="up" href=""/>
804 <base target="_self" href=""/>
805 <title/>
806 </head>
807 #errors
808 /head/base;basehref after URI attribute
809 /head/base;basetarget after hyperlink
810
811 #data
812 <head xmlns="http://www.w3.org/1999/xhtml">
813 <base target="_self" href=""/>
814 <link rel="up" href=""/>
815 <title/>
816 </head>
817 #errors
818
819 #data
820 <head xmlns="http://www.w3.org/1999/xhtml">
821 <link rel="alternate stylesheet" href=""/>
822 <base target="_self"/>
823 <title/>
824 </head>
825 #errors
826
827 #data
828 <head xmlns="http://www.w3.org/1999/xhtml">
829 <link rel="stylesheet alternate" href=""/>
830 <base target="_self"/>
831 <title/>
832 </head>
833 #errors
834
835 #data
836 <head xmlns="http://www.w3.org/1999/xhtml">
837 <link rel="alternate stylesheet stylesheet" href=""/>
838 <base target="_self"/>
839 <title/>
840 </head>
841 #errors
842 /head/link/@rel;duplicate token:stylesheet
843
844 #data
845 <head xmlns="http://www.w3.org/1999/xhtml">
846 <link rel="alternate" type="application/atom+xml" href=""/>
847 <base target="_self"/>
848 <title/>
849 </head>
850 #errors
851 /head/base;basetarget after hyperlink
852
853 #data
854 <head xmlns="http://www.w3.org/1999/xhtml">
855 <link rel="alternate up stylesheet" href=""/>
856 <base target="_self"/>
857 <title/>
858 </head>
859 #errors
860 /head/base;basetarget after hyperlink
861
862 #data
863 <head xmlns="http://www.w3.org/1999/xhtml">
864 <link rel="up stylesheet" href=""/>
865 <base target="_self"/>
866 <title/>
867 </head>
868 #errors
869 /head/base;basetarget after hyperlink
870
871 #data
872 <head xmlns="http://www.w3.org/1999/xhtml">
873 <a href=""/>
874 <base target="_self"/>
875 <title/>
876 </head>
877 #errors
878 /head/a;element not allowed:metadata;m
879 /head/base;basetarget after hyperlink
880 /head/a;no significant content;s
881
882 #data
883 <head xmlns="http://www.w3.org/1999/xhtml">
884 <area shape="default" href="" alt=""/>
885 <base target="_self"/>
886 <title/>
887 </head>
888 #errors
889 /head/area;element not allowed:metadata;m
890 /head/base;basetarget after hyperlink
891
892 #data
893 <head xmlns="http://www.w3.org/1999/xhtml">
894 <area shape="default" href="" alt=""/>
895 <base href=""/>
896 <title/>
897 </head>
898 #errors
899 /head/area;element not allowed:metadata;m
900 /head/base;basehref after URI attribute
901
902 #data
903 <head xmlns="http://www.w3.org/1999/xhtml">
904 <video src=""/>
905 <base href=""/>
906 <title/>
907 </head>
908 #errors
909 /head/video;element not allowed:metadata;m
910 /head/base;basehref after URI attribute
911
912 #data
913 <html xmlns="http://www.w3.org/1999/xhtml">
914 <head>
915 <base href=""/>
916 <title/>
917 </head>
918 <body>
919 <p><a href="">x</a></p>
920 </body>
921 </html>
922 #errors
923
924 #data
925 <link xmlns="http://www.w3.org/1999/xhtml"/>
926 #errors
927 /link;attribute missing:href
928 /link;attribute missing:rel
929
930 #data
931 <link href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
932 #errors
933 /link;attribute missing:rel
934
935 #data
936 <link rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
937 #errors
938 /link;attribute missing:href
939
940 #data
941 <link rel="stylesheet" href="http://www.test/"
942 xmlns="http://www.w3.org/1999/xhtml"/>
943 #errors
944
945 #data
946 <link rel="stylesheet" href="://www.test/"
947 xmlns="http://www.w3.org/1999/xhtml"/>
948 #errors
949 /link/@href;URI::syntax error:iriref3987;m
950
951 #data
952 <link rel="stylesheet" href="http://www.test/" type=""
953 xmlns="http://www.w3.org/1999/xhtml"/>
954 #errors
955 /link/@type;IMT:syntax error
956
957 #data
958 <link rel="stylesheet" href="http://www.test/" type="text"
959 xmlns="http://www.w3.org/1999/xhtml"/>
960 #errors
961 /link/@type;IMT:syntax error
962
963 #data
964 <link rel="stylesheet" href="http://www.test/" type="text/css"
965 xmlns="http://www.w3.org/1999/xhtml"/>
966 #errors
967
968 #data
969 <link rel="stylesheet" href="http://www.test/" type="TexT/CsS"
970 xmlns="http://www.w3.org/1999/xhtml"/>
971 #errors
972
973 #data
974 <link rel="stylesheet" href="http://www.test/" type="TEXT/CSS"
975 xmlns="http://www.w3.org/1999/xhtml"/>
976 #errors
977
978 #data
979 <link rel="stylesheet" href="http://www.test/" type="text/css; charset=utf-8"
980 xmlns="http://www.w3.org/1999/xhtml"/>
981 #errors
982
983 #data
984 <link rel="author" href="http://test/"
985 xmlns="http://www.w3.org/1999/xhtml"/>
986 #errors
987
988 #data
989 <link rel="author author" href="http://test/"
990 xmlns="http://www.w3.org/1999/xhtml"/>
991 #errors
992 /link/@rel;duplicate token:author
993
994 #data
995 <link rel="bookmark" href="http://test/"
996 xmlns="http://www.w3.org/1999/xhtml"/>
997 #errors
998 /link/@rel;link type:bad context:bookmark
999
1000 #data
1001 <link rel="previous" href="http://test/"
1002 xmlns="http://www.w3.org/1999/xhtml"/>
1003 #errors
1004 /link/@rel;link type:non-conforming:previous
1005
1006 #data
1007 <link rel="edit" href="http://test/"
1008 xmlns="http://www.w3.org/1999/xhtml"/>
1009 #errors
1010 /link/@rel;link type:proposed:edit;s
1011
1012 #data
1013 <link rel="script" href="http://test/"
1014 xmlns="http://www.w3.org/1999/xhtml"/>
1015 #errors
1016 /link/@rel;link type:non-conforming:script
1017
1018 #data
1019 <link rel="example-link-type" href="http://test/"
1020 xmlns="http://www.w3.org/1999/xhtml"/>
1021 #errors
1022 /link/@rel;link type:example-link-type;unsupported
1023
1024 #data
1025 <link rel="alternate stylesheet" href="http://test/" title=""
1026 xmlns="http://www.w3.org/1999/xhtml"/>
1027 #errors
1028
1029 #data
1030 <link rel="author" href="http://test/" hreflang=""
1031 xmlns="http://www.w3.org/1999/xhtml"/>
1032 #errors
1033 /link/@hreflang;LangTag:nosemantics:language;m
1034
1035 #data
1036 <link rel="author" href="http://test/" hreflang="en"
1037 xmlns="http://www.w3.org/1999/xhtml"/>
1038 #errors
1039
1040 #data
1041 <link media="all"
1042 xmlns="http://www.w3.org/1999/xhtml"/>
1043 #errors
1044 /link;attribute missing:href
1045 /link;attribute missing:rel
1046 /link/@media;media query;unsupported
1047
1048 #data
1049 <link rel="author" href="http://test/" media="all"
1050 xmlns="http://www.w3.org/1999/xhtml"/>
1051 #errors
1052 /link/@media;media query;unsupported
1053
1054 #data
1055 <link href="http://test/" rel="author" target="_self"
1056 xmlns="http://www.w3.org/1999/xhtml"/>
1057 #errors
1058 /link/@target;attribute;unsupported
1059
1060 #data
1061 <head xmlns="http://www.w3.org/1999/xhtml">
1062 <link rel="pingback" href="a"/>
1063 <link rel="pingback" href="b"/>
1064 <title>x</title>
1065 </head>
1066 #errors
1067 /head/link/@rel;link type:duplicate:pingback
1068
1069 #data
1070 <head xmlns="http://www.w3.org/1999/xhtml">
1071 <link rel="pingback" href="a"/>
1072 <link rel="pingback feed" href="b"/>
1073 <title>x</title>
1074 </head>
1075 #errors
1076 /head/link/@rel;link type:duplicate:pingback
1077
1078 #data
1079 <meta xmlns="http://www.w3.org/1999/xhtml">
1080 <!-- TODO: <meta> tests are not complete -->
1081 </meta>
1082 #errors
1083 /meta;attribute missing:name|http-equiv|charset
1084
1085 #data
1086 <meta name="dns" xmlns="http://www.w3.org/1999/xhtml"/>
1087 #errors
1088 /meta;attribute missing:content
1089
1090 #data
1091 <meta name="dns" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1092 #errors
1093
1094 #data
1095 <meta charset="us-ascii" name="dns" content="example.net"
1096 xmlns="http://www.w3.org/1999/xhtml"/>
1097 #errors
1098 /meta;element not allowed:meta charset;m
1099 /meta/@charset;attribute not allowed
1100 /meta;in XML:charset;m
1101 /meta/@charset;mismatched charset name::us-ascii;unsupported
1102
1103 #data
1104 <meta http-equiv="refresh" xmlns="http://www.w3.org/1999/xhtml"/>
1105 #errors
1106 /meta;attribute missing:content
1107
1108 #data
1109 <meta http-equiv="refresh" content="10; a.html"
1110 xmlns="http://www.w3.org/1999/xhtml"/>
1111 #errors
1112
1113 #data
1114 <meta http-equiv="refresh" content="10; a.html" name="dns"
1115 xmlns="http://www.w3.org/1999/xhtml"/>
1116 #errors
1117 /meta/@http-equiv;attribute not allowed
1118
1119 #data
1120 <meta http-equiv="refresh" content="10; a.html" charset="us-ascii"
1121 xmlns="http://www.w3.org/1999/xhtml"/>
1122 #errors
1123 /meta/@charset;attribute not allowed
1124 /meta;in XML:charset;m
1125 /meta/@charset;mismatched charset name::us-ascii;unsupported
1126 /meta;element not allowed:meta charset;m
1127
1128 #data
1129 <meta http-equiv="" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1130 #errors
1131 /meta/@http-equiv;enumerated:invalid
1132
1133 #data
1134 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1135 #errors
1136 /meta/@content;attribute not allowed
1137 /meta;attribute missing:name|http-equiv
1138
1139 #data
1140 <meta charset="us-ascii" content="example.net"
1141 xmlns="http://www.w3.org/1999/xhtml"/>
1142 #errors
1143 /meta;element not allowed:meta charset;m
1144 /meta/@content;attribute not allowed
1145 /meta;in XML:charset;m
1146 /meta/@charset;mismatched charset name::us-ascii;unsupported
1147
1148 #data
1149 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1150 #errors
1151 /meta/@content;attribute not allowed
1152 /meta;attribute missing:name|http-equiv
1153
1154 #data html
1155 <!DOCTYPE HTML><html><head><meta charset="us-ascii"><title>x</title></head><body><p>x
1156 #errors
1157 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1158
1159 #data
1160 <meta charset="" xmlns="http://www.w3.org/1999/xhtml"/>
1161 #errors
1162 /meta;element not allowed:meta charset;m
1163 /meta;in XML:charset;m
1164 /meta/@charset;mismatched charset name::;unsupported
1165 /meta/@charset;charset:syntax error:;m
1166 /meta/@charset;charset:not registered:;w
1167
1168 #data
1169 <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1170 #errors
1171 /meta;element not allowed:meta charset;m
1172 /meta;in XML:charset;m
1173 /meta/@charset;mismatched charset name::us-ascii;unsupported
1174
1175 #data
1176 <meta charset="US-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1177 #errors
1178 /meta;element not allowed:meta charset;m
1179 /meta;in XML:charset;m
1180 /meta/@charset;mismatched charset name::us-ascii;unsupported
1181
1182 #data
1183 <meta charset="csiso2022jp" xmlns="http://www.w3.org/1999/xhtml"/>
1184 #errors
1185 /meta;element not allowed:meta charset;m
1186 /meta;in XML:charset;m
1187 /meta/@charset;mismatched charset name::csiso2022jp;unsupported
1188 /meta/@charset;charset:not preferred:csiso2022jp;m
1189
1190 #data
1191 <meta charset="iso2022jp" xmlns="http://www.w3.org/1999/xhtml"/>
1192 #errors
1193 /meta;element not allowed:meta charset;m
1194 /meta;in XML:charset;m
1195 /meta/@charset;mismatched charset name::iso2022jp;unsupported
1196 /meta/@charset;charset:not preferred:iso2022jp;m
1197 /meta/@charset;charset:not registered:iso2022jp;w
1198
1199 #data
1200 <meta charset="x-utf-8" xmlns="http://www.w3.org/1999/xhtml"/>
1201 #errors
1202 /meta;element not allowed:meta charset;m
1203 /meta;in XML:charset;m
1204 /meta/@charset;mismatched charset name::x-utf-8;unsupported
1205 /meta/@charset;charset:not preferred:x-utf-8;m
1206 /meta/@charset;charset:private:x-utf-8;w
1207
1208 #data
1209 <meta charset="utf-8n" xmlns="http://www.w3.org/1999/xhtml"/>
1210 #errors
1211 /meta;element not allowed:meta charset;m
1212 /meta;in XML:charset;m
1213 /meta/@charset;mismatched charset name::utf-8n;unsupported
1214 /meta/@charset;charset:not preferred:utf-8n;m
1215 /meta/@charset;charset:not registered:utf-8n;w
1216
1217 #data
1218 <meta charset="x-sjis" xmlns="http://www.w3.org/1999/xhtml"/>
1219 #errors
1220 /meta;element not allowed:meta charset;m
1221 /meta;in XML:charset;m
1222 /meta/@charset;mismatched charset name::x-sjis;unsupported
1223 /meta/@charset;charset:not preferred:x-sjis;m
1224 /meta/@charset;charset:private:x-sjis;w
1225
1226 #data html
1227 <!DOCTYPE HTML>
1228 <meta charset="us-ascii">
1229 <title>x</title>
1230 <body><p>b</p></body>
1231 #errors
1232 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1233
1234 #data html
1235 <!DOCTYPE HTML>
1236 <meta charset="us-&#x41;scii">
1237 <title>x</title>
1238 <body><p>x</p></body>
1239 #errors
1240 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1241 /html/head/meta/@charset;character reference in charset;m
1242
1243 #data html
1244 <!DOCTYPE HTML>
1245 <meta charset="us-&#x61;scii">
1246 <title>x</title>
1247 <body><p>x</p></body>
1248 #errors
1249 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1250 /html/head/meta/@charset;character reference in charset;m
1251
1252 #data html
1253 <!DOCTYPE HTML>
1254 <meta charset="us-&scii">
1255 <title>x</title>
1256 <body><p>x</p></body>
1257 #errors
1258 /html/head/meta/@charset;mismatched charset name::us-&scii;unsupported
1259 /html/head/meta/@charset;charset:not registered:us-&scii;w
1260
1261 #data html
1262 <!DOCTYPE HTML>
1263 <meta charset="us-&amp;scii">
1264 <title>x</title>
1265 <body><p>x</p></body>
1266 #errors
1267 /html/head/meta/@charset;mismatched charset name::us-&scii;unsupported
1268 /html/head/meta/@charset;charset:not registered:us-&scii;w
1269 /html/head/meta/@charset;character reference in charset;m
1270
1271 #data
1272 <meta xmlns="http://www.w3.org/1999/xhtml"
1273 http-equiv="content-type"
1274 />
1275 #errors
1276 /meta;element not allowed:meta charset;m
1277 /meta;attribute missing:content;m
1278 /meta;in XML:charset;m
1279
1280 #data
1281 <meta xmlns="http://www.w3.org/1999/xhtml"
1282 http-equiv="content-type"
1283 content=""/>
1284 #errors
1285 /meta;element not allowed:meta charset;m
1286 /meta;in XML:charset;m
1287 /meta/@content;meta content-type syntax error;m
1288
1289 #data
1290 <meta xmlns="http://www.w3.org/1999/xhtml"
1291 http-equiv="content-type"
1292 content="text/html"/>
1293 #errors
1294 /meta;element not allowed:meta charset;m
1295 /meta;in XML:charset;m
1296 /meta/@content;meta content-type syntax error;m
1297
1298 #data
1299 <meta xmlns="http://www.w3.org/1999/xhtml"
1300 http-equiv="content-type"
1301 content="html"/>
1302 #errors
1303 /meta;element not allowed:meta charset;m
1304 /meta;in XML:charset;m
1305 /meta/@content;meta content-type syntax error;m
1306
1307 #data
1308 <meta xmlns="http://www.w3.org/1999/xhtml"
1309 http-equiv="content-type"
1310 content="text/html;charset"/>
1311 #errors
1312 /meta;element not allowed:meta charset;m
1313 /meta;in XML:charset;m
1314 /meta/@content;meta content-type syntax error;m
1315
1316 #data
1317 <meta xmlns="http://www.w3.org/1999/xhtml"
1318 http-equiv="content-type"
1319 content="text/HTML; charset=us-ascii"/>
1320 #errors
1321 /meta;element not allowed:meta charset;m
1322 /meta;in XML:charset;m
1323 /meta/@content;mismatched charset name::us-ascii;unsupported
1324
1325 #data
1326 <meta xmlns="http://www.w3.org/1999/xhtml"
1327 http-equiv="content-type"
1328 content="text/html; charset=us-ascii"/>
1329 #errors
1330 /meta;element not allowed:meta charset;m
1331 /meta;in XML:charset;m
1332 /meta/@content;mismatched charset name::us-ascii;unsupported
1333
1334 #data
1335 <meta xmlns="http://www.w3.org/1999/xhtml"
1336 http-equiv="content-type"
1337 content="text/html ; charset=us-ascii"/>
1338 #errors
1339 /meta;element not allowed:meta charset;m
1340 /meta;in XML:charset;m
1341 /meta/@content;meta content-type syntax error;m
1342
1343 #data
1344 <meta xmlns="http://www.w3.org/1999/xhtml"
1345 http-equiv="content-type"
1346 content="text/html;&#x09;charset=us-ascii"/>
1347 #errors
1348 /meta;element not allowed:meta charset;m
1349 /meta;in XML:charset;m
1350 /meta/@content;mismatched charset name::us-ascii;unsupported
1351
1352 #data
1353 <meta xmlns="http://www.w3.org/1999/xhtml"
1354 http-equiv="content-type"
1355 content=" text/html; charset=us-ascii"/>
1356 #errors
1357 /meta;element not allowed:meta charset;m
1358 /meta;in XML:charset;m
1359 /meta/@content;meta content-type syntax error;m
1360
1361 #data
1362 <meta xmlns="http://www.w3.org/1999/xhtml"
1363 http-equiv="content-type"
1364 content="text/html; charset=&quot;us-ascii&quot;"/>
1365 #errors
1366 /meta;element not allowed:meta charset;m
1367 /meta;in XML:charset;m
1368 /meta/@content;charset:not registered:"us-ascii";w
1369 /meta/@content;mismatched charset name::"us-ascii";unsupported
1370
1371 #data
1372 <meta xmlns="http://www.w3.org/1999/xhtml"
1373 http-equiv="content-type"
1374 content="text/html; charset=x-sjis"/>
1375 #errors
1376 /meta;element not allowed:meta charset;m
1377 /meta;in XML:charset;m
1378 /meta/@content;mismatched charset name::x-sjis;unsupported
1379 /meta/@content;charset:not preferred:x-sjis;m
1380 /meta/@content;charset:private:x-sjis;w
1381
1382 #data html
1383 <!DOCTYPE HTML>
1384 <meta http-equiv=Content-Type content=text/html;charset=us-&#x61;scii>
1385 <title>x</title>
1386 <body>y</body>
1387 #errors
1388 /html/head/meta/@content;mismatched charset name::us-ascii;unsupported
1389 /html/head/meta/@content;character reference in charset;m
1390
1391 #data html
1392 <!DOCTYPE HTML>
1393 <meta http-equiv=Content-Type content=text/html; charset=us-ascii>
1394 <title>x</title>
1395 <body>y</body>
1396 #errors
1397 /html/head/meta/@charset;attribute not allowed
1398 /html/head/meta/@content;meta content-type syntax error;m
1399 /html/head/meta/@charset;mismatched charset name::us-ascii;unsupported
1400
1401 #data
1402 <style type="" xmlns="http://www.w3.org/1999/xhtml"/>
1403 #errors
1404 /style/@type;IMT:syntax error
1405 /style;style:;unsupported
1406
1407 #data
1408 <style type="text" xmlns="http://www.w3.org/1999/xhtml"/>
1409 #errors
1410 /style/@type;IMT:syntax error
1411 /style;style:text;unsupported
1412
1413 #data
1414 <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
1415 #errors
1416 /style;SUBDOC
1417
1418 #data
1419 <style type="Text/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
1420 #errors
1421 /style;SUBDOC
1422
1423 #data
1424 <style type="TEXT/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
1425 #errors
1426 /style;SUBDOC
1427
1428 #data
1429 <style type="text/css; charset=us-ascii" xmlns="http://www.w3.org/1999/xhtml">
1430 <!-- NOTE: |charset| parameter here is meaningless (or harmful?),
1431 but syntactically correct. -->
1432 </style>
1433 #errors
1434 /style;style:text/css; charset=us-ascii;unsupported
1435
1436 #data
1437 <style media="all" xmlns="http://www.w3.org/1999/xhtml"/>
1438 #errors
1439 /style;SUBDOC
1440 /style/@media;media query;unsupported
1441
1442 #data
1443 <style media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
1444 #errors
1445 /style;SUBDOC
1446 /style/@media;media query;unsupported
1447
1448 #data
1449 <head xmlns="http://www.w3.org/1999/xhtml">
1450 <title>x</title>
1451 <style scoped=""/>
1452 </head>
1453 #errors
1454 /head/style;SUBDOC
1455 /head/style;element not allowed:head style;m
1456
1457 #data
1458 <article xmlns="http://www.w3.org/1999/xhtml">
1459 <style/>
1460 </article>
1461 #errors
1462 /article/style;element not allowed:prose style;m
1463 /article/style;SUBDOC
1464 /article;no significant content;s
1465
1466 #data
1467 <article xmlns="http://www.w3.org/1999/xhtml">
1468 <style scoped=""/>
1469 </article>
1470 #errors
1471 /article/style;SUBDOC
1472 /article;no significant content;s
1473
1474 #data
1475 <aside xmlns="http://www.w3.org/1999/xhtml">
1476 <style/>
1477 </aside>
1478 #errors
1479 /aside/style;element not allowed:prose style;m
1480 /aside/style;SUBDOC
1481 /aside;no significant content;s
1482
1483 #data
1484 <aside xmlns="http://www.w3.org/1999/xhtml">
1485 <style scoped=""/>
1486 </aside>
1487 #errors
1488 /aside/style;SUBDOC
1489 /aside;no significant content;s
1490
1491 #data
1492 <div xmlns="http://www.w3.org/1999/xhtml">
1493 <style/>
1494 </div>
1495 #errors
1496 /div/style;element not allowed:prose style;m
1497 /div/style;SUBDOC
1498 /div;no significant content;s
1499
1500 #data
1501 <div xmlns="http://www.w3.org/1999/xhtml">
1502 <style scoped=""/>
1503 </div>
1504 #errors
1505 /div/style;SUBDOC
1506 /div;no significant content;s
1507
1508 #data
1509 <section xmlns="http://www.w3.org/1999/xhtml">
1510 <style/>
1511 </section>
1512 #errors
1513 /section/style;element not allowed:prose style;m
1514 /section/style;SUBDOC
1515 /section;no significant content;s
1516
1517 #data
1518 <section xmlns="http://www.w3.org/1999/xhtml">
1519 <style scoped=""/>
1520 </section>
1521 #errors
1522 /section/style;SUBDOC
1523 /section;no significant content;s
1524
1525 #data
1526 <section xmlns="http://www.w3.org/1999/xhtml">
1527 <style scope=""/>
1528 </section>
1529 #errors
1530 /section/style/@scope;attribute;unsupported
1531 /section/style;element not allowed:prose style;m
1532 /section/style;SUBDOC
1533 /section;no significant content;s
1534
1535 #data
1536 <body text="red" xmlns="http://www.w3.org/1999/xhtml"/>
1537 #errors
1538 /body/@text;attribute;unsupported
1539 /body;no significant content;s
1540
1541 #data
1542 <blockquote cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1543 #errors
1544 /blockquote;no significant content;s
1545
1546 #data
1547 <blockquote cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml"/>
1548 #errors
1549 /blockquote/@cite;URI::syntax error:iriref3987;m
1550 /blockquote;no significant content;s
1551
1552 #data
1553 <h1 align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1554 #errors
1555 /h1/@align;attribute;unsupported
1556 /h1;no significant content;s
1557
1558 #data
1559 <address align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1560 #errors
1561 /address/@align;attribute;unsupported
1562 /address;no significant content;s
1563
1564 #data
1565 <p align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1566 #errors
1567 /p/@align;attribute;unsupported
1568 /p;no significant content;s
1569
1570 #data
1571 <hr align="left" xmlns="http://www.w3.org/1999/xhtml"/>
1572 #errors
1573 /hr/@align;attribute;unsupported
1574
1575 #data
1576 <br clear="left" xmlns="http://www.w3.org/1999/xhtml"/>
1577 #errors
1578 /br/@clear;attribute;unsupported
1579
1580 #data
1581 <dialog compact="" xmlns="http://www.w3.org/1999/xhtml"/>
1582 #errors
1583 /dialog/@compact;attribute;unsupported
1584
1585 #data
1586 <pre width="4" xmlns="http://www.w3.org/1999/xhtml"/>
1587 #errors
1588 /pre/@width;attribute;unsupported
1589 /pre;no significant content;s
1590
1591 #data
1592 <pre xml:space="preserve" xmlns="http://www.w3.org/1999/xhtml"/>
1593 #errors
1594 /pre;no significant content;s
1595
1596 #data
1597 <pre xml:space="default" xmlns="http://www.w3.org/1999/xhtml"/>
1598 #errors
1599 /pre;no significant content;s
1600
1601 #data
1602 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
1603 #errors
1604 /ol/@start;integer:syntax error
1605
1606 #data
1607 <ol start="0" xmlns="http://www.w3.org/1999/xhtml"/>
1608 #errors
1609
1610 #data
1611 <ol start="1" xmlns="http://www.w3.org/1999/xhtml"/>
1612 #errors
1613
1614 #data
1615 <ol start="2" xmlns="http://www.w3.org/1999/xhtml"/>
1616 #errors
1617
1618 #data
1619 <ol start="10" xmlns="http://www.w3.org/1999/xhtml"/>
1620 #errors
1621
1622 #data
1623 <ol start="-0" xmlns="http://www.w3.org/1999/xhtml"/>
1624 #errors
1625
1626 #data
1627 <ol start="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1628 #errors
1629
1630 #data
1631 <ol start="-10" xmlns="http://www.w3.org/1999/xhtml"/>
1632 #errors
1633
1634 #data
1635 <ol start="0000" xmlns="http://www.w3.org/1999/xhtml"/>
1636 #errors
1637
1638 #data
1639 <ol start="0001" xmlns="http://www.w3.org/1999/xhtml"/>
1640 #errors
1641
1642 #data
1643 <ol start="00001" xmlns="http://www.w3.org/1999/xhtml"/>
1644 #errors
1645
1646 #data
1647 <ol start="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
1648 #errors
1649
1650 #data
1651 <ol start="-100000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
1652 #errors
1653
1654 #data
1655 <ol start="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
1656 #errors
1657 /ol/@start;integer:syntax error
1658
1659 #data
1660 <ol start="-1.0" xmlns="http://www.w3.org/1999/xhtml"/>
1661 #errors
1662 /ol/@start;integer:syntax error
1663
1664 #data
1665 <ol start="+0" xmlns="http://www.w3.org/1999/xhtml"/>
1666 #errors
1667 /ol/@start;integer:syntax error
1668
1669 #data
1670 <ol start="+1" xmlns="http://www.w3.org/1999/xhtml"/>
1671 #errors
1672 /ol/@start;integer:syntax error
1673
1674 #data
1675 <ol start="-+1" xmlns="http://www.w3.org/1999/xhtml"/>
1676 #errors
1677 /ol/@start;integer:syntax error
1678
1679 #data
1680 <ol start="1aaa" xmlns="http://www.w3.org/1999/xhtml"/>
1681 #errors
1682 /ol/@start;integer:syntax error
1683
1684 #data
1685 <ol start="xxxxx" xmlns="http://www.w3.org/1999/xhtml"/>
1686 #errors
1687 /ol/@start;integer:syntax error
1688
1689 #data
1690 <ol start=" 1" xmlns="http://www.w3.org/1999/xhtml"/>
1691 #errors
1692 /ol/@start;integer:syntax error
1693
1694 #data
1695 <ol start="1 " xmlns="http://www.w3.org/1999/xhtml"/>
1696 #errors
1697 /ol/@start;integer:syntax error
1698
1699 #data
1700 <ol start=" 1 " xmlns="http://www.w3.org/1999/xhtml"/>
1701 #errors
1702 /ol/@start;integer:syntax error
1703
1704 #data
1705 <ol start="_1" xmlns="http://www.w3.org/1999/xhtml"/>
1706 #errors
1707 /ol/@start;integer:syntax error
1708
1709 #data
1710 <ol start="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
1711 #errors
1712 /ol/@start;integer:syntax error
1713
1714 #data
1715 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
1716 #errors
1717 /ol/@start;integer:syntax error
1718
1719 #data
1720 <ol start="&#x2212;1" xmlns="http://www.w3.org/1999/xhtml"/>
1721 #errors
1722 /ol/@start;integer:syntax error
1723
1724 #data
1725 <ol reversed="" xmlns="http://www.w3.org/1999/xhtml"/>
1726 #errors
1727
1728 #data
1729 <ol reversed="reversed" xmlns="http://www.w3.org/1999/xhtml"/>
1730 #errors
1731
1732 #data
1733 <ol reversed="REVERSED" xmlns="http://www.w3.org/1999/xhtml"/>
1734 #errors
1735 /ol/@reversed;boolean:invalid
1736
1737 #data
1738 <ol reversed=" reversed " xmlns="http://www.w3.org/1999/xhtml"/>
1739 #errors
1740 /ol/@reversed;boolean:invalid
1741
1742 #data
1743 <ol reversed="yes" xmlns="http://www.w3.org/1999/xhtml"/>
1744 #errors
1745 /ol/@reversed;boolean:invalid
1746
1747 #data
1748 <ol reversed="on" xmlns="http://www.w3.org/1999/xhtml"/>
1749 #errors
1750 /ol/@reversed;boolean:invalid
1751
1752 #data
1753 <ol reversed="true" xmlns="http://www.w3.org/1999/xhtml"/>
1754 #errors
1755 /ol/@reversed;boolean:invalid
1756
1757 #data
1758 <ol reverse="" xmlns="http://www.w3.org/1999/xhtml"/>
1759 #errors
1760 /ol/@reverse;attribute not defined;m
1761
1762 #data
1763 <ol reversed="reverse" xmlns="http://www.w3.org/1999/xhtml"/>
1764 #errors
1765 /ol/@reversed;boolean:invalid
1766
1767 #data
1768 <ol xmlns="http://www.w3.org/1999/xhtml">
1769 <li value=""/>
1770 </ol>
1771 #error
1772 /ol/li/@value;integer:syntax error
1773 /ol/li;no significant content;s
1774
1775 #data
1776 <ol xmlns="http://www.w3.org/1999/xhtml">
1777 <li value="1"/>
1778 </ol>
1779 #error
1780 /ol/li;no significant content;s
1781
1782 #data
1783 <ol xmlns="http://www.w3.org/1999/xhtml">
1784 <li value="0"/>
1785 </ol>
1786 #error
1787 /ol/li;no significant content;s
1788
1789 #data
1790 <ol xmlns="http://www.w3.org/1999/xhtml">
1791 <li value="-1"/>
1792 </ol>
1793 #error
1794 /ol/li;no significant content;s
1795
1796 #data
1797 <ol xmlns="http://www.w3.org/1999/xhtml">
1798 <li value="+1"/>
1799 </ol>
1800 #error
1801 /ol/li;no significant content;s
1802
1803 #data
1804 <ol xmlns="http://www.w3.org/1999/xhtml">
1805 <li value="xxx"/>
1806 </ol>
1807 #error
1808 /ol/li/@value;integer:syntax error
1809 /ol/li;no significant content;s
1810
1811 #data
1812 <ul xmlns="http://www.w3.org/1999/xhtml">
1813 <li value=""/>
1814 </ul>
1815 #error
1816 /ul/li/@value;attribute;unsupported
1817 /ul/li/@value;integer:syntax error
1818 /ul/li;no significant content;s
1819
1820 #data
1821 <ul xmlns="http://www.w3.org/1999/xhtml">
1822 <li value="1"/>
1823 </ul>
1824 #error
1825 /ul/li/@value;attribute;unsupported
1826 /ul/li;no significant content;s
1827
1828 #data
1829 <ul xmlns="http://www.w3.org/1999/xhtml">
1830 <li value="0"/>
1831 </ul>
1832 #error
1833 /ul/li/@value;attribute;unsupported
1834 /ul/li;no significant content;s
1835
1836 #data
1837 <ul xmlns="http://www.w3.org/1999/xhtml">
1838 <li value="-1"/>
1839 </ul>
1840 #error
1841 /ul/li/@value;attribute;unsupported
1842 /ul/li;no significant content;s
1843
1844 #data
1845 <ul xmlns="http://www.w3.org/1999/xhtml">
1846 <li value="+1"/>
1847 </ul>
1848 #error
1849 /ul/li/@value;attribute;unsupported
1850 /ul/li;no significant content;s
1851
1852 #data
1853 <ul xmlns="http://www.w3.org/1999/xhtml">
1854 <li value="xxx"/>
1855 </ul>
1856 #error
1857 /ul/li/@value;attribute;unsupported
1858 /ul/li/@value;integer:syntax error
1859 /ul/li;no significant content;s
1860
1861 #data
1862 <li value="" xmlns="http://www.w3.org/1999/xhtml"/>
1863 #error
1864 /li/@value;attribute;unsupported
1865 /li/@value;integer:syntax error
1866 /li;no significant content;s
1867
1868 #data
1869 <li value="1" xmlns="http://www.w3.org/1999/xhtml"/>
1870 #error
1871 /li/@value;attribute;unsupported
1872 /li;no significant content;s
1873
1874 #data
1875 <li value="0" xmlns="http://www.w3.org/1999/xhtml"/>
1876 #error
1877 /li/@value;attribute;unsupported
1878 /li;no significant content;s
1879
1880 #data
1881 <li value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
1882 #error
1883 /li/@value;attribute;unsupported
1884 /li;no significant content;s
1885
1886 #data
1887 <li value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
1888 #error
1889 /li/@value;attribute;unsupported
1890 /li;no significant content;s
1891
1892 #data
1893 <li value="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
1894 #error
1895 /li/@value;attribute;unsupported
1896 /li/@value;integer:syntax error
1897 /li;no significant content;s
1898
1899 #data
1900 <dl compact="" xmlns="http://www.w3.org/1999/xhtml"/>
1901 #error
1902 /dl/@compact;attribute;unsupported
1903
1904 #data
1905 <a xmlns="http://www.w3.org/1999/xhtml"/>
1906 #errors
1907 /a;no significant content;s
1908
1909 #data
1910 <a href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1911 #errors
1912 /a;no significant content;s
1913
1914 #data
1915 <a href="http://test/[44::]/" xmlns="http://www.w3.org/1999/xhtml"/>
1916 #errors
1917 /a/@href;URI::syntax error:iriref3987;m
1918 /a;no significant content;s
1919
1920 #data
1921 <a href="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
1922 #errors
1923 /a/@type;IMT:syntax error
1924 /a;no significant content;s
1925
1926 #data
1927 <a href="http://test/" type="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
1928 #errors
1929 /a;no significant content;s
1930
1931 #data
1932 <a href="http://test/" rel="" xmlns="http://www.w3.org/1999/xhtml"/>
1933 #errors
1934 /a;no significant content;s
1935
1936 #data
1937 <a href="http://test/" rel="author contact"
1938 xmlns="http://www.w3.org/1999/xhtml"/>
1939 #errors
1940 /a;no significant content;s
1941
1942 #data
1943 <a href="http://test/" rel="author author" xmlns="http://www.w3.org/1999/xhtml"/>
1944 #errors
1945 /a/@rel;duplicate token:author
1946 /a;no significant content;s
1947
1948 #data
1949 <a href="http://test/" rel="bookmark" xmlns="http://www.w3.org/1999/xhtml"/>
1950 #errors
1951 /a;no significant content;s
1952
1953 #data
1954 <a href="http://test/" rel="previous" xmlns="http://www.w3.org/1999/xhtml"/>
1955 #errors
1956 /a/@rel;link type:non-conforming:previous
1957 /a;no significant content;s
1958
1959 #data
1960 <a href="http://test/" rel="edit" xmlns="http://www.w3.org/1999/xhtml"/>
1961 #errors
1962 /a/@rel;link type:proposed:edit;s
1963 /a;no significant content;s
1964
1965 #data
1966 <a href="http://test/" rel="script" xmlns="http://www.w3.org/1999/xhtml"/>
1967 #errors
1968 /a/@rel;link type:non-conforming:script
1969 /a;no significant content;s
1970
1971 #data
1972 <a href="http://test/" rel="stylesheet" xmlns="http://www.w3.org/1999/xhtml"/>
1973 #errors
1974 /a/@rel;link type:bad context:stylesheet
1975 /a;no significant content;s
1976
1977 #data
1978 <a href="http://test/" rel="test-type" xmlns="http://www.w3.org/1999/xhtml"/>
1979 #errors
1980 /a/@rel;link type:test-type;unsupported
1981 /a;no significant content;s
1982
1983 #data
1984 <a href="http://test/" ping="http://a.test/"
1985 xmlns="http://www.w3.org/1999/xhtml"/>
1986 #errors
1987 /a;no significant content;s
1988
1989 #data
1990 <a href="http://test/" ping="http://a.test/ http://b.test/"
1991 xmlns="http://www.w3.org/1999/xhtml"/>
1992 #errors
1993 /a;no significant content;s
1994
1995 #data
1996 <a href="http://test/" ping="http://a.test/ [b.test]"
1997 xmlns="http://www.w3.org/1999/xhtml"/>
1998 #errors
1999 /a/@ping;URIs::syntax error:iriref3987:1;m
2000 /a;no significant content;s
2001
2002 #data
2003 <a href="http://test/" hreflang=""
2004 xmlns="http://www.w3.org/1999/xhtml"/>
2005 #errors
2006 /a/@hreflang;LangTag:nosemantics:language;m
2007 /a;no significant content;s
2008
2009 #data
2010 <a href="http://test/" hreflang="en"
2011 xmlns="http://www.w3.org/1999/xhtml"/>
2012 #errors
2013 /a;no significant content;s
2014
2015 #data
2016 <a href="http://test/" media="all"
2017 xmlns="http://www.w3.org/1999/xhtml"/>
2018 #errors
2019 /a/@media;media query;unsupported
2020 /a;no significant content;s
2021
2022 #data
2023 <a href="http://test/" target="_self"
2024 xmlns="http://www.w3.org/1999/xhtml"/>
2025 #errors
2026 /a;no significant content;s
2027
2028 #data
2029 <a href="http://test/" target="_parent"
2030 xmlns="http://www.w3.org/1999/xhtml"/>
2031 #errors
2032 /a;no significant content;s
2033
2034 #data
2035 <a href="http://test/" target="_top"
2036 xmlns="http://www.w3.org/1999/xhtml"/>
2037 #errors
2038 /a;no significant content;s
2039
2040 #data
2041 <a href="http://test/" target="_Top"
2042 xmlns="http://www.w3.org/1999/xhtml"/>
2043 #errors
2044 /a;no significant content;s
2045
2046 #data
2047 <a href="http://test/" target="_TOP"
2048 xmlns="http://www.w3.org/1999/xhtml"/>
2049 #errors
2050 /a;no significant content;s
2051
2052 #data
2053 <a href="http://test/" target="_blank"
2054 xmlns="http://www.w3.org/1999/xhtml"/>
2055 #errors
2056 /a/@target;reserved browsing context name
2057 /a;no significant content;s
2058
2059 #data
2060 <a href="http://test/" target="_main"
2061 xmlns="http://www.w3.org/1999/xhtml"/>
2062 #errors
2063 /a/@target;reserved browsing context name
2064 /a;no significant content;s
2065
2066 #data
2067 <a href="http://test/" target="abcde"
2068 xmlns="http://www.w3.org/1999/xhtml"/>
2069 #errors
2070 /a;no significant content;s
2071
2072 #data
2073 <a href="http://test/" target="_"
2074 xmlns="http://www.w3.org/1999/xhtml"/>
2075 #errors
2076 /a/@target;reserved browsing context name
2077 /a;no significant content;s
2078
2079 #data
2080 <a type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
2081 #errors
2082 /a/@type;attribute not allowed
2083 /a;no significant content;s
2084
2085 #data
2086 <a rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
2087 #errors
2088 /a/@rel;attribute not allowed
2089 /a;no significant content;s
2090
2091 #data
2092 <a ping="a" xmlns="http://www.w3.org/1999/xhtml"/>
2093 #errors
2094 /a/@ping;attribute not allowed
2095 /a;no significant content;s
2096
2097 #data
2098 <a hreflang="en" xmlns="http://www.w3.org/1999/xhtml"/>
2099 #errors
2100 /a/@hreflang;attribute not allowed
2101 /a;no significant content;s
2102
2103 #data
2104 <a media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
2105 #errors
2106 /a/@media;attribute not allowed
2107 /a/@media;media query;unsupported
2108 /a;no significant content;s
2109
2110 #data
2111 <a target="_self"
2112 xmlns="http://www.w3.org/1999/xhtml"/>
2113 #errors
2114 /a/@target;attribute not allowed
2115 /a;no significant content;s
2116
2117 #data
2118 <p xmlns="http://www.w3.org/1999/xhtml">
2119 <b><a href="">a</a></b>
2120 <i><a type="text/plain">x</a></i>
2121 </p>
2122 #errors
2123 /p/i/a/@type;attribute not allowed
2124
2125 #data
2126 <q cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</q>
2127 #errors
2128
2129 #data
2130 <q cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml">x</q>
2131 #errors
2132 /q/@cite;URI::syntax error:iriref3987;m
2133
2134 #data
2135 <big xmlns="http://www.w3.org/1999/xhtml"></big>
2136 #errors
2137 /big;element not defined;m
2138 /big;no significant content;s
2139
2140 #data
2141 <big xmlns="http://www.w3.org/1999/xhtml"> </big>
2142 #errors
2143 /big;element not defined;m
2144 /big;no significant content;s
2145
2146 #data
2147 <big xmlns="http://www.w3.org/1999/xhtml">x</big>
2148 #errors
2149 /big;element not defined;m
2150
2151 #data
2152 <big xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></big>
2153 #errors
2154 /big;element not defined;m
2155
2156 #data
2157 <big xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</big>
2158 #errors
2159 /big;element not defined;m
2160 /big/style;element not allowed:phrasing;m
2161 /big/style;SUBDOC
2162
2163 #data
2164 <big xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></big>
2165 #errors
2166 /big;element not defined;m
2167 /big/p;element not allowed:phrasing;m
2168
2169 #data
2170 <span xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></span>
2171 #errors
2172 /span/big;element not allowed:phrasing;m
2173 /span/big;element not defined;m
2174
2175 #data
2176 <div xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></div>
2177 #errors
2178 /div/big;element not allowed:prose;m
2179 /div/big;element not defined;m
2180
2181 #data
2182 <rule xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></rule>
2183 #errors
2184 /rule/big;element not defined;m
2185
2186 #data
2187 <acronym xmlns="http://www.w3.org/1999/xhtml"></acronym>
2188 #errors
2189 /acronym;element not defined;m
2190 /acronym;no significant content;s
2191
2192 #data
2193 <acronym xmlns="http://www.w3.org/1999/xhtml"> </acronym>
2194 #errors
2195 /acronym;element not defined;m
2196 /acronym;no significant content;s
2197
2198 #data
2199 <acronym xmlns="http://www.w3.org/1999/xhtml">x</acronym>
2200 #errors
2201 /acronym;element not defined;m
2202
2203 #data
2204 <acronym xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></acronym>
2205 #errors
2206 /acronym;element not defined;m
2207
2208 #data
2209 <acronym xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</acronym>
2210 #errors
2211 /acronym;element not defined;m
2212 /acronym/style;element not allowed:phrasing;m
2213 /acronym/style;SUBDOC
2214
2215 #data
2216 <acronym xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></acronym>
2217 #errors
2218 /acronym;element not defined;m
2219 /acronym/p;element not allowed:phrasing;m
2220
2221 #data
2222 <span xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></span>
2223 #errors
2224 /span/acronym;element not allowed:phrasing;m
2225 /span/acronym;element not defined;m
2226
2227 #data
2228 <div xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></div>
2229 #errors
2230 /div/acronym;element not allowed:prose;m
2231 /div/acronym;element not defined;m
2232
2233 #data
2234 <rule xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></rule>
2235 #errors
2236 /rule/acronym;element not defined;m
2237
2238 #data
2239 <meter value="" xmlns="http://www.w3.org/1999/xhtml"/>
2240 #errors
2241 /meter/@value;float:syntax error
2242 /meter;no significant content;s
2243
2244 #data
2245 <meter value="1" xmlns="http://www.w3.org/1999/xhtml"/>
2246 #errors
2247 /meter;no significant content;s
2248
2249 #data
2250 <meter value="111" xmlns="http://www.w3.org/1999/xhtml"/>
2251 #errors
2252 /meter;no significant content;s
2253
2254 #data
2255 <meter value="0001" xmlns="http://www.w3.org/1999/xhtml"/>
2256 #errors
2257 /meter;no significant content;s
2258
2259 #data
2260 <meter value="0" xmlns="http://www.w3.org/1999/xhtml"/>
2261 #errors
2262 /meter;no significant content;s
2263
2264 #data
2265 <meter value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2266 #errors
2267 /meter;no significant content;s
2268
2269 #data
2270 <meter value="-1000" xmlns="http://www.w3.org/1999/xhtml"/>
2271 #errors
2272 /meter;no significant content;s
2273
2274 #data
2275 <meter value="-0" xmlns="http://www.w3.org/1999/xhtml"/>
2276 #errors
2277 /meter;no significant content;s
2278
2279 #data
2280 <meter value="0000" xmlns="http://www.w3.org/1999/xhtml"/>
2281 #errors
2282 /meter;no significant content;s
2283
2284 #data
2285 <meter value="0.1" xmlns="http://www.w3.org/1999/xhtml"/>
2286 #errors
2287 /meter;no significant content;s
2288
2289 #data
2290 <meter value="1.1" xmlns="http://www.w3.org/1999/xhtml"/>
2291 #errors
2292 /meter;no significant content;s
2293
2294 #data
2295 <meter value=".1" xmlns="http://www.w3.org/1999/xhtml"/>
2296 #errors
2297 /meter;no significant content;s
2298
2299 #data
2300 <meter value=".0" xmlns="http://www.w3.org/1999/xhtml"/>
2301 #errors
2302 /meter;no significant content;s
2303
2304 #data
2305 <meter value="1." xmlns="http://www.w3.org/1999/xhtml"/>
2306 #errors
2307 /meter;no significant content;s
2308
2309 #data
2310 <meter value="1.0000" xmlns="http://www.w3.org/1999/xhtml"/>
2311 #errors
2312 /meter;no significant content;s
2313
2314 #data
2315 <meter value="123." xmlns="http://www.w3.org/1999/xhtml"/>
2316 #errors
2317 /meter;no significant content;s
2318
2319 #data
2320 <meter value="-.1" xmlns="http://www.w3.org/1999/xhtml"/>
2321 #errors
2322 /meter;no significant content;s
2323
2324 #data
2325 <meter value="-1." xmlns="http://www.w3.org/1999/xhtml"/>
2326 #errors
2327 /meter;no significant content;s
2328
2329 #data
2330 <meter value="1aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2331 #errors
2332 /meter/@value;float:syntax error
2333 /meter;no significant content;s
2334
2335 #data
2336 <meter value="1&#x0D;" xmlns="http://www.w3.org/1999/xhtml"/>
2337 #errors
2338 /meter/@value;float:syntax error
2339 /meter;no significant content;s
2340
2341 #data
2342 <meter value="1&#x0A;" xmlns="http://www.w3.org/1999/xhtml"/>
2343 #errors
2344 /meter/@value;float:syntax error
2345 /meter;no significant content;s
2346
2347 #data
2348 <meter value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2349 #errors
2350 /meter/@value;float:syntax error
2351 /meter;no significant content;s
2352
2353 #data
2354 <meter value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
2355 #errors
2356 /meter/@value;float:syntax error
2357 /meter;no significant content;s
2358
2359 #data
2360 <meter value="+1.2" xmlns="http://www.w3.org/1999/xhtml"/>
2361 #errors
2362 /meter/@value;float:syntax error
2363 /meter;no significant content;s
2364
2365 #data
2366 <meter value=".-1" xmlns="http://www.w3.org/1999/xhtml"/>
2367 #errors
2368 /meter/@value;float:syntax error
2369 /meter;no significant content;s
2370
2371 #data
2372 <meter value="0.-1" xmlns="http://www.w3.org/1999/xhtml"/>
2373 #errors
2374 /meter/@value;float:syntax error
2375 /meter;no significant content;s
2376
2377 #data
2378 <meter value="." xmlns="http://www.w3.org/1999/xhtml"/>
2379 #errors
2380 /meter/@value;float:syntax error
2381 /meter;no significant content;s
2382
2383 #data
2384 <meter min="2" xmlns="http://www.w3.org/1999/xhtml"/>
2385 #errors
2386 /meter;no significant content;s
2387
2388 #data
2389 <meter min="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2390 #errors
2391 /meter/@min;float:syntax error
2392 /meter;no significant content;s
2393
2394 #data
2395 <meter low="2" xmlns="http://www.w3.org/1999/xhtml"/>
2396 #errors
2397 /meter;no significant content;s
2398
2399 #data
2400 <meter low="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2401 #errors
2402 /meter/@low;float:syntax error
2403 /meter;no significant content;s
2404
2405 #data
2406 <meter high="2" xmlns="http://www.w3.org/1999/xhtml"/>
2407 #errors
2408 /meter;no significant content;s
2409
2410 #data
2411 <meter high="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2412 #errors
2413 /meter/@high;float:syntax error
2414 /meter;no significant content;s
2415
2416 #data
2417 <meter max="2" xmlns="http://www.w3.org/1999/xhtml"/>
2418 #errors
2419 /meter;no significant content;s
2420
2421 #data
2422 <meter max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2423 #errors
2424 /meter/@max;float:syntax error
2425 /meter;no significant content;s
2426
2427 #data
2428 <meter optimum="2" xmlns="http://www.w3.org/1999/xhtml"/>
2429 #errors
2430 /meter;no significant content;s
2431
2432 #data
2433 <meter optimum="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2434 #errors
2435 /meter/@optimum;float:syntax error
2436 /meter;no significant content;s
2437
2438 #data
2439 <meter min="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
2440 #errors
2441 /meter;no significant content;s
2442
2443 #data
2444 <meter value="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
2445 #errors
2446 /meter;no significant content;s
2447
2448 #data
2449 <progress max="2" xmlns="http://www.w3.org/1999/xhtml"/>
2450 #errors
2451 /progress;no significant content;s
2452
2453 #data
2454 <progress max="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
2455 #errors
2456 /progress;no significant content;s
2457
2458 #data
2459 <progress max="0" xmlns="http://www.w3.org/1999/xhtml"/>
2460 #errors
2461 /progress/@max;float:out of range
2462 /progress;no significant content;s
2463
2464 #data
2465 <progress max="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2466 #errors
2467 /progress/@max;float:out of range
2468 /progress;no significant content;s
2469
2470 #data
2471 <progress max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2472 #errors
2473 /progress/@max;float:syntax error
2474 /progress;no significant content;s
2475
2476 #data
2477 <progress value="2" xmlns="http://www.w3.org/1999/xhtml"/>
2478 #errors
2479 /progress;no significant content;s
2480
2481 #data
2482 <progress value="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
2483 #errors
2484 /progress;no significant content;s
2485
2486 #data
2487 <progress value="0" xmlns="http://www.w3.org/1999/xhtml"/>
2488 #errors
2489 /progress;no significant content;s
2490
2491 #data
2492 <progress value="100" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
2493 #errors
2494 /progress;no significant content;s
2495
2496 #data
2497 <progress value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2498 #errors
2499 /progress/@value;float:out of range
2500 /progress;no significant content;s
2501
2502 #data
2503 <progress value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
2504 #errors
2505 /progress/@value;float:syntax error
2506 /progress;no significant content;s
2507
2508 #data
2509 <bdo xmlns="http://www.w3.org/1999/xhtml">x</bdo>
2510 #errors
2511 /bdo;attribute missing:dir
2512
2513 #data
2514 <bdo dir="ltr" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
2515 #errors
2516
2517 #data
2518 <bdo dir="rtl" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
2519 #errors
2520
2521 #data
2522 <bdo dir="RTL" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
2523 #errors
2524
2525 #data
2526 <bdo dir="xxx" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
2527 #errors
2528 /bdo/@dir;enumerated:invalid
2529
2530 #data
2531 <tt xmlns="http://www.w3.org/1999/xhtml"></tt>
2532 #errors
2533 /tt;element not defined;m
2534 /tt;no significant content;s
2535
2536 #data
2537 <tt xmlns="http://www.w3.org/1999/xhtml"> </tt>
2538 #errors
2539 /tt;element not defined;m
2540 /tt;no significant content;s
2541
2542 #data
2543 <tt xmlns="http://www.w3.org/1999/xhtml">x</tt>
2544 #errors
2545 /tt;element not defined;m
2546
2547 #data
2548 <tt xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></tt>
2549 #errors
2550 /tt;element not defined;m
2551
2552 #data
2553 <tt xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</tt>
2554 #errors
2555 /tt;element not defined;m
2556 /tt/style;element not allowed:phrasing;m
2557 /tt/style;SUBDOC
2558
2559 #data
2560 <tt xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></tt>
2561 #errors
2562 /tt;element not defined;m
2563 /tt/p;element not allowed:phrasing;m
2564
2565 #data
2566 <span xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></span>
2567 #errors
2568 /span/tt;element not allowed:phrasing;m
2569 /span/tt;element not defined;m
2570
2571 #data
2572 <div xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></div>
2573 #errors
2574 /div/tt;element not allowed:prose;m
2575 /div/tt;element not defined;m
2576
2577 #data
2578 <rule xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></rule>
2579 #errors
2580 /rule/tt;element not defined;m
2581
2582 #data
2583 <s xmlns="http://www.w3.org/1999/xhtml"></s>
2584 #errors
2585 /s;element not defined;m
2586 /s;no significant content;s
2587
2588 #data
2589 <s xmlns="http://www.w3.org/1999/xhtml"> </s>
2590 #errors
2591 /s;element not defined;m
2592 /s;no significant content;s
2593
2594 #data
2595 <s xmlns="http://www.w3.org/1999/xhtml">x</s>
2596 #errors
2597 /s;element not defined;m
2598
2599 #data
2600 <s xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></s>
2601 #errors
2602 /s;element not defined;m
2603
2604 #data
2605 <s xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</s>
2606 #errors
2607 /s;element not defined;m
2608 /s/style;element not allowed:phrasing;m
2609 /s/style;SUBDOC
2610
2611 #data
2612 <s xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></s>
2613 #errors
2614 /s;element not defined;m
2615 /s/p;element not allowed:phrasing;m
2616
2617 #data
2618 <span xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></span>
2619 #errors
2620 /span/s;element not allowed:phrasing;m
2621 /span/s;element not defined;m
2622
2623 #data
2624 <div xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></div>
2625 #errors
2626 /div/s;element not allowed:prose;m
2627 /div/s;element not defined;m
2628
2629 #data
2630 <rule xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></rule>
2631 #errors
2632 /rule/s;element not defined;m
2633
2634 #data
2635 <strike xmlns="http://www.w3.org/1999/xhtml"></strike>
2636 #errors
2637 /strike;element not defined;m
2638 /strike;no significant content;s
2639
2640 #data
2641 <strike xmlns="http://www.w3.org/1999/xhtml"> </strike>
2642 #errors
2643 /strike;element not defined;m
2644 /strike;no significant content;s
2645
2646 #data
2647 <strike xmlns="http://www.w3.org/1999/xhtml">x</strike>
2648 #errors
2649 /strike;element not defined;m
2650
2651 #data
2652 <strike xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></strike>
2653 #errors
2654 /strike;element not defined;m
2655
2656 #data
2657 <strike xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</strike>
2658 #errors
2659 /strike;element not defined;m
2660 /strike/style;element not allowed:phrasing;m
2661 /strike/style;SUBDOC
2662
2663 #data
2664 <strike xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></strike>
2665 #errors
2666 /strike;element not defined;m
2667 /strike/p;element not allowed:phrasing;m
2668
2669 #data
2670 <span xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></span>
2671 #errors
2672 /span/strike;element not allowed:phrasing;m
2673 /span/strike;element not defined;m
2674
2675 #data
2676 <div xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></div>
2677 #errors
2678 /div/strike;element not allowed:prose;m
2679 /div/strike;element not defined;m
2680
2681 #data
2682 <rule xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></rule>
2683 #errors
2684 /rule/strike;element not defined;m
2685
2686 #data
2687 <u xmlns="http://www.w3.org/1999/xhtml"></u>
2688 #errors
2689 /u;element not defined;m
2690 /u;no significant content;s
2691
2692 #data
2693 <u xmlns="http://www.w3.org/1999/xhtml"> </u>
2694 #errors
2695 /u;element not defined;m
2696 /u;no significant content;s
2697
2698 #data
2699 <u xmlns="http://www.w3.org/1999/xhtml">x</u>
2700 #errors
2701 /u;element not defined;m
2702
2703 #data
2704 <u xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></u>
2705 #errors
2706 /u;element not defined;m
2707
2708 #data
2709 <u xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</u>
2710 #errors
2711 /u;element not defined;m
2712 /u/style;element not allowed:phrasing;m
2713 /u/style;SUBDOC
2714
2715 #data
2716 <u xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></u>
2717 #errors
2718 /u;element not defined;m
2719 /u/p;element not allowed:phrasing;m
2720
2721 #data
2722 <span xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></span>
2723 #errors
2724 /span/u;element not allowed:phrasing;m
2725 /span/u;element not defined;m
2726
2727 #data
2728 <div xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></div>
2729 #errors
2730 /div/u;element not allowed:prose;m
2731 /div/u;element not defined;m
2732
2733 #data
2734 <rule xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></rule>
2735 #errors
2736 /rule/u;element not defined;m
2737
2738 #data
2739 <ins cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</ins>
2740 #errors
2741
2742 #data
2743 <ins cite="http://test/100%/" xmlns="http://www.w3.org/1999/xhtml">x</ins>
2744 #errors
2745 /ins/@cite;URI::syntax error:iriref3987;m
2746
2747 #data
2748 <ins xmlns="http://www.w3.org/1999/xhtml"
2749 datetime="">x</ins>
2750 #errors
2751 /ins/@datetime;datetime:syntax error
2752
2753 #data
2754 <ins xmlns="http://www.w3.org/1999/xhtml"
2755 datetime="2007-05">x</ins>
2756 #errors
2757 /ins/@datetime;datetime:syntax error
2758
2759 #data
2760 <ins xmlns="http://www.w3.org/1999/xhtml"
2761 datetime="2007-06">x</ins>
2762 #errors
2763 /ins/@datetime;datetime:syntax error
2764
2765 #data
2766 <ins xmlns="http://www.w3.org/1999/xhtml"
2767 datetime="2007-08-09">x</ins>
2768 #errors
2769 /ins/@datetime;datetime:syntax error
2770
2771 #data
2772 <ins xmlns="http://www.w3.org/1999/xhtml"
2773 datetime="2007-09-10T00:12">x</ins>
2774 #errors
2775 /ins/@datetime;datetime:syntax error
2776
2777 #data
2778 <ins xmlns="http://www.w3.org/1999/xhtml"
2779 datetime="2007-09-23T33:34:23">x</ins>
2780 #errors
2781 /ins/@datetime;datetime:syntax error
2782
2783 #data
2784 <ins xmlns="http://www.w3.org/1999/xhtml"
2785 datetime="2007-04-31T33:11:00+09">x</ins>
2786 #errors
2787 /ins/@datetime;datetime:syntax error
2788
2789 #data
2790 <ins xmlns="http://www.w3.org/1999/xhtml"
2791 datetime="0037-12-13 00:00 Z">x</ins>
2792 #errors
2793
2794 #data
2795 <ins xmlns="http://www.w3.org/1999/xhtml"
2796 datetime="1979-10-14T12:00:00.001-04:00">x</ins>
2797 #errors
2798
2799 #data
2800 <ins xmlns="http://www.w3.org/1999/xhtml"
2801 datetime="8592-01-01 T 02:09 +02:09">x</ins>
2802 #errors
2803
2804 #data
2805 <ins xmlns="http://www.w3.org/1999/xhtml"
2806 datetime="2007-04-12T00:00Z">x</ins>
2807 #errors
2808
2809 #data
2810 <ins xmlns="http://www.w3.org/1999/xhtml"
2811 datetime="10000-10-31T00:44Z">x</ins>
2812 #errors
2813 /ins/@datetime;datetime:syntax error
2814
2815 #data
2816 <ins xmlns="http://www.w3.org/1999/xhtml"
2817 datetime="-3333-03-14T14:33Z">x</ins>
2818 #errors
2819 /ins/@datetime;datetime:syntax error
2820
2821 #data
2822 <ins xmlns="http://www.w3.org/1999/xhtml"
2823 datetime="1999-06-23 T04:44Z">x</ins>
2824 #errors
2825
2826 #data
2827 <ins xmlns="http://www.w3.org/1999/xhtml"
2828 datetime="4444-06-22 T 11:22Z">x</ins>
2829 #errors
2830
2831 #data
2832 <ins xmlns="http://www.w3.org/1999/xhtml"
2833 datetime="98-02-12T11:22Z">x</ins>
2834 #errors
2835 /ins/@datetime;datetime:syntax error
2836
2837 #data
2838 <ins xmlns="http://www.w3.org/1999/xhtml"
2839 datetime="2007-02-29T00:00Z">x</ins>
2840 #errors
2841 /ins/@datetime;datetime:bad day
2842
2843 #data
2844 <ins xmlns="http://www.w3.org/1999/xhtml"
2845 datetime="2008-02-29T00:00Z">x</ins>
2846 #errors
2847
2848 #data
2849 <ins xmlns="http://www.w3.org/1999/xhtml"
2850 datetime="2000-02-29T00:00Z">x</ins>
2851 #errors
2852
2853 #data
2854 <ins xmlns="http://www.w3.org/1999/xhtml"
2855 datetime="1900-02-29T00:00Z">x</ins>
2856 #errors
2857 /ins/@datetime;datetime:bad day
2858
2859 #data
2860 <ins xmlns="http://www.w3.org/1999/xhtml"
2861 datetime="2007-02-30T00:00Z">x</ins>
2862 #errors
2863 /ins/@datetime;datetime:bad day
2864
2865 #data
2866 <ins xmlns="http://www.w3.org/1999/xhtml"
2867 datetime="2000-02-30T00:00Z">x</ins>
2868 #errors
2869 /ins/@datetime;datetime:bad day
2870
2871 #data
2872 <ins xmlns="http://www.w3.org/1999/xhtml"
2873 datetime="2007-01-32T00:00Z">xM</ins>
2874 #errors
2875 /ins/@datetime;datetime:bad day
2876
2877 #data
2878 <ins xmlns="http://www.w3.org/1999/xhtml"
2879 datetime="2007-01-00T00:00Z">x</ins>
2880 #errors
2881 /ins/@datetime;datetime:bad day
2882
2883 #data
2884 <ins xmlns="http://www.w3.org/1999/xhtml"
2885 datetime="2007-00-29T00:00Z">x</ins>
2886 #errors
2887 /ins/@datetime;datetime:bad month
2888
2889 #data
2890 <ins xmlns="http://www.w3.org/1999/xhtml"
2891 datetime="2007-13-29T00:00Z">x</ins>
2892 #errors
2893 /ins/@datetime;datetime:bad month
2894
2895 #data
2896 <ins xmlns="http://www.w3.org/1999/xhtml"
2897 datetime="2007-02-21T23:00Z">x</ins>
2898 #errors
2899
2900 #data
2901 <ins xmlns="http://www.w3.org/1999/xhtml"
2902 datetime="2007-02-21T24:00Z">x</ins>
2903 #errors
2904 /ins/@datetime;datetime:bad hour
2905
2906 #data
2907 <ins xmlns="http://www.w3.org/1999/xhtml"
2908 datetime="2007-02-21T23:59Z">x</ins>
2909 #errors
2910
2911 #data
2912 <ins xmlns="http://www.w3.org/1999/xhtml"
2913 datetime="2007-02-21T23:60Z">x</ins>
2914 #errors
2915 /ins/@datetime;datetime:bad minute
2916
2917 #data
2918 <ins xmlns="http://www.w3.org/1999/xhtml"
2919 datetime="2007-02-21T23:00:60Z">x</ins>
2920 #errors
2921 /ins/@datetime;datetime:bad second
2922
2923 #data
2924 <ins xmlns="http://www.w3.org/1999/xhtml"
2925 datetime="2007-02-21T23:00:61Z">x</ins>
2926 #errors
2927 /ins/@datetime;datetime:bad second
2928
2929 #data
2930 <ins xmlns="http://www.w3.org/1999/xhtml"
2931 datetime="2007-02-21T23:00:00.123Z">xM</ins>
2932 #errors
2933
2934 #data
2935 <ins xmlns="http://www.w3.org/1999/xhtml"
2936 datetime="2007-02-21T23:00.124444Z">x</ins>
2937 #errors
2938
2939 #data
2940 <ins xmlns="http://www.w3.org/1999/xhtml"
2941 datetime="2007-02-21T23:00.Z">x</ins>
2942 #errors
2943 /ins/@datetime;datetime:syntax error
2944
2945 #data
2946 <ins xmlns="http://www.w3.org/1999/xhtml"
2947 datetime="2007-02-21T23:00+09:00">x</ins>
2948 #errors
2949
2950 #data
2951 <ins xmlns="http://www.w3.org/1999/xhtml"
2952 datetime="2007-02-21T23:00-09:00">x</ins>
2953 #errors
2954
2955 #data
2956 <ins xmlns="http://www.w3.org/1999/xhtml"
2957 datetime="2007-02-21T23:00 +09:00">xm</ins>
2958 #errors
2959
2960 #data
2961 <ins xmlns="http://www.w3.org/1999/xhtml"
2962 datetime="2007-02-21T23:00+0900">x</ins>
2963 #errors
2964 /ins/@datetime;datetime:syntax error
2965
2966 #data
2967 <ins xmlns="http://www.w3.org/1999/xhtml"
2968 datetime="2007-02-21T23:00A">x</ins>
2969 #errors
2970 /ins/@datetime;datetime:syntax error
2971
2972 #data
2973 <ins xmlns="http://www.w3.org/1999/xhtml"
2974 datetime="2007-02-21T23:00z">x</ins>
2975 #errors
2976 /ins/@datetime;datetime:syntax error
2977
2978 #data
2979 <ins xmlns="http://www.w3.org/1999/xhtml"
2980 datetime="2007-02-21t23:00Z">x</ins>
2981 #errors
2982 /ins/@datetime;datetime:syntax error
2983
2984 #data
2985 <ins xmlns="http://www.w3.org/1999/xhtml"
2986 datetime="2007-02-21T23:00+23:00">x</ins>
2987 #errors
2988
2989 #data
2990 <ins xmlns="http://www.w3.org/1999/xhtml"
2991 datetime="2007-02-21T23:00+24:00">x</ins>
2992 #errors
2993 /ins/@datetime;datetime:bad timezone hour
2994
2995 #data
2996 <ins xmlns="http://www.w3.org/1999/xhtml"
2997 datetime="2007-02-21T23:00-23:00">x</ins>
2998 #errors
2999
3000 #data
3001 <ins xmlns="http://www.w3.org/1999/xhtml"
3002 datetime="2007-02-21T23:00-24:00">x</ins>
3003 #errors
3004 /ins/@datetime;datetime:bad timezone hour
3005
3006 #data
3007 <ins xmlns="http://www.w3.org/1999/xhtml"
3008 datetime="2007-02-21T23:00-00:00">x</ins>
3009 #errors
3010
3011 #data
3012 <ins xmlns="http://www.w3.org/1999/xhtml"
3013 datetime="2007-02-21T23:00+00:14.5">x</ins>
3014 #errors
3015 /ins/@datetime;datetime:syntax error
3016
3017 #data
3018 <ins xmlns="http://www.w3.org/1999/xhtml"
3019 datetime="2007-02-21T23:00+00:59">xM</ins>
3020 #errors
3021
3022 #data
3023 <ins xmlns="http://www.w3.org/1999/xhtml"
3024 datetime="2007-02-21T23:00+00:60">x</ins>
3025 #errors
3026 /ins/@datetime;datetime:bad timezone minute
3027
3028 #data
3029 <ins xmlns="http://www.w3.org/1999/xhtml"
3030 datetime="2007-02-21T23:00-00:60">x</ins>
3031 #errors
3032 /ins/@datetime;datetime:bad timezone minute
3033
3034 #data
3035 <ins xmlns="http://www.w3.org/1999/xhtml"
3036 datetime="2007-02-21T23:00 00:00">x</ins>
3037 #errors
3038 /ins/@datetime;datetime:syntax error
3039
3040 #data
3041 <ins xmlns="http://www.w3.org/1999/xhtml"
3042 datetime="2007-02-21T23:00Z ">x</ins>
3043 #errors
3044 /ins/@datetime;datetime:syntax error
3045
3046 #data
3047 <ins xmlns="http://www.w3.org/1999/xhtml"
3048 datetime=" 2007-02-21T23:00Z">s</ins>
3049 #errors
3050 /ins/@datetime;datetime:syntax error
3051
3052 #data
3053 <del cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</del>
3054 #errors
3055
3056 #data
3057 <del cite='"about:"' xmlns="http://www.w3.org/1999/xhtml">x</del>
3058 #errors
3059 /del/@cite;URI::syntax error:iriref3987;m
3060
3061 #data
3062 <del xmlns="http://www.w3.org/1999/xhtml"
3063 datetime="2007-02-21T23:00Z">x</del>
3064 #errors
3065
3066 #data
3067 <del xmlns="http://www.w3.org/1999/xhtml"
3068 datetime="2007-02-31T23:00Z">x</del>
3069 #errors
3070 /del/@datetime;datetime:bad day
3071
3072 #data
3073 <img xmlns="http://www.w3.org/1999/xhtml"/>
3074 #errors
3075 /img;attribute missing:alt;s
3076 /img;attribute missing:src
3077
3078 #data
3079 <img alt="" xmlns="http://www.w3.org/1999/xhtml"/>
3080 #errors
3081 /img;attribute missing:src
3082
3083 #data
3084 <img src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3085 #errors
3086 /img;attribute missing:alt;s
3087
3088 #data
3089 <img alt="" src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3090 #errors
3091
3092 #data
3093 <img alt="" src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
3094 #errors
3095 /img/@src;URI::syntax error:iriref3987;m
3096
3097 #data
3098 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
3099 #errors
3100 /img/@ismap;attribute not allowed:ismap;m
3101
3102 #data
3103 <span xmlns="http://www.w3.org/1999/xhtml">
3104 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
3105 </span>
3106 #errors
3107 /span/img/@ismap;attribute not allowed:ismap;m
3108
3109 #data
3110 <span xmlns="http://www.w3.org/1999/xhtml">
3111 <a>a</a>
3112 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
3113 </span>
3114 #errors
3115 /span/img/@ismap;attribute not allowed:ismap;m
3116
3117 #data
3118 <a xmlns="http://www.w3.org/1999/xhtml">
3119 <img alt="" src="http://test/" ismap="ismap"/>
3120 </a>
3121 #errors
3122 /a/img/@ismap;attribute not allowed:ismap;m
3123
3124 #data
3125 <a title="" xmlns="http://www.w3.org/1999/xhtml">
3126 <img alt="" src="http://test/" ismap="ismap"/>
3127 </a>
3128 #errors
3129 /a/img/@ismap;attribute not allowed:ismap;m
3130
3131 #data
3132 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
3133 <img alt="" src="http://test/" ismap=""/>
3134 </a>
3135 #errors
3136
3137 #data
3138 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
3139 <img alt="" src="http://test/" ismap="ismap"/>
3140 </a>
3141 #errors
3142
3143 #data
3144 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
3145 <img alt="" src="http://test/" ismap="true"/>
3146 </a>
3147 #errors
3148 /a/img/@ismap;boolean:invalid
3149
3150 #data
3151 <div xmlns="http://www.w3.org/1999/xhtml">
3152 <a href="http://link.test/">a</a>
3153 <img alt="" src="http://test/" ismap="ismap"/>
3154 </div>
3155 #errors
3156 /div/img/@ismap;attribute not allowed
3157
3158 #data
3159 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
3160 <span>
3161 <img alt="" src="http://test/" ismap="ismap"/>
3162 </span>
3163 </a>
3164 #errors
3165
3166 #data
3167 <div xmlns="http://www.w3.org/1999/xhtml">
3168 <p><img src="http://test/" alt="" usemap=""/></p>
3169 </div>
3170 #errors
3171 /div/p/img/@usemap;#idref:syntax error
3172
3173 #data
3174 <div xmlns="http://www.w3.org/1999/xhtml">
3175 <p><img src="http://test/" alt="" usemap="abc"/></p>
3176 </div>
3177 #errors
3178 /div/p/img/@usemap;#idref:syntax error
3179
3180 #data
3181 <div xmlns="http://www.w3.org/1999/xhtml">
3182 <p><img src="http://test/" alt="" usemap="abc#"/></p>
3183 </div>
3184 #errors
3185 /div/p/img/@usemap;#idref:syntax error
3186
3187 #data
3188 <div xmlns="http://www.w3.org/1999/xhtml">
3189 <p><img src="http://test/" alt="" usemap="&#x0A;#abc"/></p>
3190 </div>
3191 #errors
3192 /div/p/img/@usemap;#idref:syntax error
3193
3194 #data
3195 <div xmlns="http://www.w3.org/1999/xhtml">
3196 <p><img src="http://test/" alt="" usemap="#aa"/></p>
3197 <map id="aa"/>
3198 </div>
3199 #errors
3200 /div/map;no significant content;s
3201
3202 #data
3203 <div xmlns="http://www.w3.org/1999/xhtml">
3204 <map id="aa"/>
3205 <p><img src="http://test/" alt="" usemap="#aa"/></p>
3206 </div>
3207 #errors
3208 /div/map;no significant content;s
3209
3210 #data
3211 <div xmlns="http://www.w3.org/1999/xhtml">
3212 <map id="a a"/>
3213 <p><img src="http://test/" alt="" usemap="#a a"/></p>
3214 </div>
3215 #errors
3216 /div/map/@id;space in ID
3217 /div/map;no significant content;s
3218
3219 #data
3220 <div xmlns="http://www.w3.org/1999/xhtml">
3221 <map id="a a"/>
3222 <p><img src="http://test/" alt="" usemap="#a%20a"/></p>
3223 </div>
3224 #errors
3225 /div/map/@id;space in ID
3226 /div/map;no significant content;s
3227 /div/p/img/@usemap;no referenced map
3228
3229 #data
3230 <div xmlns="http://www.w3.org/1999/xhtml">
3231 <map id="&#x4E00;"/>
3232 <p><img src="http://test/" alt="" usemap="#&#x4E00;"/></p>
3233 </div>
3234 #errors
3235 /div/map;no significant content;s
3236
3237 #data
3238 <div xmlns="http://www.w3.org/1999/xhtml">
3239 <map id="aa"/>
3240 <p><img src="http://test/" alt="" usemap="#bb"/></p>
3241 </div>
3242 #errors
3243 /div/p/img/@usemap;no referenced map
3244 /div/map;no significant content;s
3245
3246 #data
3247 <div xmlns="http://www.w3.org/1999/xhtml">
3248 <map id="aa"/>
3249 <p><img src="http://test/" alt="" usemap="#aa"/></p>
3250 <p><img src="http://test/" alt="" usemap="#aa"/></p>
3251 </div>
3252 #errors
3253 /div/map;no significant content;s
3254
3255 #data
3256 <div xmlns="http://www.w3.org/1999/xhtml">
3257 <map id="aa"/>
3258 <p><img src="http://test/" alt="" usemap="#AA"/></p>
3259 </div>
3260 #errors
3261 /div/p/img/@usemap;no referenced map
3262 /div/map;no significant content;s
3263
3264 #data
3265 <div xmlns="http://www.w3.org/1999/xhtml">
3266 <map id="AA"/>
3267 <p><img src="http://test/" alt="" usemap="#aa"/></p>
3268 </div>
3269 #errors
3270 /div/p/img/@usemap;no referenced map
3271 /div/map;no significant content;s
3272
3273 #data
3274 <div xmlns="http://www.w3.org/1999/xhtml">
3275 <p id="aa"/>
3276 <p><img src="http://test/" alt="" usemap="#aa"/></p>
3277 </div>
3278 #errors
3279 /div/p/img/@usemap;no referenced map
3280 /div/p;no significant content;s
3281
3282 #data
3283 <iframe xmlns="http://www.w3.org/1999/xhtml"/>
3284 #errors
3285
3286 #data
3287 <iframe src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3288 #errors
3289
3290 #data
3291 <iframe src="&lt;http://test/>" xmlns="http://www.w3.org/1999/xhtml"/>
3292 #errors
3293 /iframe/@src;URI::syntax error:iriref3987;m
3294
3295 #data
3296 <embed xmlns="http://www.w3.org/1999/xhtml"/>
3297 #errors
3298 /embed;attribute missing:src
3299
3300 #data
3301 <embed src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3302 #errors
3303
3304 #data
3305 <embed src="[http://test/]" xmlns="http://www.w3.org/1999/xhtml"/>
3306 #errors
3307 /embed/@src;URI::syntax error:iriref3987;m
3308
3309 #data
3310 <embed src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
3311 #errors
3312 /embed/@type;IMT:syntax error
3313
3314 #data
3315 <embed src="http://test/" type="text"
3316 xmlns="http://www.w3.org/1999/xhtml"/>
3317 #errors
3318 /embed/@type;IMT:syntax error
3319
3320 #data
3321 <embed src="http://test/" type="text/plain"
3322 xmlns="http://www.w3.org/1999/xhtml"/>
3323 #errors
3324
3325 #data
3326 <embed src="http://test/" id=""
3327 xmlns="http://www.w3.org/1999/xhtml"/>
3328 #errors
3329 /embed/@id;empty attribute value
3330
3331 #data
3332 <embed src="http://test/" a="b" c="d" checked="checked"
3333 xmlns="http://www.w3.org/1999/xhtml"/>
3334 #errors
3335
3336 #data
3337 <object xmlns="http://www.w3.org/1999/xhtml"/>
3338 #errors
3339 /object;attribute missing:data|type
3340 /object;no significant content;s
3341
3342 #data
3343 <object data="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3344 #errors
3345 /object;no significant content;s
3346
3347 #data
3348 <object data="`http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
3349 #errors
3350 /object/@data;URI::syntax error:iriref3987;m
3351 /object;no significant content;s
3352
3353 #data
3354 <object type="" xmlns="http://www.w3.org/1999/xhtml"/>
3355 #errors
3356 /object/@type;IMT:syntax error
3357 /object;no significant content;s
3358
3359 #data
3360 <object type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
3361 #errors
3362 /object;no significant content;s
3363
3364 #data
3365 <object type="text/css" data="http://test/"
3366 xmlns="http://www.w3.org/1999/xhtml"/>
3367 #errors
3368 /object;no significant content;s
3369
3370 #data
3371 <div xmlns="http://www.w3.org/1999/xhtml">
3372 <p><object data="http://test/" usemap="">x</object></p>
3373 </div>
3374 #errors
3375 /div/p/object/@usemap;#idref:syntax error
3376
3377 #data
3378 <div xmlns="http://www.w3.org/1999/xhtml">
3379 <p><object data="http://test/" usemap="abc">x</object></p>
3380 </div>
3381 #errors
3382 /div/p/object/@usemap;#idref:syntax error
3383
3384 #data
3385 <div xmlns="http://www.w3.org/1999/xhtml">
3386 <p><object data="http://test/" usemap="abc#">x</object></p>
3387 </div>
3388 #errors
3389 /div/p/object/@usemap;#idref:syntax error
3390
3391 #data
3392 <div xmlns="http://www.w3.org/1999/xhtml">
3393 <p><object data="http://test/" usemap="&#x0A;#abc">x</object></p>
3394 </div>
3395 #errors
3396 /div/p/object/@usemap;#idref:syntax error
3397
3398 #data
3399 <div xmlns="http://www.w3.org/1999/xhtml">
3400 <p><object data="http://test/" usemap="#aa">x</object></p>
3401 <map id="aa"/>
3402 </div>
3403 #errors
3404 /div/map;no significant content;s
3405
3406 #data
3407 <div xmlns="http://www.w3.org/1999/xhtml">
3408 <map id="aa"/>
3409 <p><object data="http://test/" usemap="#aa">x</object></p>
3410 </div>
3411 #errors
3412 /div/map;no significant content;s
3413
3414 #data
3415 <div xmlns="http://www.w3.org/1999/xhtml">
3416 <map id="&#x4E00;"/>
3417 <p><object data="http://test/" usemap="#&#x4E00;">x</object></p>
3418 </div>
3419 #errors
3420 /div/map;no significant content;s
3421
3422 #data
3423 <div xmlns="http://www.w3.org/1999/xhtml">
3424 <map id="aa"/>
3425 <p><object data="http://test/" usemap="#bb">x</object></p>
3426 </div>
3427 #errors
3428 /div/p/object/@usemap;no referenced map
3429 /div/map;no significant content;s
3430
3431 #data
3432 <div xmlns="http://www.w3.org/1999/xhtml">
3433 <map id="aa"/>
3434 <p><object data="http://test/" usemap="#aa">x</object></p>
3435 <p><object data="http://test/" usemap="#aa">x</object></p>
3436 </div>
3437 #errors
3438 /div/map;no significant content;s
3439
3440 #data
3441 <div xmlns="http://www.w3.org/1999/xhtml">
3442 <map id="aa"/>
3443 <p><object data="http://test/" usemap="#AA">x</object></p>
3444 </div>
3445 #errors
3446 /div/p/object/@usemap;no referenced map
3447 /div/map;no significant content;s
3448
3449 #data
3450 <div xmlns="http://www.w3.org/1999/xhtml">
3451 <map id="AA"/>
3452 <p><object data="http://test/" usemap="#aa">x</object></p>
3453 </div>
3454 #errors
3455 /div/p/object/@usemap;no referenced map
3456 /div/map;no significant content;s
3457
3458 #data
3459 <div xmlns="http://www.w3.org/1999/xhtml">
3460 <object data="" usemap="#a">x</object><menu id="a">x</menu>
3461 </div>
3462 #errors
3463 /div/object/@usemap;no referenced map
3464
3465 #data
3466 <param xmlns="http://www.w3.org/1999/xhtml"/>
3467 #errors
3468 /param;attribute missing:name
3469 /param;attribute missing:value
3470
3471 #data
3472 <param name="a" xmlns="http://www.w3.org/1999/xhtml"/>
3473 #errors
3474 /param;attribute missing:value
3475
3476 #data
3477 <param value="a" xmlns="http://www.w3.org/1999/xhtml"/>
3478 #errors
3479 /param;attribute missing:name
3480
3481 #data
3482 <param name="a" value="b" xmlns="http://www.w3.org/1999/xhtml"/>
3483 #errors
3484
3485 #data
3486 <param name="" value="" xmlns="http://www.w3.org/1999/xhtml"/>
3487 #errors
3488
3489 #data
3490 <param name="a" value="b" valuetype="text" xmlns="http://www.w3.org/1999/xhtml"/>
3491 #errors
3492 /param/@valuetype;attribute;unsupported
3493
3494 #data
3495 <video xmlns="http://www.w3.org/1999/xhtml"/>
3496 #errors
3497 /video;no significant content;s
3498 /video;element missing:source;m
3499
3500 #data
3501 <video src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3502 #errors
3503 /video;no significant content;s
3504
3505 #data
3506 <video src="``http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3507 #errors
3508 /video/@src;URI::syntax error:iriref3987;m
3509 /video;no significant content;s
3510
3511 #data
3512 <video autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
3513 #errors
3514 /video;no significant content;s
3515 /video;element missing:source;m
3516
3517 #data
3518 <video autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
3519 #errors
3520 /video;no significant content;s
3521 /video;element missing:source;m
3522
3523 #data
3524 <video autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
3525 #errors
3526 /video;no significant content;s
3527 /video/@autoplay;boolean:invalid
3528 /video;element missing:source;m
3529
3530 #data
3531 <video controls="" xmlns="http://www.w3.org/1999/xhtml"/>
3532 #errors
3533 /video;no significant content;s
3534 /video;element missing:source;m
3535
3536 #data
3537 <video controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
3538 #errors
3539 /video;no significant content;s
3540 /video;element missing:source;m
3541
3542 #data
3543 <video controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
3544 #errors
3545 /video/@controls;boolean:invalid
3546 /video;no significant content;s
3547 /video;element missing:source;m
3548
3549 #data
3550 <video poster="" xmlns="http://www.w3.org/1999/xhtml"/>
3551 #errors
3552 /video;no significant content;s
3553 /video;element missing:source;m
3554
3555 #data
3556 <video poster="abc" xmlns="http://www.w3.org/1999/xhtml"/>
3557 #errors
3558 /video;element missing:source;m
3559 /video;no significant content;s
3560
3561 #data
3562 <video poster="[]" xmlns="http://www.w3.org/1999/xhtml"/>
3563 #errors
3564 /video/@poster;URI::syntax error:iriref3987;m
3565 /video;no significant content;s
3566 /video;element missing:source;m
3567
3568 #data
3569 <audio xmlns="http://www.w3.org/1999/xhtml"/>
3570 #errors
3571 /audio;no significant content;s
3572 /audio;element missing:source;m
3573
3574 #data
3575 <audio src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3576 #errors
3577 /audio;no significant content;s
3578
3579 #data
3580 <audio src="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
3581 #errors
3582 /audio/@src;URI::syntax error:iriref3987;m
3583 /audio;no significant content;s
3584
3585 #data
3586 <audio autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
3587 #errors
3588 /audio;no significant content;s
3589 /audio;element missing:source;m
3590
3591 #data
3592 <audio autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
3593 #errors
3594 /audio;no significant content;s
3595 /audio;element missing:source;m
3596
3597 #data
3598 <audio autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
3599 #errors
3600 /audio/@autoplay;boolean:invalid
3601 /audio;no significant content;s
3602 /audio;element missing:source;m
3603
3604 #data
3605 <audio controls="" xmlns="http://www.w3.org/1999/xhtml"/>
3606 #errors
3607 /audio;no significant content;s
3608 /audio;element missing:source;m
3609
3610 #data
3611 <audio controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
3612 #errors
3613 /audio;no significant content;s
3614 /audio;element missing:source;m
3615
3616 #data
3617 <audio controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
3618 #errors
3619 /audio/@controls;boolean:invalid
3620 /audio;no significant content;s
3621 /audio;element missing:source;m
3622
3623 #data
3624 <source xmlns="http://www.w3.org/1999/xhtml"/>
3625 #errors
3626 /source;attribute missing:src
3627
3628 #data
3629 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3630 #errors
3631
3632 #data
3633 <source src="%http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3634 #errors
3635 /source/@src;URI::syntax error:iriref3987;m
3636
3637 #data
3638 <source src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
3639 #errors
3640 /source/@type;IMT:syntax error
3641
3642 #data
3643 <source src="http://test/" type="video" xmlns="http://www.w3.org/1999/xhtml"/>
3644 #errors
3645 /source/@type;IMT:syntax error
3646
3647 #data
3648 <source src="http://test/" type="audio/mpeg"
3649 xmlns="http://www.w3.org/1999/xhtml"/>
3650 #errors
3651
3652 #data
3653 <source src="http://test/" type="video/3gpp2; codecs=sevc,s263"
3654 xmlns="http://www.w3.org/1999/xhtml"/>
3655 #errors
3656 /source/@type;IMT:syntax error
3657
3658 #data
3659 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc,s263&quot;"
3660 xmlns="http://www.w3.org/1999/xhtml"/>
3661 #errors
3662
3663 #data
3664 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc, s263&quot;"
3665 xmlns="http://www.w3.org/1999/xhtml"/>
3666 #errors
3667
3668 #data
3669 <source src="http://test/" type="video/3gpp2; codecs='sevc, s263'"
3670 xmlns="http://www.w3.org/1999/xhtml"/>
3671 #errors
3672 /source/@type;IMT:syntax error
3673
3674 #data
3675 <source src="http://test/" media="screen"
3676 xmlns="http://www.w3.org/1999/xhtml"/>
3677 #errors
3678 /source/@media;media query;unsupported
3679
3680 #data
3681 <canvas xmlns="http://www.w3.org/1999/xhtml"/>
3682 #errors
3683 /canvas;no significant content;s
3684
3685 #data
3686 <canvas width="" xmlns="http://www.w3.org/1999/xhtml"/>
3687 #errors
3688 /canvas;no significant content;s
3689 /canvas/@width;nninteger:syntax error
3690
3691 #data
3692 <canvas width="1" xmlns="http://www.w3.org/1999/xhtml"/>
3693 #errors
3694 /canvas;no significant content;s
3695
3696 #data
3697 <canvas width="0" xmlns="http://www.w3.org/1999/xhtml"/>
3698 #errors
3699 /canvas;no significant content;s
3700
3701 #data
3702 <canvas width="100" xmlns="http://www.w3.org/1999/xhtml"/>
3703 #errors
3704 /canvas;no significant content;s
3705
3706 #data
3707 <canvas width="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3708 #errors
3709 /canvas;no significant content;s
3710 /canvas/@width;nninteger:syntax error
3711
3712 #data
3713 <canvas width="saaa" xmlns="http://www.w3.org/1999/xhtml"/>
3714 #errors
3715 /canvas/@width;nninteger:syntax error
3716 /canvas;no significant content;s
3717
3718 #data
3719 <canvas width="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
3720 #errors
3721 /canvas/@width;nninteger:syntax error
3722 /canvas;no significant content;s
3723
3724 #data
3725 <canvas width="13344aa" xmlns="http://www.w3.org/1999/xhtml"/>
3726 #errors
3727 /canvas/@width;nninteger:syntax error
3728 /canvas;no significant content;s
3729
3730 #data
3731 <canvas height="" xmlns="http://www.w3.org/1999/xhtml"/>
3732 #errors
3733 /canvas/@height;nninteger:syntax error
3734 /canvas;no significant content;s
3735
3736 #data
3737 <canvas height="0" xmlns="http://www.w3.org/1999/xhtml"/>
3738 #errors
3739 /canvas;no significant content;s
3740
3741 #data
3742 <canvas height="1" xmlns="http://www.w3.org/1999/xhtml"/>
3743 #errors
3744 /canvas;no significant content;s
3745
3746 #data
3747 <canvas height="-2" xmlns="http://www.w3.org/1999/xhtml"/>
3748 #errors
3749 /canvas/@height;nninteger:syntax error
3750 /canvas;no significant content;s
3751
3752 #data
3753 <canvas height="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
3754 #errors
3755 /canvas/@height;nninteger:syntax error
3756 /canvas;no significant content;s
3757
3758 #data
3759 <canvas height="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
3760 #errors
3761 /canvas/@height;nninteger:syntax error
3762 /canvas;no significant content;s
3763
3764 #data
3765 <canvas width="44" height="14" xmlns="http://www.w3.org/1999/xhtml"/>
3766 #errors
3767 /canvas;no significant content;s
3768
3769 #data
3770 <map xmlns="http://www.w3.org/1999/xhtml"/>
3771 #errors
3772 /map;attribute missing:id
3773 /map;no significant content;s
3774
3775 #data
3776 <map name="aa" xmlns="http://www.w3.org/1999/xhtml"/>
3777 #errors
3778 /map;attribute missing:id
3779 /map/@name;attribute;unsupported
3780 /map;no significant content;s
3781
3782 #data
3783 <map id="aa" xmlns="http://www.w3.org/1999/xhtml"/>
3784 #errors
3785 /map;no significant content;s
3786
3787 #data
3788 <div xmlns="http://www.w3.org/1999/xhtml">
3789 <map id="aa"/>
3790 <p id="aa">x</p>
3791 </div>
3792 #errors
3793 /div/p/@id;duplicate ID
3794 /div/map;no significant content;s
3795
3796 #data
3797 <div xmlns="http://www.w3.org/1999/xhtml">
3798 <p id="aa">x</p>
3799 <map id="aa"/>
3800 </div>
3801 #errors
3802 /div/map/@id;duplicate ID
3803 /div/map;no significant content;s
3804
3805 #data
3806 <map id="" xmlns="http://www.w3.org/1999/xhtml"/>
3807 #errors
3808 /map/@id;empty attribute value
3809 /map;no significant content;s
3810
3811 #data
3812 <area xmlns="http://www.w3.org/1999/xhtml"/>
3813 #errors
3814 /area;attribute missing:coords
3815
3816 #data
3817 <area href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3818 #errors
3819 /area;attribute missing:alt
3820 /area;attribute missing:coords
3821
3822 #data
3823 <area alt="" xmlns="http://www.w3.org/1999/xhtml"/>
3824 #errors
3825 /area/@alt;attribute not allowed
3826 /area;attribute missing:coords
3827
3828 #data
3829 <area href="http://test/" alt="" xmlns="http://www.w3.org/1999/xhtml"/>
3830 #errors
3831 /area;attribute missing:coords
3832
3833 #data
3834 <area href="http://test/" alt="" coords="1,2,3,4"
3835 xmlns="http://www.w3.org/1999/xhtml"/>
3836 #errors
3837
3838 #data
3839 <area href="%%http://test/" alt="" coords="1,2,3,4"
3840 xmlns="http://www.w3.org/1999/xhtml"/>
3841 #errors
3842 /area/@href;URI::syntax error:iriref3987;m
3843
3844 #data
3845 <area href="http://test/" alt="" coords="1,2,3,4"
3846 hreflang=""
3847 xmlns="http://www.w3.org/1999/xhtml"/>
3848 #errors
3849 /area/@hreflang;LangTag:nosemantics:language;m
3850
3851 #data
3852 <area href="http://test/" alt="" coords="1,2,3,4"
3853 hreflang="en"
3854 xmlns="http://www.w3.org/1999/xhtml"/>
3855 #errors
3856
3857 #data
3858 <area coords="1,2,3,4" hreflang="en"
3859 xmlns="http://www.w3.org/1999/xhtml"/>
3860 #errors
3861 /area/@hreflang;attribute not allowed
3862
3863 #data
3864 <area href="http://test/" alt="" coords="1,2,3,4"
3865 media="screen"
3866 xmlns="http://www.w3.org/1999/xhtml"/>
3867 #errors
3868 /area/@media;media query;unsupported
3869
3870 #data
3871 <area coords="1,2,3,4" media="screen"
3872 xmlns="http://www.w3.org/1999/xhtml"/>
3873 #errors
3874 /area/@media;attribute not allowed
3875 /area/@media;media query;unsupported
3876
3877 #data
3878 <area href="http://test/" coords="1,2,3,4" alt="" target="_self"
3879 xmlns="http://www.w3.org/1999/xhtml"/>
3880 #errors
3881
3882 #data
3883 <area href="http://test/" coords="1,2,3,4" alt="" target="self"
3884 xmlns="http://www.w3.org/1999/xhtml"/>
3885 #errors
3886
3887 #data
3888 <area href="http://test/" coords="1,2,3,4" alt="" target="_any"
3889 xmlns="http://www.w3.org/1999/xhtml"/>
3890 #errors
3891 /area/@target;reserved browsing context name
3892
3893 #data
3894 <area coords="1,2,3,4" target="_self"
3895 xmlns="http://www.w3.org/1999/xhtml"/>
3896 #errors
3897 /area/@target;attribute not allowed
3898
3899 #data
3900 <area coords="1,2,3,4"
3901 xmlns="http://www.w3.org/1999/xhtml"/>
3902 #errors
3903
3904 #data
3905 <area shape="rect" coords="1,2,3,4"
3906 xmlns="http://www.w3.org/1999/xhtml"/>
3907 #errors
3908
3909 #data
3910 <area shape="RECT" coords="1,2,3,4"
3911 xmlns="http://www.w3.org/1999/xhtml"/>
3912 #errors
3913
3914 #data
3915 <area shape="rectangle" coords="1,2,3,4"
3916 xmlns="http://www.w3.org/1999/xhtml"/>
3917 #errors
3918 /area/@shape;enumerated:non-conforming
3919
3920 #data
3921 <area shape="rec" coords="1,2,3,4"
3922 xmlns="http://www.w3.org/1999/xhtml"/>
3923 #errors
3924 /area/@shape;enumerated:invalid
3925
3926 #data
3927 <area shape="default"
3928 xmlns="http://www.w3.org/1999/xhtml"/>
3929 #errors
3930
3931 #data
3932 <area shape="defaulT"
3933 xmlns="http://www.w3.org/1999/xhtml"/>
3934 #errors
3935
3936 #data
3937 <area shape="circ" coords="1,2,3"
3938 xmlns="http://www.w3.org/1999/xhtml"/>
3939 #errors
3940 /area/@shape;enumerated:non-conforming
3941
3942 #data
3943 <area shape="circle" coords="1,2,3"
3944 xmlns="http://www.w3.org/1999/xhtml"/>
3945 #errors
3946
3947 #data
3948 <area shape="poly" coords="1,2,3,4,5,6"
3949 xmlns="http://www.w3.org/1999/xhtml"/>
3950 #errors
3951
3952 #data
3953 <area shape="polygon" coords="1,2,3,4,5,6"
3954 xmlns="http://www.w3.org/1999/xhtml"/>
3955 #errors
3956 /area/@shape;enumerated:non-conforming
3957
3958 #data
3959 <area shape="XXX" coords="1,2,3,4"
3960 xmlns="http://www.w3.org/1999/xhtml"/>
3961 #errors
3962 /area/@shape;enumerated:invalid
3963
3964 #data
3965 <area shape="circle" coords=""
3966 xmlns="http://www.w3.org/1999/xhtml"/>
3967 #errors
3968 /area/@coords;coords:syntax error
3969
3970 #data
3971 <area shape="circle" coords="1"
3972 xmlns="http://www.w3.org/1999/xhtml"/>
3973 #errors
3974 /area/@coords;coords:number:3:1
3975
3976 #data
3977 <area shape="circle" coords="1,2"
3978 xmlns="http://www.w3.org/1999/xhtml"/>
3979 #errors
3980 /area/@coords;coords:number:3:2
3981
3982 #data
3983 <area shape="circle" coords="1,2,3,4"
3984 xmlns="http://www.w3.org/1999/xhtml"/>
3985 #errors
3986 /area/@coords;coords:number:3:4
3987
3988 #data
3989 <area shape="circle" coords="1,2,3,4,5"
3990 xmlns="http://www.w3.org/1999/xhtml"/>
3991 #errors
3992 /area/@coords;coords:number:3:5
3993
3994 #data
3995 <area shape="circle" coords="1,2,-3"
3996 xmlns="http://www.w3.org/1999/xhtml"/>
3997 #errors
3998 /area/@coords;coords:out of range:2
3999
4000 #data
4001 <area shape="circle" coords="1,2,0"
4002 xmlns="http://www.w3.org/1999/xhtml"/>
4003 #errors
4004
4005 #data
4006 <area shape="circle" coords="-1,-2,4"
4007 xmlns="http://www.w3.org/1999/xhtml"/>
4008 #errors
4009
4010 #data
4011 <area shape="circle" coords="0,0,0"
4012 xmlns="http://www.w3.org/1999/xhtml"/>
4013 #errors
4014
4015 #data
4016 <area shape="circle"
4017 xmlns="http://www.w3.org/1999/xhtml"/>
4018 #errors
4019 /area;attribute missing:coords
4020
4021 #data
4022 <area shape="default" coords="1"
4023 xmlns="http://www.w3.org/1999/xhtml"/>
4024 #errors
4025 /area/@coords;attribute not allowed
4026
4027 #data
4028 <area shape="poly" coords=""
4029 xmlns="http://www.w3.org/1999/xhtml"/>
4030 #errors
4031 /area/@coords;coords:syntax error
4032
4033 #data
4034 <area shape="poly" coords="1"
4035 xmlns="http://www.w3.org/1999/xhtml"/>
4036 #errors
4037 /area/@coords;coords:number:>=6:1
4038
4039 #data
4040 <area shape="poly" coords="1,2"
4041 xmlns="http://www.w3.org/1999/xhtml"/>
4042 #errors
4043 /area/@coords;coords:number:>=6:2
4044
4045 #data
4046 <area shape="poly" coords="1,2,3"
4047 xmlns="http://www.w3.org/1999/xhtml"/>
4048 #errors
4049 /area/@coords;coords:number:>=6:3
4050
4051 #data
4052 <area shape="poly" coords="1,2,3,4"
4053 xmlns="http://www.w3.org/1999/xhtml"/>
4054 #errors
4055 /area/@coords;coords:number:>=6:4
4056
4057 #data
4058 <area shape="poly" coords="1,2,3,4,5"
4059 xmlns="http://www.w3.org/1999/xhtml"/>
4060 #errors
4061 /area/@coords;coords:number:>=6:5
4062
4063 #data
4064 <area shape="poly" coords="1,2,3,4,5,6,7"
4065 xmlns="http://www.w3.org/1999/xhtml"/>
4066 #errors
4067 /area/@coords;coords:number:even:7
4068
4069 #data
4070 <area shape="poly" coords="-1,-23,55,455,232,0"
4071 xmlns="http://www.w3.org/1999/xhtml"/>
4072 #errors
4073
4074 #data
4075 <area shape="poly" coords="0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
4076 xmlns="http://www.w3.org/1999/xhtml"/>
4077 #errors
4078
4079 #data
4080 <area shape="poly"
4081 xmlns="http://www.w3.org/1999/xhtml"/>
4082 #errors
4083 /area;attribute missing:coords
4084
4085 #data
4086 <area shape="rect" coords=""
4087 xmlns="http://www.w3.org/1999/xhtml"/>
4088 #errors
4089 /area/@coords;coords:syntax error
4090
4091 #data
4092 <area shape="rect" coords="1"
4093 xmlns="http://www.w3.org/1999/xhtml"/>
4094 #errors
4095 /area/@coords;coords:number:4:1
4096
4097 #data
4098 <area shape="rect" coords="1,2"
4099 xmlns="http://www.w3.org/1999/xhtml"/>
4100 #errors
4101 /area/@coords;coords:number:4:2
4102
4103 #data
4104 <area shape="rect" coords="1,2,3"
4105 xmlns="http://www.w3.org/1999/xhtml"/>
4106 #errors
4107 /area/@coords;coords:number:4:3
4108
4109 #data
4110 <area shape="rect" coords="1,2,3,4,5"
4111 xmlns="http://www.w3.org/1999/xhtml"/>
4112 #errors
4113 /area/@coords;coords:number:4:5
4114
4115 #data
4116 <area shape="rect"
4117 xmlns="http://www.w3.org/1999/xhtml"/>
4118 #errors
4119 /area;attribute missing:coords
4120
4121 #data
4122 <area shape="rect" coords="0,0,1,1"
4123 xmlns="http://www.w3.org/1999/xhtml"/>
4124 #errors
4125
4126 #data
4127 <area shape="rect" coords="-1,-1,0,0"
4128 xmlns="http://www.w3.org/1999/xhtml"/>
4129 #errors
4130
4131 #data
4132 <area shape="rect" coords="-1,-1,6,6"
4133 xmlns="http://www.w3.org/1999/xhtml"/>
4134 #errors
4135
4136 #data
4137 <area shape="rect" coords="54,54,7876,466"
4138 xmlns="http://www.w3.org/1999/xhtml"/>
4139 #errors
4140
4141 #data
4142 <area shape="rect" coords="646,4,3,657"
4143 xmlns="http://www.w3.org/1999/xhtml"/>
4144 #errors
4145 /area/@coords;coords:out of range:0
4146
4147 #data
4148 <area shape="rect" coords="4,646,657,7"
4149 xmlns="http://www.w3.org/1999/xhtml"/>
4150 #errors
4151 /area/@coords;coords:out of range:1
4152
4153 #data
4154 <area shape="rect" coords="1,2,3,4"
4155 ping="a b"
4156 xmlns="http://www.w3.org/1999/xhtml"/>
4157 #errors
4158 /area/@ping;attribute not allowed
4159
4160 #data
4161 <area shape="rect" coords="1,2,3,4"
4162 rel="author"
4163 xmlns="http://www.w3.org/1999/xhtml"/>
4164 #errors
4165 /area/@rel;attribute not allowed
4166
4167 #data
4168 <area shape="rect" coords="1,2,3,4"
4169 type="text/css"
4170 xmlns="http://www.w3.org/1999/xhtml"/>
4171 #errors
4172 /area/@type;attribute not allowed
4173
4174 #data
4175 <area shape="rect" coords="1,2,3,4"
4176 href="http://test/" type="text" alt=""
4177 xmlns="http://www.w3.org/1999/xhtml"/>
4178 #errors
4179 /area/@type;IMT:syntax error
4180
4181 #data
4182 <area shape="rect" coords="1,2,3,4"
4183 href="http://test/" type="text/css" alt=""
4184 xmlns="http://www.w3.org/1999/xhtml"/>
4185 #errors
4186
4187 #data
4188 <area shape="rect" coords="1,2,3,4"
4189 href="http://test/" rel="author" alt=""
4190 xmlns="http://www.w3.org/1999/xhtml"/>
4191 #errors
4192
4193 #data
4194 <area shape="rect" coords="1,2,3,4"
4195 href="http://test/" rel="author author" alt=""
4196 xmlns="http://www.w3.org/1999/xhtml"/>
4197 #errors
4198 /area/@rel;duplicate token:author
4199
4200 #data
4201 <area shape="rect" coords="1,2,3,4"
4202 href="http://test/" rel="bookmark" alt=""
4203 xmlns="http://www.w3.org/1999/xhtml"/>
4204 #errors
4205
4206 #data
4207 <area shape="rect" coords="1,2,3,4"
4208 href="http://test/" rel="previous" alt=""
4209 xmlns="http://www.w3.org/1999/xhtml"/>
4210 #errors
4211 /area/@rel;link type:non-conforming:previous
4212
4213 #data
4214 <area shape="rect" coords="1,2,3,4"
4215 href="http://test/" rel="edit" alt=""
4216 xmlns="http://www.w3.org/1999/xhtml"/>
4217 #errors
4218 /area/@rel;link type:proposed:edit;s
4219
4220 #data
4221 <area shape="rect" coords="1,2,3,4"
4222 href="http://test/" rel="script" alt=""
4223 xmlns="http://www.w3.org/1999/xhtml"/>
4224 #errors
4225 /area/@rel;link type:non-conforming:script
4226
4227 #data
4228 <area shape="rect" coords="1,2,3,4"
4229 href="http://test/" rel="icon" alt=""
4230 xmlns="http://www.w3.org/1999/xhtml"/>
4231 #errors
4232 /area/@rel;link type:bad context:icon
4233
4234 #data
4235 <area shape="rect" coords="1,2,3,4"
4236 href="http://test/" rel="example-link-type" alt=""
4237 xmlns="http://www.w3.org/1999/xhtml"/>
4238 #errors
4239 /area/@rel;link type:example-link-type;unsupported
4240
4241 #data
4242 <area shape="rect" coords="1,2,3,4"
4243 href="http://test/" ping="a b" alt=""
4244 xmlns="http://www.w3.org/1999/xhtml"/>
4245 #errors
4246
4247 #data
4248 <area shape="rect" coords="1,2,3,4"
4249 href="http://test/" ping="a [b]" alt=""
4250 xmlns="http://www.w3.org/1999/xhtml"/>
4251 #errors
4252 /area/@ping;URIs::syntax error:iriref3987:1;m
4253
4254 #data
4255 <area shape="rect" coords="1,2,3,4"
4256 href="http://test/" ping="a [b] [@c]" alt=""
4257 xmlns="http://www.w3.org/1999/xhtml"/>
4258 #errors
4259 /area/@ping;URIs::syntax error:iriref3987:1;m
4260 /area/@ping;URIs::syntax error:iriref3987:2;m
4261
4262 #data
4263 <table xmlns="http://www.w3.org/1999/xhtml"/>
4264 #errors
4265
4266 #data
4267 <table border="" xmlns="http://www.w3.org/1999/xhtml"/>
4268 #errors
4269 /table/@border;attribute;unsupported
4270
4271 #data
4272 <table frame="border" xmlns="http://www.w3.org/1999/xhtml"/>
4273 #errors
4274 /table/@frame;attribute;unsupported
4275
4276 #data
4277 <table border="1" xmlns="http://www.w3.org/1999/xhtml"/>
4278 #errors
4279 /table/@border;attribute;unsupported
4280
4281 #data
4282 <caption align="top" xmlns="http://www.w3.org/1999/xhtml"/>
4283 #errors
4284 /caption/@align;attribute;unsupported
4285 /caption;no significant content;s
4286
4287 #data
4288 <colgroup xmlns="http://www.w3.org/1999/xhtml"/>
4289 #errors
4290
4291 #data
4292 <colgroup span="" xmlns="http://www.w3.org/1999/xhtml"/>
4293 #errors
4294 /colgroup/@span;nninteger:syntax error
4295
4296 #data
4297 <colgroup span="1" xmlns="http://www.w3.org/1999/xhtml"/>
4298 #errors
4299
4300 #data
4301 <colgroup span="0000000000001" xmlns="http://www.w3.org/1999/xhtml"/>
4302 #errors
4303
4304 #data
4305 <colgroup span="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
4306 #errors
4307
4308 #data
4309 <colgroup span="0" xmlns="http://www.w3.org/1999/xhtml"/>
4310 #errors
4311 /colgroup/@span;nninteger:out of range
4312
4313 #data
4314 <colgroup span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
4315 #errors
4316 /colgroup/@span;nninteger:syntax error
4317
4318 #data
4319 <colgroup span="+1" xmlns="http://www.w3.org/1999/xhtml"/>
4320 #errors
4321 /colgroup/@span;nninteger:syntax error
4322
4323 #data
4324 <colgroup span="111.1" xmlns="http://www.w3.org/1999/xhtml"/>
4325 #errors
4326 /colgroup/@span;nninteger:syntax error
4327
4328 #data
4329 <colgroup span="haergrghra" xmlns="http://www.w3.org/1999/xhtml"/>
4330 #errors
4331 /colgroup/@span;nninteger:syntax error
4332
4333 #data
4334 <col xmlns="http://www.w3.org/1999/xhtml"/>
4335 #errors
4336
4337 #data
4338 <col span="" xmlns="http://www.w3.org/1999/xhtml"/>
4339 #errors
4340 /col/@span;nninteger:syntax error
4341
4342 #data
4343 <col span="0" xmlns="http://www.w3.org/1999/xhtml"/>
4344 #errors
4345 /col/@span;nninteger:out of range
4346
4347 #data
4348 <col span="1" xmlns="http://www.w3.org/1999/xhtml"/>
4349 #errors
4350
4351 #data
4352 <col span="10" xmlns="http://www.w3.org/1999/xhtml"/>
4353 #errors
4354
4355 #data
4356 <col span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
4357 #errors
4358 /col/@span;nninteger:syntax error
4359
4360 #data
4361 <td colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
4362 #errors
4363 /td;no significant content;s
4364
4365 #data
4366 <td colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
4367 #errors
4368 /td/@colspan;nninteger:out of range
4369 /td;no significant content;s
4370
4371 #data
4372 <td rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
4373 #errors
4374 /td;no significant content;s
4375
4376 #data
4377 <td rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
4378 #errors
4379 /td/@rowspan;nninteger:out of range
4380 /td;no significant content;s
4381
4382 #data
4383 <th colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
4384 #errors
4385 /th;no significant content;s
4386
4387 #data
4388 <th colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
4389 #errors
4390 /th;no significant content;s
4391 /th/@colspan;nninteger:out of range
4392
4393 #data
4394 <th rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
4395 #errors
4396 /th;no significant content;s
4397
4398 #data
4399 <th rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
4400 #errors
4401 /th/@rowspan;nninteger:out of range
4402 /th;no significant content;s
4403
4404 #data
4405 <th scope="" xmlns="http://www.w3.org/1999/xhtml"/>
4406 #errors
4407 /th/@scope;enumerated:invalid
4408 /th;no significant content;s
4409
4410 #data
4411 <th scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
4412 #errors
4413 /th;no significant content;s
4414
4415 #data
4416 <th scope="col" xmlns="http://www.w3.org/1999/xhtml"/>
4417 #errors
4418 /th;no significant content;s
4419
4420 #data
4421 <th scope="Col" xmlns="http://www.w3.org/1999/xhtml"/>
4422 #errors
4423 /th;no significant content;s
4424
4425 #data
4426 <th scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/>
4427 #errors
4428 /th;no significant content;s
4429
4430 #data
4431 <th scope="colgroup" xmlns="http://www.w3.org/1999/xhtml"/>
4432 #errors
4433 /th;no significant content;s
4434
4435 #data
4436 <td scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
4437 #errors
4438 /td/@scope;attribute;unsupported
4439 /td;no significant content;s
4440
4441 #data
4442 <script xmlns="http://www.w3.org/1999/xhtml"/>
4443 #errors
4444 /script;script:text/javascript;unsupported
4445
4446 #data
4447 <script type="" xmlns="http://www.w3.org/1999/xhtml"/>
4448 #errors
4449 /script/@type;IMT:syntax error
4450 /script;script:text/javascript;unsupported
4451
4452 #data
4453 <script type="text/javascript" xmlns="http://www.w3.org/1999/xhtml"/>
4454 #errors
4455 /script/@type;IMT:obsolete subtype;w
4456 /script;script:text/javascript;unsupported
4457
4458 #data
4459 <script type="text/javascript;e4x=1" xmlns="http://www.w3.org/1999/xhtml"/>
4460 #errors
4461 /script/@type;IMT:obsolete subtype;w
4462 /script/@type;IMT:parameter not allowed:e4x;m
4463 /script;script:text/javascript;e4x=1;unsupported
4464
4465 #data
4466 <script type="text/JavaScript;E4X=1" xmlns="http://www.w3.org/1999/xhtml"/>
4467 #errors
4468 /script/@type;IMT:obsolete subtype;w
4469 /script/@type;IMT:parameter not allowed:e4x;m
4470 /script;script:text/JavaScript;E4X=1;unsupported
4471
4472 #data
4473 <script type="text/javascript;e4x=&quot;1&quot;"
4474 xmlns="http://www.w3.org/1999/xhtml"/>
4475 #errors
4476 /script/@type;IMT:obsolete subtype;w
4477 /script/@type;IMT:parameter not allowed:e4x;m
4478 /script;script:text/javascript;e4x="1";unsupported
4479
4480 #data
4481 <script type="text/javascript;e4x=&quot;\1&quot;"
4482 xmlns="http://www.w3.org/1999/xhtml"/>
4483 #errors
4484 /script/@type;IMT:obsolete subtype;w
4485 /script/@type;IMT:parameter not allowed:e4x;m
4486 /script;script:text/javascript;e4x="\1";unsupported
4487
4488 #data
4489 <script type="text/javascript; ~=a"
4490 xmlns="http://www.w3.org/1999/xhtml"/>
4491 #errors
4492 /script/@type;IMT:obsolete subtype;w
4493 /script/@type;IMT:attribute:syntax error:~;m
4494 /script/@type;IMT:parameter not allowed:~;m
4495 /script;script:text/javascript; ~=a;unsupported
4496
4497 #data
4498 <script type="text~/javascript"
4499 xmlns="http://www.w3.org/1999/xhtml"/>
4500 #errors
4501 /script/@type;IMT:type;unsupported
4502 /script/@type;IMT:unregistered type;w
4503 /script/@type;IMT:type:syntax error:text~;m
4504 /script;script:text~/javascript;unsupported
4505
4506 #data
4507 <script type="text/javascript~"
4508 xmlns="http://www.w3.org/1999/xhtml"/>
4509 #errors
4510 /script/@type;IMT:subtype;unsupported
4511 /script/@type;IMT:subtype:syntax error:javascript~;m
4512 /script;script:text/javascript~;unsupported
4513
4514 #data
4515 <script src="http://test/" type="text/javascript"
4516 xmlns="http://www.w3.org/1999/xhtml"/>
4517 #errors
4518 /script/@type;IMT:obsolete subtype;w
4519
4520 #data
4521 <script src="http://test/%" type="text/javascript"
4522 xmlns="http://www.w3.org/1999/xhtml"/>
4523 #errors
4524 /script/@src;URI::syntax error:iriref3987;m
4525 /script/@type;IMT:obsolete subtype;w
4526
4527 #data
4528 <script defer="" xmlns="http://www.w3.org/1999/xhtml"/>
4529 #errors
4530 /script;script:text/javascript;unsupported
4531
4532 #data
4533 <script src="http://test/" defer=""
4534 xmlns="http://www.w3.org/1999/xhtml"/>
4535 #errors
4536
4537 #data
4538 <script defer="defer" xmlns="http://www.w3.org/1999/xhtml"/>
4539 #errors
4540 /script;script:text/javascript;unsupported
4541
4542 #data
4543 <script src="http://test/" defer="defer"
4544 xmlns="http://www.w3.org/1999/xhtml"/>
4545 #errors
4546
4547 #data
4548 <script defer="true" xmlns="http://www.w3.org/1999/xhtml"/>
4549 #errors
4550 /script/@defer;boolean:invalid
4551 /script;script:text/javascript;unsupported
4552
4553 #data
4554 <script src="http://test/" defer="true"
4555 xmlns="http://www.w3.org/1999/xhtml"/>
4556 #errors
4557 /script/@defer;boolean:invalid
4558
4559 #data
4560 <script async="" xmlns="http://www.w3.org/1999/xhtml"/>
4561 #errors
4562 /script;script:text/javascript;unsupported
4563
4564 #data
4565 <script src="http://test/" async=""
4566 xmlns="http://www.w3.org/1999/xhtml"/>
4567 #errors
4568
4569 #data
4570 <script async="async" xmlns="http://www.w3.org/1999/xhtml"/>
4571 #errors
4572 /script;script:text/javascript;unsupported
4573
4574 #data
4575 <script src="http://test/" async="async"
4576 xmlns="http://www.w3.org/1999/xhtml"/>
4577 #errors
4578
4579 #data
4580 <script async="true" xmlns="http://www.w3.org/1999/xhtml"/>
4581 #errors
4582 /script/@async;boolean:invalid
4583 /script;script:text/javascript;unsupported
4584
4585 #data
4586 <script src="http://test/" async="true"
4587 xmlns="http://www.w3.org/1999/xhtml"/>
4588 #errors
4589 /script/@async;boolean:invalid
4590
4591 #data
4592 <script defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
4593 #errors
4594 /script;script:text/javascript;unsupported
4595
4596 #data
4597 <script defer="defer" async="async" xmlns="http://www.w3.org/1999/xhtml"/>
4598 #errors
4599 /script;script:text/javascript;unsupported
4600
4601 #data
4602 <script src="" defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
4603 #errors
4604
4605 #data
4606 <event-source xmlns="http://www.w3.org/1999/xhtml"/>
4607 #errors
4608
4609 #data
4610 <event-source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4611 #errors
4612
4613 #data
4614 <event-source src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
4615 #errors
4616 /event-source/@src;URI::syntax error:iriref3987;m
4617
4618 #data
4619 <details xmlns="http://www.w3.org/1999/xhtml"/>
4620 #errors
4621 /details;no significant content;s
4622 /details;element missing:legend;m
4623
4624 #data
4625 <details open="" xmlns="http://www.w3.org/1999/xhtml"/>
4626 #errors
4627 /details;no significant content;s
4628 /details;element missing:legend;m
4629
4630 #data
4631 <details open="open" xmlns="http://www.w3.org/1999/xhtml"/>
4632 #errors
4633 /details;no significant content;s
4634 /details;element missing:legend;m
4635
4636 #data
4637 <details open="OPEN" xmlns="http://www.w3.org/1999/xhtml"/>
4638 #errors
4639 /details;no significant content;s
4640 /details/@open;boolean:invalid
4641 /details;element missing:legend;m
4642
4643 #data
4644 <details open="true" xmlns="http://www.w3.org/1999/xhtml"/>
4645 #errors
4646 /details/@open;boolean:invalid
4647 /details;no significant content;s
4648 /details;element missing:legend;m
4649
4650 #data
4651 <datagrid xmlns="http://www.w3.org/1999/xhtml"/>
4652 #errors
4653 /datagrid;no significant content;s
4654
4655 #data
4656 <datagrid disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
4657 #errors
4658 /datagrid;no significant content;s
4659
4660 #data
4661 <datagrid disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
4662 #errors
4663 /datagrid;no significant content;s
4664
4665 #data
4666 <datagrid disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
4667 #errors
4668 /datagrid/@disabled;boolean:invalid
4669 /datagrid;no significant content;s
4670
4671 #data
4672 <datagrid multiple="" xmlns="http://www.w3.org/1999/xhtml"/>
4673 #errors
4674 /datagrid;no significant content;s
4675
4676 #data
4677 <datagrid multiple="multiple" xmlns="http://www.w3.org/1999/xhtml"/>
4678 #errors
4679 /datagrid;no significant content;s
4680
4681 #data
4682 <datagrid multiple="true" xmlns="http://www.w3.org/1999/xhtml"/>
4683 #errors
4684 /datagrid/@multiple;boolean:invalid
4685 /datagrid;no significant content;s
4686
4687 #data
4688 <command xmlns="http://www.w3.org/1999/xhtml"/>
4689 #errors
4690
4691 #data
4692 <command default="" xmlns="http://www.w3.org/1999/xhtml"/>
4693 #errors
4694
4695 #data
4696 <command default="default" xmlns="http://www.w3.org/1999/xhtml"/>
4697 #errors
4698
4699 #data
4700 <command default="true" xmlns="http://www.w3.org/1999/xhtml"/>
4701 #errors
4702 /command/@default;boolean:invalid
4703
4704 #data
4705 <command checked="" xmlns="http://www.w3.org/1999/xhtml"/>
4706 #errors
4707
4708 #data
4709 <command checked="checked" xmlns="http://www.w3.org/1999/xhtml"/>
4710 #errors
4711
4712 #data
4713 <command checked="true" xmlns="http://www.w3.org/1999/xhtml"/>
4714 #errors
4715 /command/@checked;boolean:invalid
4716
4717 #data
4718 <command hidden="" xmlns="http://www.w3.org/1999/xhtml"/>
4719 #errors
4720
4721 #data
4722 <command hidden="hidden" xmlns="http://www.w3.org/1999/xhtml"/>
4723 #errors
4724
4725 #data
4726 <command hidden="true" xmlns="http://www.w3.org/1999/xhtml"/>
4727 #errors
4728 /command/@hidden;boolean:invalid
4729
4730 #data
4731 <command disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
4732 #errors
4733
4734 #data
4735 <command disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
4736 #errors
4737
4738 #data
4739 <command disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
4740 #errors
4741 /command/@disabled;boolean:invalid
4742
4743 #data
4744 <command label="" xmlns="http://www.w3.org/1999/xhtml"/>
4745 #errors
4746
4747 #data
4748 <command label=" " xmlns="http://www.w3.org/1999/xhtml"/>
4749 #errors
4750
4751 #data
4752 <command label="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
4753 #errors
4754
4755 #data
4756 <command label="label" xmlns="http://www.w3.org/1999/xhtml"/>
4757 #errors
4758
4759 #data
4760 <command label="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
4761 #errors
4762
4763 #data
4764 <command label="&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
4765 #errors
4766
4767 #data
4768 <command title="" xmlns="http://www.w3.org/1999/xhtml"/>
4769 #errors
4770
4771 #data
4772 <command title="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
4773 #errors
4774
4775 #data
4776 <command radiogroup="" xmlns="http://www.w3.org/1999/xhtml"/>
4777 #errors
4778
4779 #data
4780 <command radiogroup="aa" xmlns="http://www.w3.org/1999/xhtml"/>
4781 #errors
4782
4783 #data
4784 <command type="" xmlns="http://www.w3.org/1999/xhtml"/>
4785 #errors
4786 /command/@type;attribute value not allowed
4787
4788 #data
4789 <command type=" " xmlns="http://www.w3.org/1999/xhtml"/>
4790 #errors
4791 /command/@type;attribute value not allowed
4792
4793 #data
4794 <command type="default" xmlns="http://www.w3.org/1999/xhtml"/>
4795 #errors
4796 /command/@type;attribute value not allowed
4797
4798 #data
4799 <command type="command" xmlns="http://www.w3.org/1999/xhtml"/>
4800 #errors
4801
4802 #data
4803 <command type="Command" xmlns="http://www.w3.org/1999/xhtml"/>
4804 #errors
4805 /command/@type;attribute value not allowed
4806
4807 #data
4808 <command type=" command" xmlns="http://www.w3.org/1999/xhtml"/>
4809 #errors
4810 /command/@type;attribute value not allowed
4811
4812 #data
4813 <command type="command " xmlns="http://www.w3.org/1999/xhtml"/>
4814 #errors
4815 /command/@type;attribute value not allowed
4816
4817 #data
4818 <command type="commandline" xmlns="http://www.w3.org/1999/xhtml"/>
4819 #errors
4820 /command/@type;attribute value not allowed
4821
4822 #data
4823 <command type="checkbox" xmlns="http://www.w3.org/1999/xhtml"/>
4824 #errors
4825
4826 #data
4827 <command type="check" xmlns="http://www.w3.org/1999/xhtml"/>
4828 #errors
4829 /command/@type;attribute value not allowed
4830
4831 #data
4832 <command type="radio" xmlns="http://www.w3.org/1999/xhtml"/>
4833 #errors
4834
4835 #data
4836 <command type="radiobutton" xmlns="http://www.w3.org/1999/xhtml"/>
4837 #errors
4838 /command/@type;attribute value not allowed
4839
4840 #data
4841 <command icon="" xmlns="http://www.w3.org/1999/xhtml"/>
4842 #errors
4843
4844 #data
4845 <command icon="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4846 #errors
4847
4848 #data
4849 <command icon="http://test/#test" xmlns="http://www.w3.org/1999/xhtml"/>
4850 #errors
4851
4852 #data
4853 <command icon="test" xmlns="http://www.w3.org/1999/xhtml"/>
4854 #errors
4855
4856 #data
4857 <command icon="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4858 #errors
4859 /command/@icon;URI::syntax error:iriref3987;m
4860
4861 #data
4862 <command icon="a b" xmlns="http://www.w3.org/1999/xhtml"/>
4863 #errors
4864 /command/@icon;URI::syntax error:iriref3987;m
4865
4866 #data
4867 <menu xmlns="http://www.w3.org/1999/xhtml"/>
4868 #errors
4869 /menu;no significant content;s
4870
4871 #data
4872 <menu label="" xmlns="http://www.w3.org/1999/xhtml"/>
4873 #errors
4874 /menu;no significant content;s
4875
4876 #data
4877 <menu label=" " xmlns="http://www.w3.org/1999/xhtml"/>
4878 #errors
4879 /menu;no significant content;s
4880
4881 #data
4882 <menu label="aa" xmlns="http://www.w3.org/1999/xhtml"/>
4883 #errors
4884 /menu;no significant content;s
4885
4886 #data
4887 <menu type="" xmlns="http://www.w3.org/1999/xhtml"/>
4888 #errors
4889 /menu/@type;enumerated:invalid
4890 /menu;no significant content;s
4891
4892 #data
4893 <menu type="type" xmlns="http://www.w3.org/1999/xhtml"/>
4894 #errors
4895 /menu;no significant content;s
4896 /menu/@type;enumerated:invalid
4897
4898 #data
4899 <menu type="toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
4900 #errors
4901 /menu;no significant content;s
4902
4903 #data
4904 <menu type="Toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
4905 #errors
4906 /menu;no significant content;s
4907
4908 #data
4909 <menu type=" toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
4910 #errors
4911 /menu/@type;enumerated:invalid
4912 /menu;no significant content;s
4913
4914 #data
4915 <menu type="context" xmlns="http://www.w3.org/1999/xhtml"/>
4916 #errors
4917 /menu;no significant content;s
4918
4919 #data
4920 <menu type="conteXt" xmlns="http://www.w3.org/1999/xhtml"/>
4921 #errors
4922 /menu;no significant content;s
4923
4924 #data
4925 <menu type="context " xmlns="http://www.w3.org/1999/xhtml"/>
4926 #errors
4927 /menu/@type;enumerated:invalid
4928 /menu;no significant content;s
4929
4930 #data
4931 <menu autosubmit="" xmlns="http://www.w3.org/1999/xhtml"/>
4932 #errors
4933 /menu;no significant content;s
4934
4935 #data
4936 <menu autosubmit="autosubmit" xmlns="http://www.w3.org/1999/xhtml"/>
4937 #errors
4938 /menu;no significant content;s
4939
4940 #data
4941 <menu autosubmit="yes" xmlns="http://www.w3.org/1999/xhtml"/>
4942 #errors
4943 /menu/@autosubmit;boolean:invalid
4944 /menu;no significant content;s
4945
4946 #data
4947 <menu autosubmit="AutoSubmit" xmlns="http://www.w3.org/1999/xhtml"/>
4948 #errors
4949 /menu/@autosubmit;boolean:invalid
4950 /menu;no significant content;s
4951
4952 #data
4953 <p contextmenu="" xmlns="http://www.w3.org/1999/xhtml"/>
4954 #errors
4955 /p/@contextmenu;no referenced menu
4956 /p;no significant content;s
4957
4958 #data
4959 <p contextmenu="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
4960 #errors
4961 /p/@contextmenu;no referenced menu
4962 /p;no significant content;s
4963
4964 #data
4965 <div xmlns="http://www.w3.org/1999/xhtml">
4966 <p contextmenu=""/><menu id=""/>
4967 </div>
4968 #errors
4969 /div/menu/@id;empty attribute value
4970 /div;no significant content;s
4971 /div/p;no significant content;s
4972 /div/menu;no significant content;s
4973
4974 #data
4975 <div xmlns="http://www.w3.org/1999/xhtml">
4976 <p contextmenu="a"/><menu id="a"/>
4977 </div>
4978 #errors
4979 /div;no significant content;s
4980 /div/p;no significant content;s
4981 /div/menu;no significant content;s
4982
4983 #data
4984 <div xmlns="http://www.w3.org/1999/xhtml">
4985 <p contextmenu="a"/><menu id="A"/>
4986 </div>
4987 #errors
4988 /div/p/@contextmenu;no referenced menu
4989 /div;no significant content;s
4990 /div/p;no significant content;s
4991 /div/menu;no significant content;s
4992
4993 #data
4994 <div xmlns="http://www.w3.org/1999/xhtml">
4995 <menu id="a"/><p contextmenu="a"/>
4996 </div>
4997 #errors
4998 /div;no significant content;s
4999 /div/menu;no significant content;s
5000 /div/p;no significant content;s
5001
5002 #data
5003 <div contextmenu="a" xmlns="http://www.w3.org/1999/xhtml">
5004 <menu id="a"/>
5005 </div>
5006 #errors
5007 /div;no significant content;s
5008 /div/menu;no significant content;s
5009
5010 #data
5011 <menu id="a" xmlns="http://www.w3.org/1999/xhtml">
5012 <span contextmenu="a"/>
5013 </menu>
5014 #errors
5015 /menu;no significant content;s
5016 /menu/span;no significant content;s
5017
5018 #data
5019 <div xmlns="http://www.w3.org/1999/xhtml">
5020 <p contextmenu="a a"/><menu id="a a"/>
5021 </div>
5022 #errors
5023 /div/menu/@id;space in ID
5024 /div;no significant content;s
5025 /div/p;no significant content;s
5026 /div/menu;no significant content;s
5027
5028 #data
5029 <div xmlns="http://www.w3.org/1999/xhtml">
5030 <p contextmenu="a a"/><menu id="a"/>
5031 </div>
5032 #errors
5033 /div/p/@contextmenu;no referenced menu
5034 /div;no significant content;s
5035 /div/p;no significant content;s
5036 /div/menu;no significant content;s
5037
5038 #data
5039 <div xmlns="http://www.w3.org/1999/xhtml">
5040 <p contextmenu="a a"/><menu id="a a"/>
5041 </div>
5042 #errors
5043 /div/p/@contextmenu;no referenced menu
5044 /div/menu/@id;space in ID
5045 /div;no significant content;s
5046 /div/p;no significant content;s
5047 /div/menu;no significant content;s
5048
5049 #data
5050 <div xmlns="http://www.w3.org/1999/xhtml">
5051 <p contextmenu="a"/><ul id="a"/>
5052 </div>
5053 #errors
5054 /div/p/@contextmenu;no referenced menu
5055 /div;no significant content;s
5056 /div/p;no significant content;s
5057
5058 #data
5059 <rule xmlns="http://www.w3.org/1999/xhtml" mode=""/>
5060 #errors
5061
5062 #data
5063 <rule xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
5064 #errors
5065
5066 #data
5067 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a"/>
5068 #errors
5069
5070 #data
5071 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
5072 #errors
5073
5074 #data
5075 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
5076 #errors
5077
5078 #data
5079 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a A"/>
5080 #errors
5081
5082 #data
5083 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a a"/>
5084 #errors
5085 /rule/@mode;duplicate token:a
5086
5087 #data
5088 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
5089 #errors
5090 /rule/@mode;duplicate token:a
5091
5092 #data
5093 <rule xmlns="http://www.w3.org/1999/xhtml" condition=""/>
5094 #errors
5095 /rule/@condition;selectors:no sss;m
5096
5097 #data
5098 <rule xmlns="http://www.w3.org/1999/xhtml" condition=" "/>
5099 #errors
5100 /rule/@condition;selectors:no sss;m
5101
5102 #data
5103 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a"/>
5104 #errors
5105
5106 #data
5107 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a b "/>
5108 #errors
5109
5110 #data
5111 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a, b"/>
5112 #errors
5113
5114 #data
5115 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a|b"/>
5116 #errors
5117 /rule/@condition;selectors:namespace prefix:not declared;m
5118
5119 #data
5120 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a["/>
5121 #errors
5122 /rule/@condition;selectors:no attr name;m
5123
5124 #data
5125 <rule xmlns="http://www.w3.org/1999/xhtml" condition="*/**/*"/>
5126 #errors
5127 /rule/@condition;selectors:no combinator;m
5128
5129 #data
5130 <nest xmlns="http://www.w3.org/1999/xhtml" mode=""/>
5131 #errors
5132 /nest/@mode;mode:syntax error
5133
5134 #data
5135 <nest xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
5136 #errors
5137 /nest/@mode;mode:syntax error
5138
5139 #data
5140 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a"/>
5141 #errors
5142
5143 #data
5144 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a "/>
5145 #errors
5146 /nest/@mode;mode:syntax error
5147
5148 #data
5149 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
5150 #errors
5151 /nest/@mode;mode:syntax error
5152
5153 #data
5154 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
5155 #errors
5156 /nest/@mode;mode:syntax error
5157
5158 #data
5159 <nest xmlns="http://www.w3.org/1999/xhtml" mode="&#x3000;"/>
5160 #errors
5161
5162 #data
5163 <nest xmlns="http://www.w3.org/1999/xhtml" filter=""/>
5164 #errors
5165 /nest/@filter;selectors:no sss;m
5166
5167 #data
5168 <nest xmlns="http://www.w3.org/1999/xhtml" filter=" "/>
5169 #errors
5170 /nest/@filter;selectors:no sss;m
5171
5172 #data
5173 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a b"/>
5174 #errors
5175
5176 #data
5177 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a + b"/>
5178 #errors
5179
5180 #data
5181 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a.b#c[d]"/>
5182 #errors
5183
5184 #data
5185 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a|b"/>
5186 #errors
5187 /nest/@filter;selectors:namespace prefix:not declared;m
5188
5189 #data
5190 <div align="center" xmlns="http://www.w3.org/1999/xhtml"/>
5191 #errors
5192 /div/@align;attribute;unsupported
5193 /div;no significant content;s
5194

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24