/[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.69 - (hide annotations) (download)
Sun Aug 31 06:57:32 2008 UTC (16 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.68: +95 -0 lines
++ whatpm/t/ChangeLog	31 Aug 2008 06:54:57 -0000
	* content-model-1.dat, content-model-2.dat: Test data
	for the |bb| element are added (cf. HTML5 revision 1894).

	* content-model-2.dat: |irrelevant| renamed as |hidden| (HTML5
	revision 2119).

	* content-model-7.dat: New test file.

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

++ whatpm/Whatpm/ContentChecker/ChangeLog	31 Aug 2008 06:55:32 -0000
	* HTML.pm: Support for the |bb| element (HTML5 revision 1894).
	|irrelevant| renamed as |hidden| (HTML5 revision 2119).

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

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24