/[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.39 - (hide annotations) (download)
Sat Feb 23 14:37:10 2008 UTC (17 years, 4 months ago) by wakaba
Branch: MAIN
Changes since 1.38: +648 -6 lines
++ whatpm/t/ChangeLog	23 Feb 2008 14:37:03 -0000
	* content-model-1.dat: Some test results are fixed.
	New tests for |video| and |audio| are added.

2008-02-23  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ChangeLog	23 Feb 2008 14:35:33 -0000
	* ContentChecker.pm (check_element): Support for |video|
	and |audio| as semi-transparent elements.

2008-02-23  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ContentChecker/ChangeLog	23 Feb 2008 14:36:23 -0000
	* HTML.pm (object check_end): Don't check significant content
	if the element is used as a transparent element.
	(video check): Reimplemented.

2008-02-23  Wakaba  <wakaba@suika.fam.cx>

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24