/[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.54 - (show annotations) (download)
Sat Mar 22 03:07:07 2008 UTC (18 years, 5 months ago) by wakaba
Branch: MAIN
Changes since 1.53: +0 -1 lines
++ whatpm/t/ChangeLog	22 Mar 2008 02:51:31 -0000
2008-03-22  Wakaba  <wakaba@suika.fam.cx>

	* content-model-1.dat: Now we support RDF.

	* content-model-2.dat: Test data on |@accesskey| attribute
	are added.

++ whatpm/Whatpm/ChangeLog	22 Mar 2008 03:05:10 -0000
2008-03-22  Wakaba  <wakaba@suika.fam.cx>

	* ContentChecker.pm: |fact_level| is now treated
	as same as |must_level|, i.e. level = |m|.
	(check_element): Make list of URIs in the DOM.

++ whatpm/Whatpm/ContentChecker/ChangeLog	22 Mar 2008 03:06:11 -0000
2008-03-22  Wakaba  <wakaba@suika.fam.cx>

	* HTML.pm: Add URIs to the list of URIs to be returned
	by the checker method. |accesskey| attribute is implemented.

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24