/[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.40 - (hide annotations) (download)
Sat Feb 23 15:24:50 2008 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
Changes since 1.39: +79 -2 lines
++ whatpm/t/ChangeLog	23 Feb 2008 15:24:46 -0000
	* content-model-1.dat: Some test results are updated.
	New tests for |details| are added.

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

++ whatpm/Whatpm/ChangeLog	23 Feb 2008 15:22:12 -0000
	* ContentChecker.pm (check_element): In-element state
	was not properly managed for transparent cases.

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

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24