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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.66 - (show annotations) (download)
Sun Jun 8 13:29:58 2008 UTC (17 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.65: +40 -5 lines
++ whatpm/t/ChangeLog	8 Jun 2008 13:04:13 -0000
	* content-model-1.dat, content-model-2.dat: Test data are
	updated and added for <map name=""> and <map id=""> (HTML5
	revisions 1722 and 1728).

2008-06-08  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ContentChecker/ChangeLog	8 Jun 2008 13:04:07 -0000
	* HTML.pm: Support for |<map name="">| (HTML5 revisions
	1722 and 1728).

2008-06-08  Wakaba  <wakaba@suika.fam.cx>

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24