/[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.67 - (hide annotations) (download)
Sat Aug 30 10:26:39 2008 UTC (16 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.66: +253 -250 lines
++ whatpm/t/ChangeLog	30 Aug 2008 10:22:30 -0000
	* ContentChecker.t: Updated for latest version of the
	Whatpm::ContentChecker module.

	* content-model-1.dat, content-model-2.dat, content-model-3.dat,
	content-model-4.dat, content-model-6.dat, content-model-atom-1.dat,
	content-model-atom-2.dat, content-model-atom-threading-1.dat,
	table-1.dat: Results updated.

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

++ whatpm/Whatpm/ChangeLog	30 Aug 2008 10:24:24 -0000
	* ContentChecker.pm: Error level definition for |xml_id_error|
	was missing.

	* URIChecker.pm: The end of the URL should be marked as the
	error location for an empty path error.  The position
	between the userinfo and the port components should be
	marked as the error location for an empty host error.

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

++ whatpm/Whatpm/ContentChecker/ChangeLog	30 Aug 2008 10:26:28 -0000
2008-08-30  Wakaba  <wakaba@suika.fam.cx>

	* Atom.pm: s/element missing/child element missing/ for
	consistency.

	* HTML.pm: Typos fixed.
	(pre): "No significant content" error was unintentionally
	disabled.  s/element missing/child element missing/ for
	consistency.

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 wakaba 1.67 /div/p/@lang;in XML:lang;m
3737     /div/blockquote/@lang;in XML:lang;m
3738     /div/p/@lang;in XML:lang;m
3739 wakaba 1.35
3740     #data
3741     <!-- From HTML5 Spec -->
3742     <p xmlns="http://www.w3.org/1999/xhtml">I also have some <mark>kitten</mark>s who are visiting me
3743     these days. They're really cute. I think they like my garden! Maybe I
3744     should adopt a <mark>kitten</mark>.</p>
3745     #errors
3746    
3747     #data
3748     <div xmlns="http://www.w3.org/1999/xhtml">
3749     <!-- From HTML5 Spec -->
3750     <p>The highlighted part below is where the error lies:</p>
3751     <pre><code>var i: Integer;
3752     begin
3753     i := <mark>1.1</mark>;
3754     end.</code></pre>
3755     </div>
3756     #errors
3757    
3758     #data
3759     <article xmlns="http://www.w3.org/1999/xhtml">
3760     <!-- From HTML5 Spec -->
3761     <style>
3762     blockquote mark, q mark {
3763     font: inherit; font-style: italic;
3764     text-decoration: none;
3765     background: transparent; color: inherit;
3766     }
3767     .bubble em {
3768     font: inherit; font-size: larger;
3769     text-decoration: underline;
3770     }
3771     </style>
3772     <h1>She knew</h1>
3773     <p>Did you notice the subtle joke in the joke on panel 4?</p>
3774     <blockquote>
3775     <p class="bubble">I didn't <em>want</em> to believe. <mark>Of course
3776     on some level I realized it was a known-plaintext attack.</mark> But I
3777     couldn't admit it until I saw for myself.</p>
3778     </blockquote>
3779     <p>(Emphasis mine.) I thought that was great. It's so pedantic, yet it
3780     explains everything neatly.</p>
3781     </article>
3782     #errors
3783 wakaba 1.55 /article/style;element not allowed:flow style;m
3784 wakaba 1.53 /article/style;SUBDOC
3785 wakaba 1.35
3786     #data
3787     <div xmlns="http://www.w3.org/1999/xhtml">
3788     <!-- From HTML5 Spec -->
3789     <h3>Wormhole Physics Introduction</h3>
3790    
3791     <p><mark>A wormhole in normal conditions can be held open for a
3792     maximum of just under 39 minutes.</mark> Conditions that can increase
3793     the time include a powerful energy source coupled to one or both of
3794     the gates connecting the wormhole, and a large gravity well (such as a
3795     black hole).</p>
3796    
3797     <p><mark>Momentum is preserved across the wormhole. Electromagnetic
3798     radiation can travel in both directions through a wormhole,
3799     but matter cannot.</mark></p>
3800    
3801     <p>When a wormhole is created, a vortex normally forms.
3802     <strong>Warning: The vortex caused by the wormhole opening will
3803     annihilate anything in its path.</strong> Vortexes can be avoided when
3804     using sufficently advanced dialing technology.</p>
3805    
3806     <p><mark>An obstruction in a gate will prevent it from accepting a
3807     wormhole connection.</mark></p>
3808     </div>
3809 wakaba 1.4 #errors
3810    
3811     #data
3812     <p xmlns="http://www.w3.org/1999/xhtml">
3813     <dfn></dfn>
3814     </p>
3815     #errors
3816 wakaba 1.25 /p;no significant content;s
3817     /p/dfn;no significant content;s
3818 wakaba 1.4
3819     #data
3820     <p xmlns="http://www.w3.org/1999/xhtml">
3821     <dfn> </dfn>
3822     </p>
3823     #errors
3824 wakaba 1.25 /p;no significant content;s
3825     /p/dfn;no significant content;s
3826 wakaba 1.4
3827     #data
3828     <p xmlns="http://www.w3.org/1999/xhtml">
3829     <dfn>XXX</dfn>
3830     </p>
3831     #errors
3832    
3833     #data
3834     <p xmlns="http://www.w3.org/1999/xhtml">
3835     <dfn><em>XXX</em></dfn>
3836     </p>
3837     #errors
3838    
3839     #data
3840     <p xmlns="http://www.w3.org/1999/xhtml">
3841     <dfn><em><blockquote/></em></dfn>
3842     </p>
3843     #errors
3844 wakaba 1.27 /p/dfn/em/blockquote;element not allowed:phrasing;m
3845 wakaba 1.25 /p;no significant content;s
3846     /p/dfn;no significant content;s
3847     /p/dfn/em;no significant content;s
3848     /p/dfn/em/blockquote;no significant content;s
3849 wakaba 1.4
3850     #data
3851     <p xmlns="http://www.w3.org/1999/xhtml">
3852     <dfn><blockquote/></dfn>
3853     </p>
3854     #errors
3855 wakaba 1.27 /p/dfn/blockquote;element not allowed:phrasing;m
3856 wakaba 1.25 /p;no significant content;s
3857     /p/dfn;no significant content;s
3858     /p/dfn/blockquote;no significant content;s
3859 wakaba 1.4
3860     #data
3861     <p xmlns="http://www.w3.org/1999/xhtml">
3862     <dfn><h1/></dfn>
3863     </p>
3864     #errors
3865 wakaba 1.27 /p/dfn/h1;element not allowed:phrasing;m
3866 wakaba 1.25 /p;no significant content;s
3867     /p/dfn;no significant content;s
3868     /p/dfn/h1;no significant content;s
3869 wakaba 1.4
3870     #data
3871     <p xmlns="http://www.w3.org/1999/xhtml">
3872     <dfn><dfn>XXX</dfn></dfn>
3873     </p>
3874     #errors
3875 wakaba 1.27 /p/dfn/dfn;element not allowed:minus;m
3876 wakaba 1.4
3877     #data
3878     <p xmlns="http://www.w3.org/1999/xhtml">
3879     <dfn></dfn><dfn/>
3880     </p>
3881     #errors
3882 wakaba 1.25 /p;no significant content;s
3883     /p/dfn;no significant content;s
3884     /p/dfn;no significant content;s
3885 wakaba 1.4
3886     #data
3887     <p xmlns="http://www.w3.org/1999/xhtml">
3888     <dfn><em><dfn/></em></dfn>
3889     </p>
3890     #errors
3891 wakaba 1.27 /p/dfn/em/dfn;element not allowed:minus;m
3892 wakaba 1.25 /p;no significant content;s
3893     /p/dfn;no significant content;s
3894     /p/dfn/em;no significant content;s
3895     /p/dfn/em/dfn;no significant content;s
3896 wakaba 1.4
3897 wakaba 1.65 #data
3898     <ruby xmlns="http://www.w3.org/1999/xhtml"></ruby>
3899     #errors
3900     /ruby;no significant content;s
3901 wakaba 1.67 /ruby;element missing;rt;m
3902 wakaba 1.65
3903     #data
3904     <ruby xmlns="http://www.w3.org/1999/xhtml"> </ruby>
3905     #errors
3906     /ruby;no significant content;s
3907 wakaba 1.67 /ruby;element missing;rt;m
3908 wakaba 1.65
3909     #data
3910     <ruby xmlns="http://www.w3.org/1999/xhtml">xxxx</ruby>
3911     #errors
3912 wakaba 1.67 /ruby;element missing;rt;m
3913 wakaba 1.65
3914     #data
3915     <ruby xmlns="http://www.w3.org/1999/xhtml">xxxx<rt>yyyy</rt></ruby>
3916     #errors
3917    
3918     #data
3919     <ruby xmlns="http://www.w3.org/1999/xhtml">xxxx<rt>yyyy</rt> </ruby>
3920     #errors
3921    
3922     #data
3923     <ruby xmlns="http://www.w3.org/1999/xhtml">xxxx<rt>yyyy</rt>zzzz</ruby>
3924     #errors
3925 wakaba 1.67 /ruby;element missing;rt;m
3926 wakaba 1.65
3927     #data
3928     <ruby xmlns="http://www.w3.org/1999/xhtml">xx<rt>yy</rt>zz<rt>aa</rt></ruby>
3929     #errors
3930    
3931     #data
3932     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rt>y</rt>z<rt>w</rt>a</ruby>
3933     #errors
3934 wakaba 1.67 /ruby;element missing;rt;m
3935 wakaba 1.65
3936     #data
3937     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rt>y</rt> a<rt> b </rt>c<rt>d</rt></ruby>
3938     #errors
3939    
3940     #data
3941     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rt></rt></ruby>
3942     #errors
3943     /ruby/rt;no significant content;s
3944    
3945     #data
3946     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rt>y</rt>z<rt></rt></ruby>
3947     #errors
3948     /ruby/rt;no significant content;s
3949    
3950     #data
3951     <ruby xmlns="http://www.w3.org/1999/xhtml"><rt>y</rt></ruby>
3952     #errors
3953     /ruby/rt;no significant content before;s
3954    
3955     #data
3956     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rt>y</rt><rt>z</rt></ruby>
3957     #errors
3958     /ruby/rt;no significant content before;s
3959    
3960     #data
3961     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)</rp></ruby>
3962     #errors
3963    
3964     #data
3965     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt></ruby>
3966     #errors
3967 wakaba 1.67 /ruby;element missing;rp;m
3968 wakaba 1.65
3969     #data
3970     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp></ruby>
3971     #errors
3972 wakaba 1.67 /ruby;element missing;rt;m
3973     /ruby;element missing;rp;m
3974 wakaba 1.65
3975     #data
3976     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)</rp>X</ruby>
3977     #errors
3978 wakaba 1.67 /ruby;element missing;rt;m
3979 wakaba 1.65
3980     #data
3981     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)</rp>X<rt>Y</rt></ruby>
3982     #errors
3983    
3984     #data
3985     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)</rp>X<rp>(</rp></ruby>
3986     #errors
3987 wakaba 1.67 /ruby;element missing;rt;m
3988     /ruby;element missing;rp;m
3989 wakaba 1.65
3990     #data
3991     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)</rp>X<rp>(</rp><rt>Y</rt></ruby>
3992     #errors
3993 wakaba 1.67 /ruby;element missing;rp;m
3994 wakaba 1.65
3995     #data
3996     <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>
3997     #errors
3998    
3999     #data
4000     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rp>)</rp></ruby>
4001     #errors
4002 wakaba 1.67 /ruby/rp;ps element missing;rt;m
4003 wakaba 1.65
4004     #data
4005     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rt>z</rt><rp>)</rp></ruby>
4006     #errors
4007 wakaba 1.67 /ruby/rt;ps element missing;rp;m
4008 wakaba 1.65 /ruby/rt;no significant content before;s
4009     /ruby/rp;no significant content before;s
4010     /ruby/rp;rp:syntax error;m
4011 wakaba 1.67 /ruby;element missing;rt;m
4012     /ruby;element missing;rp;m
4013 wakaba 1.65
4014     #data
4015     <ruby xmlns="http://www.w3.org/1999/xhtml"><rp>(</rp><rt>y</rt><rp>)</rp></ruby>
4016     #errors
4017     /ruby/rp;no significant content before;s
4018    
4019     #data
4020     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>(</rp></ruby>
4021     #errors
4022     /ruby/rp;rp:syntax error;m
4023    
4024     #data
4025     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp></rp></ruby>
4026     #errors
4027     /ruby/rp;rp:syntax error;m
4028    
4029     #data
4030     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>))</rp></ruby>
4031     #errors
4032     /ruby/rp;rp:syntax error;m
4033    
4034     #data
4035     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>) </rp></ruby>
4036     #errors
4037     /ruby/rp;rp:syntax error;m
4038    
4039     #data
4040     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)<!----> </rp></ruby>
4041     #errors
4042    
4043     #data
4044     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)<!---->)</rp></ruby>
4045     #errors
4046     /ruby/rp;rp:syntax error;m
4047    
4048     #data
4049     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt></rt><rp>)</rp></ruby>
4050     #errors
4051     /ruby/rt;no significant content;s
4052    
4053     #data
4054     <ruby xmlns="http://www.w3.org/1999/xhtml"><rp>(</rp><rt></rt><rp>)</rp></ruby>
4055     #errors
4056     /ruby/rp;no significant content before;s
4057     /ruby/rt;no significant content;s
4058    
4059     #data
4060     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp></rp><rt>y</rt><rp>)</rp></ruby>
4061     #errors
4062     /ruby/rp;rp:syntax error;m
4063    
4064     #data
4065     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>( </rp><rt>y</rt><rp>)</rp></ruby>
4066     #errors
4067     /ruby/rp;rp:syntax error;m
4068    
4069     #data
4070     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp> <!-- -->(</rp><rt>y</rt><rp>)</rp></ruby>
4071     #errors
4072    
4073     #data
4074     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>[(</rp><rt>y</rt><rp>)</rp></ruby>
4075     #errors
4076     /ruby/rp;rp:syntax error;m
4077    
4078     #data
4079     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>)</rp><rt>y</rt><rp>)</rp></ruby>
4080     #errors
4081     /ruby/rp;rp:syntax error;m
4082    
4083     #data
4084     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>[</rp><rt>y</rt><rp>]</rp></ruby>
4085     #errors
4086    
4087     #data
4088     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>[</rp><rt><p>y</p></rt><rp>]</rp></ruby>
4089     #errors
4090     /ruby/rt/p;element not allowed:phrasing;m
4091    
4092     #data
4093     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp>)</rp></ruby>
4094     #errors
4095    
4096     #data
4097     <ruby xmlns="http://www.w3.org/1999/xhtml"><span>x</span><rp>(</rp><rt>y</rt><rp>)</rp></ruby>
4098     #errors
4099    
4100     #data
4101     <ruby xmlns="http://www.w3.org/1999/xhtml"><rb>x</rb><rp>(</rp><rt>y</rt><rp>)</rp></ruby>
4102     #errors
4103     /ruby/rb;element not defined;m
4104     /ruby/rb;element not allowed:ruby base;m
4105    
4106     #data
4107     <ruby xmlns="http://www.w3.org/1999/xhtml"><p>x</p><rp>(</rp><rt>y</rt><rp>)</rp></ruby>
4108     #errors
4109     /ruby/p;element not allowed:ruby base;m
4110    
4111     #data
4112     <ruby xmlns="http://www.w3.org/1999/xhtml"><rb></rb>x<rp>(</rp><rt>y</rt><rp>)</rp></ruby>
4113     #errors
4114     /ruby/rb;element not defined;m
4115     /ruby/rb;element not allowed:ruby base;m
4116    
4117     #data
4118     <ruby xmlns="http://www.w3.org/1999/xhtml"><rbc><rb>x</rb><rb>c</rb></rbc><rtc/><rt>y</rt><rt>d</rt></ruby>
4119     #errors
4120     /ruby/rbc;element not defined;m
4121     /ruby/rbc;element not allowed:ruby base;m
4122     /ruby/rbc/rb;element not defined;m
4123     /ruby/rbc/rb;element not defined;m
4124     /ruby/rtc;element not defined;m
4125     /ruby/rtc;element not allowed:ruby base;m
4126     /ruby/rt;no significant content before;s
4127    
4128     #data
4129     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp><span>(</span></rp><rt>y</rt><rp>)</rp></ruby>
4130     #errors
4131 wakaba 1.67 /ruby/rp/span;element not allowed:text;m
4132 wakaba 1.65 /ruby/rp;rp:syntax error;m
4133    
4134     #data
4135     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt><span>y</span></rt><rp>)</rp></ruby>
4136     #errors
4137    
4138     #data
4139     <ruby xmlns="http://www.w3.org/1999/xhtml">x<rp>(</rp><rt>y</rt><rp><span>)</span></rp></ruby>
4140     #errors
4141 wakaba 1.67 /ruby/rp/span;element not allowed:text;m
4142 wakaba 1.65 /ruby/rp;rp:syntax error;m
4143    
4144     #data
4145     <p xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>(</rp><rt>y</rt><rp>)</rp></ruby></p>
4146     #errors
4147    
4148     #data
4149     <p xmlns="http://www.w3.org/1999/xhtml"><ruby><rp>(</rp><rt>y</rt><rp>)</rp></ruby></p>
4150     #errors
4151     /p/ruby/rp;no significant content before;s
4152    
4153     #data
4154     <p xmlns="http://www.w3.org/1999/xhtml"><ruby><rt></rt></ruby></p>
4155     #errors
4156     /p;no significant content;s
4157     /p/ruby/rt;no significant content before;s
4158     /p/ruby/rt;no significant content;s
4159    
4160     #data
4161     <p xmlns="http://www.w3.org/1999/xhtml"><ruby><rt></rt></ruby>x</p>
4162     #errors
4163     /p/ruby/rt;no significant content before;s
4164     /p/ruby/rt;no significant content;s
4165    
4166     #data
4167     <p xmlns="http://www.w3.org/1999/xhtml">x<ruby><rt></rt></ruby></p>
4168     #errors
4169     /p/ruby/rt;no significant content before;s
4170     /p/ruby/rt;no significant content;s
4171    
4172     #data
4173     <p xmlns="http://www.w3.org/1999/xhtml"><ruby><rt></rt>x</ruby></p>
4174     #errors
4175     /p/ruby/rt;no significant content before;s
4176     /p/ruby/rt;no significant content;s
4177 wakaba 1.67 /p/ruby;element missing;rt;m
4178 wakaba 1.64
4179 wakaba 1.65 #data
4180     <p xmlns="http://www.w3.org/1999/xhtml"><ruby><rp>(</rp><rt></rt><rp>)</rp></ruby></p>
4181     #errors
4182     /p/ruby/rp;no significant content before;s
4183     /p/ruby/rt;no significant content;s
4184    
4185     #data
4186     <p xmlns="http://www.w3.org/1999/xhtml"><rt></rt></p>
4187     #errors
4188     /p;no significant content;s
4189     /p/rt;no significant content;s
4190     /p/rt;element not allowed:phrasing;m
4191    
4192     #data
4193     <p xmlns="http://www.w3.org/1999/xhtml"><rt>x</rt></p>
4194     #errors
4195     /p/rt;element not allowed:phrasing;m
4196    
4197     #data
4198     <p xmlns="http://www.w3.org/1999/xhtml"><rp>x</rp></p>
4199     #errors
4200     /p/rp;element not allowed:phrasing;m
4201     /p/rp;rp:syntax error;m
4202    
4203     #data
4204     <p xmlns="http://www.w3.org/1999/xhtml"><rp>(</rp></p>
4205     #errors
4206     /p/rp;element not allowed:phrasing;m
4207    
4208     #data
4209     <p xmlns="http://www.w3.org/1999/xhtml"><rp>)</rp></p>
4210     #errors
4211     /p/rp;element not allowed:phrasing;m
4212     /p/rp;rp:syntax error;m
4213 wakaba 1.64
4214 wakaba 1.6 #data
4215 wakaba 1.32 <figure xmlns="http://www.w3.org/1999/xhtml">
4216     </figure>
4217     #errors
4218     /figure;no significant content;s
4219    
4220     #data
4221     <figure xmlns="http://www.w3.org/1999/xhtml">
4222     <legend/>
4223     </figure>
4224     #errors
4225     /figure;no significant content;s
4226     /figure/legend;no significant content;s
4227    
4228     #data
4229     <figure xmlns="http://www.w3.org/1999/xhtml">
4230     <legend>x</legend>
4231     </figure>
4232     #errors
4233    
4234     #data
4235     <figure xmlns="http://www.w3.org/1999/xhtml">
4236     x
4237     </figure>
4238     #errors
4239    
4240     #data
4241     <figure xmlns="http://www.w3.org/1999/xhtml">
4242     x<legend>y</legend>
4243     </figure>
4244     #errors
4245    
4246     #data
4247     <figure xmlns="http://www.w3.org/1999/xhtml">
4248     <legend>x</legend>y
4249     </figure>
4250     #errors
4251    
4252     #data
4253     <figure xmlns="http://www.w3.org/1999/xhtml">
4254     <legend>x</legend><legend>y</legend>
4255     </figure>
4256     #errors
4257     /figure/legend;element not allowed:figure legend;m
4258    
4259     #data
4260     <figure xmlns="http://www.w3.org/1999/xhtml">
4261     y<legend>x</legend>z
4262     </figure>
4263     #errors
4264     /figure/legend;element not allowed:figure legend;m
4265    
4266     #data
4267     <figure xmlns="http://www.w3.org/1999/xhtml">
4268     x<legend>x</legend><legend>y</legend>
4269     </figure>
4270     #errors
4271     /figure/legend;element not allowed:figure legend;m
4272    
4273     #data
4274     <figure xmlns="http://www.w3.org/1999/xhtml">
4275     <legend>x</legend><legend>y</legend>z
4276     </figure>
4277     #errors
4278     /figure/legend;element not allowed:figure legend;m
4279    
4280     #data
4281     <figure xmlns="http://www.w3.org/1999/xhtml">
4282     x<legend>y</legend><legend>z</legend>w
4283     </figure>
4284     #errors
4285     /figure/legend;element not allowed:figure legend;m
4286     /figure/legend;element not allowed:figure legend;m
4287    
4288     #data
4289     <figure xmlns="http://www.w3.org/1999/xhtml">
4290     x<legend>y</legend><legend>z</legend><legend>w</legend>v
4291     </figure>
4292     #errors
4293     /figure/legend;element not allowed:figure legend;m
4294     /figure/legend;element not allowed:figure legend;m
4295     /figure/legend;element not allowed:figure legend;m
4296    
4297     #data
4298     <figure xmlns="http://www.w3.org/1999/xhtml">
4299     <p>x</p><legend>y</legend><legend>z</legend>w
4300     </figure>
4301     #errors
4302     /figure/legend;element not allowed:figure legend;m
4303     /figure/legend;element not allowed:figure legend;m
4304 wakaba 1.36
4305     #data
4306     <object xmlns="http://www.w3.org/1999/xhtml" data=""></object>
4307     #errors
4308     /object;no significant content;s
4309    
4310     #data
4311     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4312     </object>
4313     #errors
4314     /object;no significant content;s
4315    
4316     #data
4317     <object xmlns="http://www.w3.org/1999/xhtml" data="">xxxx</object>
4318     #errors
4319    
4320     #data
4321     <object xmlns="http://www.w3.org/1999/xhtml" data=""><p>xx</p></object>
4322     #errors
4323    
4324     #data
4325     <object xmlns="http://www.w3.org/1999/xhtml" data=""><p></p></object>
4326     #errors
4327     /object;no significant content;s
4328     /object/p;no significant content;s
4329    
4330     #data
4331     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4332     <param name="x" value="y"/>
4333     </object>
4334     #errors
4335     /object;no significant content;s
4336    
4337     #data
4338     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4339     <param name="x" value="y"/>
4340     <param name="v" value="w"/>
4341     </object>
4342     #errors
4343     /object;no significant content;s
4344    
4345     #data
4346     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4347     <param name="x" value="y"/>
4348     <param name="v" value="w"/>
4349     <param name="a" value="b"/>
4350     </object>
4351     #errors
4352     /object;no significant content;s
4353    
4354     #data
4355     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4356     <param name="x" value="y"/>
4357     zzz
4358     </object>
4359     #errors
4360    
4361     #data
4362     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4363     <param name="x" value="y"/>
4364     <p>zzz</p>
4365     </object>
4366     #errors
4367    
4368     #data
4369     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4370     <param name="x" value="y"/><p>
4371     zzz</p><img src="" alt="a"/>
4372     </object>
4373     #errors
4374    
4375     #data
4376     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4377     <param name="x" value="y"/>
4378     <param name="z" value="w"/>
4379     zzz
4380     </object>
4381     #errors
4382    
4383     #data
4384     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4385     <param name="x" value="y"/>
4386     zzz
4387     <param name="a" value="y"/>
4388     </object>
4389     #errors
4390 wakaba 1.55 /object/param;element not allowed:flow;m
4391 wakaba 1.36
4392     #data
4393     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4394     aaa
4395     <param name="x" value="y"/>
4396     </object>
4397     #errors
4398 wakaba 1.55 /object/param;element not allowed:flow;m
4399 wakaba 1.36
4400     #data
4401     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4402     <p>zxx</p>
4403     <param name="x" value="y"/>
4404     </object>
4405     #errors
4406 wakaba 1.55 /object/param;element not allowed:flow;m
4407 wakaba 1.36
4408     #data
4409     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4410     <param name="x" value="y"/>
4411     <style scoped=""/>
4412     </object>
4413     #errors
4414 wakaba 1.53 /object/style;SUBDOC
4415 wakaba 1.36 /object;no significant content;s
4416    
4417     #data
4418     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4419     <param name="x" value="y"/>
4420     <style scoped=""/>
4421     aaa
4422     </object>
4423     #errors
4424 wakaba 1.53 /object/style;SUBDOC
4425 wakaba 1.36
4426     #data
4427     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4428     <param name="x" value="y"/>
4429     <style scoped=""/>
4430     <p>xxx</p>
4431     </object>
4432     #errors
4433 wakaba 1.53 /object/style;SUBDOC
4434 wakaba 1.36
4435     #data
4436     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4437     <param name="x" value="y"/>
4438     <style scoped=""/>
4439     <param name="xz" value=""/>
4440     </object>
4441     #errors
4442 wakaba 1.53 /object/style;SUBDOC
4443 wakaba 1.55 /object/param;element not allowed:flow;m
4444 wakaba 1.36 /object;no significant content;s
4445    
4446     #data
4447     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4448     <style scoped=""/>
4449     <param name="x" value="y"/>
4450     </object>
4451     #errors
4452 wakaba 1.53 /object/style;SUBDOC
4453 wakaba 1.36 /object;no significant content;s
4454 wakaba 1.55 /object/param;element not allowed:flow;m
4455 wakaba 1.36
4456     #data
4457     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4458     <param name="x" value="y"/>
4459     <p>xxx</p>
4460     <style scoped=""/>
4461     </object>
4462     #errors
4463 wakaba 1.53 /object/style;SUBDOC
4464 wakaba 1.55 /object/style;element not allowed:flow style;m
4465 wakaba 1.36
4466     #data
4467     <object xmlns="http://www.w3.org/1999/xhtml" data="">
4468     <param name="x" value="y"/>
4469     <style/>
4470     </object>
4471     #errors
4472 wakaba 1.53 /object/style;SUBDOC
4473 wakaba 1.36 /object;no significant content;s
4474 wakaba 1.55 /object/style;element not allowed:flow style;m
4475 wakaba 1.36
4476     #data
4477     <p xmlns="http://www.w3.org/1999/xhtml">
4478     <object data="">
4479     <param name="x" value="y"/>
4480     <style scoped=""/>
4481     </object>
4482     </p>
4483     #errors
4484 wakaba 1.53 /p/object/style;SUBDOC
4485 wakaba 1.36 /p/object/style;element not allowed:phrasing;m
4486    
4487     #data
4488     <p xmlns="http://www.w3.org/1999/xhtml">
4489     <object data="">
4490     <param name="x" value="y"/>
4491     xxxx
4492     </object>
4493     </p>
4494     #errors
4495    
4496     #data
4497     <p xmlns="http://www.w3.org/1999/xhtml">
4498     <object data="">
4499     <param name="x" value="y"/>
4500     <p>xxxx</p>
4501     </object>
4502     </p>
4503     #errors
4504     /p/object/p;element not allowed:phrasing;m
4505    
4506     #data
4507     <div xmlns="http://www.w3.org/1999/xhtml">
4508     <object data="">
4509     <param name="x" value="y"/>
4510     <p>xxxx</p>
4511     </object>
4512     </div>
4513     #errors
4514    
4515     #data
4516     <div xmlns="http://www.w3.org/1999/xhtml">
4517     <object data="">
4518     <p>xxxx</p>
4519     <param name="x" value="y"/>
4520     </object>
4521     </div>
4522     #errors
4523 wakaba 1.55 /div/object/param;element not allowed:flow;m
4524 wakaba 1.36
4525     #data
4526     <div xmlns="http://www.w3.org/1999/xhtml">
4527     <object data="">
4528     <object data="">
4529     <param name="x" value="y"/>
4530     <p>xxxx</p>
4531     </object>
4532     </object>
4533     </div>
4534     #errors
4535    
4536     #data
4537     <span xmlns="http://www.w3.org/1999/xhtml">
4538     <object data="">
4539 wakaba 1.41 <param name="x" value="y"/>
4540     <p>xxxx</p>
4541     </object>
4542     </span>
4543     #errors
4544     /span/object/p;element not allowed:phrasing;m
4545    
4546     #data
4547     <span xmlns="http://www.w3.org/1999/xhtml">
4548     <ins>
4549     <object data="">
4550     <param name="x" value="y"/>
4551     <p>xxxx</p>
4552     </object>
4553     </ins>
4554     </span>
4555     #errors
4556     /span/ins/object/p;element not allowed:phrasing;m
4557    
4558     #data
4559     <span xmlns="http://www.w3.org/1999/xhtml">
4560     <object data="">
4561 wakaba 1.36 <object data="">
4562     <param name="x" value="y"/>
4563     <p>xxxx</p>
4564     </object>
4565     </object>
4566     </span>
4567     #errors
4568     /span/object/object/p;element not allowed:phrasing;m
4569    
4570     #data
4571     <span xmlns="http://www.w3.org/1999/xhtml">
4572     <object data="">
4573     <object data="">
4574     <p>xxxx</p>
4575     <param name="x" value="y"/>
4576     </object>
4577     </object>
4578     </span>
4579     #errors
4580     /span/object/object/p;element not allowed:phrasing;m
4581     /span/object/object/param;element not allowed:phrasing;m
4582 wakaba 1.32
4583     #data
4584 wakaba 1.38 <p xmlns="http://www.w3.org/1999/xhtml"><object data=""><p>xx</p></object></p>
4585     #errors
4586     /p/object/p;element not allowed:phrasing;m
4587    
4588     #data
4589     <p xmlns="http://www.w3.org/1999/xhtml"><object data=""><style scoped=""></style>xx</object></p>
4590     #errors
4591     /p/object/style;element not allowed:phrasing;m
4592 wakaba 1.53 /p/object/style;SUBDOC
4593 wakaba 1.38
4594     #data
4595 wakaba 1.39 <video xmlns="http://www.w3.org/1999/xhtml"></video>
4596     #errors
4597     /video;no significant content;s
4598 wakaba 1.67 /video;child element missing;source;m
4599 wakaba 1.39
4600     #data
4601     <video xmlns="http://www.w3.org/1999/xhtml"> </video>
4602     #errors
4603 wakaba 1.67 /video;child element missing;source;m
4604 wakaba 1.39 /video;no significant content;s
4605    
4606     #data
4607     <video xmlns="http://www.w3.org/1999/xhtml">xx</video>
4608     #errors
4609 wakaba 1.67 /video;child element missing;source;m
4610 wakaba 1.39
4611     #data
4612     <video xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/>xx</video>
4613     #errors
4614 wakaba 1.67 /video;child element missing;source;m
4615 wakaba 1.53 /video/style;SUBDOC
4616 wakaba 1.39
4617     #data
4618     <video xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/><p>xx</p></video>
4619     #errors
4620 wakaba 1.67 /video;child element missing;source;m
4621 wakaba 1.53 /video/style;SUBDOC
4622 wakaba 1.39
4623     #data
4624     <video xmlns="http://www.w3.org/1999/xhtml" src=""></video>
4625     #errors
4626     /video;no significant content;s
4627    
4628     #data
4629     <video xmlns="http://www.w3.org/1999/xhtml" src=""> </video>
4630     #errors
4631     /video;no significant content;s
4632    
4633     #data
4634     <video xmlns="http://www.w3.org/1999/xhtml" src="">xx</video>
4635     #errors
4636    
4637     #data
4638     <video xmlns="http://www.w3.org/1999/xhtml" src=""><style scoped=""/>xx</video>
4639     #errors
4640 wakaba 1.53 /video/style;SUBDOC
4641 wakaba 1.39
4642     #data
4643     <video xmlns="http://www.w3.org/1999/xhtml" src=""><style scoped=""/><p>xx</p></video>
4644     #errors
4645 wakaba 1.53 /video/style;SUBDOC
4646 wakaba 1.39
4647     #data
4648     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/></video>
4649     #errors
4650     /video;no significant content;s
4651    
4652     #data
4653     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/>xx</video>
4654     #errors
4655    
4656     #data
4657     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/>xx</video>
4658     #errors
4659 wakaba 1.53 /video/style;SUBDOC
4660 wakaba 1.39
4661     #data
4662     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/><p>xx</p></video>
4663     #errors
4664 wakaba 1.53 /video/style;SUBDOC
4665 wakaba 1.39
4666     #data
4667     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/><source src=""/></video>
4668     #errors
4669     /video;no significant content;s
4670    
4671     #data
4672     <video xmlns="http://www.w3.org/1999/xhtml">x<source src=""/></video>
4673     #errors
4674 wakaba 1.55 /video/source;element not allowed:flow;m
4675 wakaba 1.39
4676     #data
4677     <video xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/><source src=""/></video>
4678     #errors
4679 wakaba 1.55 /video/source;element not allowed:flow;m
4680 wakaba 1.53 /video/style;SUBDOC
4681 wakaba 1.39 /video;no significant content;s
4682    
4683     #data
4684     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/><source src=""/></video>
4685     #errors
4686 wakaba 1.55 /video/source;element not allowed:flow;m
4687 wakaba 1.53 /video/style;SUBDOC
4688 wakaba 1.39 /video;no significant content;s
4689    
4690     #data
4691     <video xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/><source src=""/><source src=""/></video>
4692     #errors
4693 wakaba 1.55 /video/source;element not allowed:flow;m
4694     /video/source;element not allowed:flow;m
4695 wakaba 1.53 /video/style;SUBDOC
4696 wakaba 1.39 /video;no significant content;s
4697    
4698     #data
4699     <div xmlns="http://www.w3.org/1999/xhtml"><video></video></div>
4700     #errors
4701 wakaba 1.67 /div/video;child element missing;source;m
4702 wakaba 1.39
4703     #data
4704     <div xmlns="http://www.w3.org/1999/xhtml"><video> </video></div>
4705     #errors
4706 wakaba 1.67 /div/video;child element missing;source;m
4707 wakaba 1.39
4708     #data
4709     <div xmlns="http://www.w3.org/1999/xhtml"><video>xx</video></div>
4710     #errors
4711 wakaba 1.67 /div/video;child element missing;source;m
4712 wakaba 1.39
4713     #data
4714     <div xmlns="http://www.w3.org/1999/xhtml"><video><style scoped=""/>xx</video></div>
4715     #errors
4716 wakaba 1.67 /div/video;child element missing;source;m
4717 wakaba 1.53 /div/video/style;SUBDOC
4718 wakaba 1.39
4719     #data
4720     <div xmlns="http://www.w3.org/1999/xhtml">
4721     <video><style scoped=""/><p>xx</p></video></div>
4722     #errors
4723 wakaba 1.67 /div/video;child element missing;source;m
4724 wakaba 1.53 /div/video/style;SUBDOC
4725 wakaba 1.39
4726     #data
4727     <div xmlns="http://www.w3.org/1999/xhtml"><video src=""></video></div>
4728     #errors
4729    
4730     #data
4731     <div xmlns="http://www.w3.org/1999/xhtml"><video src=""> </video></div>
4732     #errors
4733    
4734     #data
4735     <div xmlns="http://www.w3.org/1999/xhtml"><video src="">xx</video></div>
4736     #errors
4737    
4738     #data
4739     <div xmlns="http://www.w3.org/1999/xhtml">
4740     <video src=""><style scoped=""/>xx</video></div>
4741     #errors
4742 wakaba 1.53 /div/video/style;SUBDOC
4743 wakaba 1.39
4744     #data
4745     <div xmlns="http://www.w3.org/1999/xhtml">
4746     <video src=""><style scoped=""/><p>xx</p></video></div>
4747     #errors
4748 wakaba 1.53 /div/video/style;SUBDOC
4749 wakaba 1.39
4750     #data
4751     <div xmlns="http://www.w3.org/1999/xhtml"><video><source src=""/></video></div>
4752     #errors
4753    
4754     #data
4755     <div xmlns="http://www.w3.org/1999/xhtml"><video><source src=""/>xx</video></div>
4756     #errors
4757    
4758     #data
4759     <div xmlns="http://www.w3.org/1999/xhtml">
4760     <video><source src=""/><style scoped=""/>xx</video></div>
4761     #errors
4762 wakaba 1.53 /div/video/style;SUBDOC
4763 wakaba 1.39
4764     #data
4765     <div xmlns="http://www.w3.org/1999/xhtml">
4766     <video><source src=""/><style scoped=""/><p>xx</p></video></div>
4767     #errors
4768 wakaba 1.53 /div/video/style;SUBDOC
4769 wakaba 1.39
4770     #data
4771     <div xmlns="http://www.w3.org/1999/xhtml">
4772     <video><source src=""/><source src=""/></video></div>
4773     #errors
4774    
4775     #data
4776     <div xmlns="http://www.w3.org/1999/xhtml"><video>x<source src=""/></video></div>
4777     #errors
4778 wakaba 1.55 /div/video/source;element not allowed:flow;m
4779 wakaba 1.39
4780     #data
4781     <div xmlns="http://www.w3.org/1999/xhtml">
4782     <video><style scoped=""/><source src=""/></video></div>
4783     #errors
4784 wakaba 1.55 /div/video/source;element not allowed:flow;m
4785 wakaba 1.53 /div/video/style;SUBDOC
4786 wakaba 1.39
4787     #data
4788     <div xmlns="http://www.w3.org/1999/xhtml">
4789     <video><source src=""/><style scoped=""/><source src=""/></video></div>
4790     #errors
4791 wakaba 1.55 /div/video/source;element not allowed:flow;m
4792 wakaba 1.53 /div/video/style;SUBDOC
4793 wakaba 1.39
4794     #data
4795     <div xmlns="http://www.w3.org/1999/xhtml">
4796     <video><source src=""/><style scoped=""/><source src=""/><source src=""/></video></div>
4797     #errors
4798 wakaba 1.55 /div/video/source;element not allowed:flow;m
4799     /div/video/source;element not allowed:flow;m
4800 wakaba 1.53 /div/video/style;SUBDOC
4801 wakaba 1.39
4802     #data
4803     <em xmlns="http://www.w3.org/1999/xhtml"><video></video></em>
4804     #errors
4805 wakaba 1.67 /em/video;child element missing;source;m
4806 wakaba 1.39
4807     #data
4808     <em xmlns="http://www.w3.org/1999/xhtml"><video> </video></em>
4809     #errors
4810 wakaba 1.67 /em/video;child element missing;source;m
4811 wakaba 1.39
4812     #data
4813     <em xmlns="http://www.w3.org/1999/xhtml"><video>xx</video></em>
4814     #errors
4815 wakaba 1.67 /em/video;child element missing;source;m
4816 wakaba 1.39
4817     #data
4818     <em xmlns="http://www.w3.org/1999/xhtml"><video><style scoped=""/>xx</video></em>
4819     #errors
4820 wakaba 1.67 /em/video;child element missing;source;m
4821 wakaba 1.53 /em/video/style;SUBDOC
4822 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4823    
4824     #data
4825     <em xmlns="http://www.w3.org/1999/xhtml">
4826     <video><style scoped=""/><p>xx</p></video></em>
4827     #errors
4828 wakaba 1.67 /em/video;child element missing;source;m
4829 wakaba 1.53 /em/video/style;SUBDOC
4830 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4831     /em/video/p;element not allowed:phrasing;m
4832    
4833     #data
4834     <em xmlns="http://www.w3.org/1999/xhtml"><video src=""></video></em>
4835     #errors
4836    
4837     #data
4838     <em xmlns="http://www.w3.org/1999/xhtml"><video src=""> </video></em>
4839     #errors
4840    
4841     #data
4842     <em xmlns="http://www.w3.org/1999/xhtml"><video src="">xx</video></em>
4843     #errors
4844    
4845     #data
4846     <em xmlns="http://www.w3.org/1999/xhtml">
4847     <video src=""><style scoped=""/>xx</video></em>
4848     #errors
4849 wakaba 1.53 /em/video/style;SUBDOC
4850 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4851    
4852     #data
4853     <em xmlns="http://www.w3.org/1999/xhtml">
4854     <video src=""><style scoped=""/><p>xx</p></video></em>
4855     #errors
4856 wakaba 1.53 /em/video/style;SUBDOC
4857 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4858     /em/video/p;element not allowed:phrasing;m
4859    
4860     #data
4861     <em xmlns="http://www.w3.org/1999/xhtml"><video><source src=""/></video></em>
4862     #errors
4863    
4864     #data
4865     <em xmlns="http://www.w3.org/1999/xhtml"><video><source src=""/>xx</video></em>
4866     #errors
4867    
4868     #data
4869     <em xmlns="http://www.w3.org/1999/xhtml">
4870     <video><source src=""/><style scoped=""/>xx</video></em>
4871     #errors
4872 wakaba 1.53 /em/video/style;SUBDOC
4873 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4874    
4875     #data
4876     <em xmlns="http://www.w3.org/1999/xhtml">
4877     <video><source src=""/><style scoped=""/><p>xx</p></video></em>
4878     #errors
4879 wakaba 1.53 /em/video/style;SUBDOC
4880 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4881     /em/video/p;element not allowed:phrasing;m
4882    
4883     #data
4884     <em xmlns="http://www.w3.org/1999/xhtml">
4885     <video><source src=""/><source src=""/></video></em>
4886     #errors
4887    
4888     #data
4889     <em xmlns="http://www.w3.org/1999/xhtml"><video>x<source src=""/></video></em>
4890     #errors
4891     /em/video/source;element not allowed:phrasing;m
4892    
4893     #data
4894     <em xmlns="http://www.w3.org/1999/xhtml">
4895     <video><style scoped=""/><source src=""/></video></em>
4896     #errors
4897     /em/video/source;element not allowed:phrasing;m
4898 wakaba 1.53 /em/video/style;SUBDOC
4899 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4900    
4901     #data
4902     <em xmlns="http://www.w3.org/1999/xhtml">
4903     <video><source src=""/><style scoped=""/><source src=""/></video></em>
4904     #errors
4905     /em/video/source;element not allowed:phrasing;m
4906 wakaba 1.53 /em/video/style;SUBDOC
4907 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4908    
4909     #data
4910     <em xmlns="http://www.w3.org/1999/xhtml">
4911     <video><source src=""/><style scoped=""/><source src=""/><source src=""/></video></em>
4912     #errors
4913     /em/video/source;element not allowed:phrasing;m
4914     /em/video/source;element not allowed:phrasing;m
4915 wakaba 1.53 /em/video/style;SUBDOC
4916 wakaba 1.39 /em/video/style;element not allowed:phrasing;m
4917    
4918     #data
4919     <audio xmlns="http://www.w3.org/1999/xhtml"></audio>
4920     #errors
4921     /audio;no significant content;s
4922 wakaba 1.67 /audio;child element missing;source;m
4923 wakaba 1.39
4924     #data
4925     <audio xmlns="http://www.w3.org/1999/xhtml"> </audio>
4926     #errors
4927 wakaba 1.67 /audio;child element missing;source;m
4928 wakaba 1.39 /audio;no significant content;s
4929    
4930     #data
4931     <audio xmlns="http://www.w3.org/1999/xhtml">xx</audio>
4932     #errors
4933 wakaba 1.67 /audio;child element missing;source;m
4934 wakaba 1.39
4935     #data
4936     <audio xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/>xx</audio>
4937     #errors
4938 wakaba 1.67 /audio;child element missing;source;m
4939 wakaba 1.53 /audio/style;SUBDOC
4940 wakaba 1.39
4941     #data
4942     <audio xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/><p>xx</p></audio>
4943     #errors
4944 wakaba 1.67 /audio;child element missing;source;m
4945 wakaba 1.53 /audio/style;SUBDOC
4946 wakaba 1.39
4947     #data
4948     <audio xmlns="http://www.w3.org/1999/xhtml" src=""></audio>
4949     #errors
4950     /audio;no significant content;s
4951    
4952     #data
4953     <audio xmlns="http://www.w3.org/1999/xhtml" src=""> </audio>
4954     #errors
4955     /audio;no significant content;s
4956    
4957     #data
4958     <audio xmlns="http://www.w3.org/1999/xhtml" src="">xx</audio>
4959     #errors
4960    
4961     #data
4962     <audio xmlns="http://www.w3.org/1999/xhtml" src=""><style scoped=""/>xx</audio>
4963     #errors
4964 wakaba 1.53 /audio/style;SUBDOC
4965 wakaba 1.39
4966     #data
4967     <audio xmlns="http://www.w3.org/1999/xhtml" src=""><style scoped=""/><p>xx</p></audio>
4968     #errors
4969 wakaba 1.53 /audio/style;SUBDOC
4970 wakaba 1.39
4971     #data
4972     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/></audio>
4973     #errors
4974     /audio;no significant content;s
4975    
4976     #data
4977     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/>xx</audio>
4978     #errors
4979    
4980     #data
4981     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/>xx</audio>
4982     #errors
4983 wakaba 1.53 /audio/style;SUBDOC
4984 wakaba 1.39
4985     #data
4986     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/><p>xx</p></audio>
4987     #errors
4988 wakaba 1.53 /audio/style;SUBDOC
4989 wakaba 1.39
4990     #data
4991     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/><source src=""/></audio>
4992     #errors
4993     /audio;no significant content;s
4994    
4995     #data
4996     <audio xmlns="http://www.w3.org/1999/xhtml">x<source src=""/></audio>
4997     #errors
4998 wakaba 1.55 /audio/source;element not allowed:flow;m
4999 wakaba 1.39
5000     #data
5001     <audio xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/><source src=""/></audio>
5002     #errors
5003 wakaba 1.55 /audio/source;element not allowed:flow;m
5004 wakaba 1.53 /audio/style;SUBDOC
5005 wakaba 1.39 /audio;no significant content;s
5006    
5007     #data
5008     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/><source src=""/></audio>
5009     #errors
5010 wakaba 1.55 /audio/source;element not allowed:flow;m
5011 wakaba 1.53 /audio/style;SUBDOC
5012 wakaba 1.39 /audio;no significant content;s
5013    
5014     #data
5015     <audio xmlns="http://www.w3.org/1999/xhtml"><source src=""/><style scoped=""/><source src=""/><source src=""/></audio>
5016     #errors
5017 wakaba 1.55 /audio/source;element not allowed:flow;m
5018     /audio/source;element not allowed:flow;m
5019 wakaba 1.53 /audio/style;SUBDOC
5020 wakaba 1.39 /audio;no significant content;s
5021    
5022     #data
5023     <div xmlns="http://www.w3.org/1999/xhtml"><audio></audio></div>
5024     #errors
5025 wakaba 1.67 /div/audio;child element missing;source;m
5026 wakaba 1.39
5027     #data
5028     <div xmlns="http://www.w3.org/1999/xhtml"><audio> </audio></div>
5029     #errors
5030 wakaba 1.67 /div/audio;child element missing;source;m
5031 wakaba 1.39
5032     #data
5033     <div xmlns="http://www.w3.org/1999/xhtml"><audio>xx</audio></div>
5034     #errors
5035 wakaba 1.67 /div/audio;child element missing;source;m
5036 wakaba 1.39
5037     #data
5038     <div xmlns="http://www.w3.org/1999/xhtml"><audio><style scoped=""/>xx</audio></div>
5039     #errors
5040 wakaba 1.67 /div/audio;child element missing;source;m
5041 wakaba 1.53 /div/audio/style;SUBDOC
5042 wakaba 1.39
5043     #data
5044     <div xmlns="http://www.w3.org/1999/xhtml">
5045     <audio><style scoped=""/><p>xx</p></audio></div>
5046     #errors
5047 wakaba 1.67 /div/audio;child element missing;source;m
5048 wakaba 1.53 /div/audio/style;SUBDOC
5049 wakaba 1.39
5050     #data
5051     <div xmlns="http://www.w3.org/1999/xhtml"><audio src=""></audio></div>
5052     #errors
5053    
5054     #data
5055     <div xmlns="http://www.w3.org/1999/xhtml"><audio src=""> </audio></div>
5056     #errors
5057    
5058     #data
5059     <div xmlns="http://www.w3.org/1999/xhtml"><audio src="">xx</audio></div>
5060     #errors
5061    
5062     #data
5063     <div xmlns="http://www.w3.org/1999/xhtml">
5064     <audio src=""><style scoped=""/>xx</audio></div>
5065     #errors
5066 wakaba 1.53 /div/audio/style;SUBDOC
5067 wakaba 1.39
5068     #data
5069     <div xmlns="http://www.w3.org/1999/xhtml">
5070     <audio src=""><style scoped=""/><p>xx</p></audio></div>
5071     #errors
5072 wakaba 1.53 /div/audio/style;SUBDOC
5073 wakaba 1.39
5074     #data
5075     <div xmlns="http://www.w3.org/1999/xhtml"><audio><source src=""/></audio></div>
5076     #errors
5077    
5078     #data
5079     <div xmlns="http://www.w3.org/1999/xhtml"><audio><source src=""/>xx</audio></div>
5080     #errors
5081    
5082     #data
5083     <div xmlns="http://www.w3.org/1999/xhtml">
5084     <audio><source src=""/><style scoped=""/>xx</audio></div>
5085     #errors
5086 wakaba 1.53 /div/audio/style;SUBDOC
5087 wakaba 1.39
5088     #data
5089     <div xmlns="http://www.w3.org/1999/xhtml">
5090     <audio><source src=""/><style scoped=""/><p>xx</p></audio></div>
5091     #errors
5092 wakaba 1.53 /div/audio/style;SUBDOC
5093 wakaba 1.39
5094     #data
5095     <div xmlns="http://www.w3.org/1999/xhtml">
5096     <audio><source src=""/><source src=""/></audio></div>
5097     #errors
5098    
5099     #data
5100     <div xmlns="http://www.w3.org/1999/xhtml"><audio>x<source src=""/></audio></div>
5101     #errors
5102 wakaba 1.55 /div/audio/source;element not allowed:flow;m
5103 wakaba 1.39
5104     #data
5105     <div xmlns="http://www.w3.org/1999/xhtml">
5106     <audio><style scoped=""/><source src=""/></audio></div>
5107     #errors
5108 wakaba 1.55 /div/audio/source;element not allowed:flow;m
5109 wakaba 1.53 /div/audio/style;SUBDOC
5110 wakaba 1.39
5111     #data
5112     <div xmlns="http://www.w3.org/1999/xhtml">
5113     <audio><source src=""/><style scoped=""/><source src=""/></audio></div>
5114     #errors
5115 wakaba 1.55 /div/audio/source;element not allowed:flow;m
5116 wakaba 1.53 /div/audio/style;SUBDOC
5117 wakaba 1.39
5118     #data
5119     <div xmlns="http://www.w3.org/1999/xhtml">
5120     <audio><source src=""/><style scoped=""/><source src=""/><source src=""/></audio></div>
5121     #errors
5122 wakaba 1.55 /div/audio/source;element not allowed:flow;m
5123     /div/audio/source;element not allowed:flow;m
5124 wakaba 1.53 /div/audio/style;SUBDOC
5125 wakaba 1.39
5126     #data
5127     <em xmlns="http://www.w3.org/1999/xhtml"><audio></audio></em>
5128     #errors
5129 wakaba 1.67 /em/audio;child element missing;source;m
5130 wakaba 1.39
5131     #data
5132     <em xmlns="http://www.w3.org/1999/xhtml"><audio> </audio></em>
5133     #errors
5134 wakaba 1.67 /em/audio;child element missing;source;m
5135 wakaba 1.39
5136     #data
5137     <em xmlns="http://www.w3.org/1999/xhtml"><audio>xx</audio></em>
5138     #errors
5139 wakaba 1.67 /em/audio;child element missing;source;m
5140 wakaba 1.39
5141     #data
5142     <em xmlns="http://www.w3.org/1999/xhtml"><audio><style scoped=""/>xx</audio></em>
5143     #errors
5144 wakaba 1.67 /em/audio;child element missing;source;m
5145 wakaba 1.53 /em/audio/style;SUBDOC
5146 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5147    
5148     #data
5149     <em xmlns="http://www.w3.org/1999/xhtml">
5150     <audio><style scoped=""/><p>xx</p></audio></em>
5151     #errors
5152 wakaba 1.67 /em/audio;child element missing;source;m
5153 wakaba 1.53 /em/audio/style;SUBDOC
5154 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5155     /em/audio/p;element not allowed:phrasing;m
5156    
5157     #data
5158     <em xmlns="http://www.w3.org/1999/xhtml"><audio src=""></audio></em>
5159     #errors
5160    
5161     #data
5162     <em xmlns="http://www.w3.org/1999/xhtml"><audio src=""> </audio></em>
5163     #errors
5164    
5165     #data
5166     <em xmlns="http://www.w3.org/1999/xhtml"><audio src="">xx</audio></em>
5167     #errors
5168    
5169     #data
5170     <em xmlns="http://www.w3.org/1999/xhtml">
5171     <audio src=""><style scoped=""/>xx</audio></em>
5172     #errors
5173 wakaba 1.53 /em/audio/style;SUBDOC
5174 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5175    
5176     #data
5177     <em xmlns="http://www.w3.org/1999/xhtml">
5178     <audio src=""><style scoped=""/><p>xx</p></audio></em>
5179     #errors
5180 wakaba 1.53 /em/audio/style;SUBDOC
5181 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5182     /em/audio/p;element not allowed:phrasing;m
5183    
5184     #data
5185     <em xmlns="http://www.w3.org/1999/xhtml"><audio><source src=""/></audio></em>
5186     #errors
5187    
5188     #data
5189     <em xmlns="http://www.w3.org/1999/xhtml"><audio><source src=""/>xx</audio></em>
5190     #errors
5191    
5192     #data
5193     <em xmlns="http://www.w3.org/1999/xhtml">
5194     <audio><source src=""/><style scoped=""/>xx</audio></em>
5195     #errors
5196 wakaba 1.53 /em/audio/style;SUBDOC
5197 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5198    
5199     #data
5200     <em xmlns="http://www.w3.org/1999/xhtml">
5201     <audio><source src=""/><style scoped=""/><p>xx</p></audio></em>
5202     #errors
5203 wakaba 1.53 /em/audio/style;SUBDOC
5204 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5205     /em/audio/p;element not allowed:phrasing;m
5206    
5207     #data
5208     <em xmlns="http://www.w3.org/1999/xhtml">
5209     <audio><source src=""/><source src=""/></audio></em>
5210     #errors
5211    
5212     #data
5213     <em xmlns="http://www.w3.org/1999/xhtml"><audio>x<source src=""/></audio></em>
5214     #errors
5215     /em/audio/source;element not allowed:phrasing;m
5216    
5217     #data
5218     <em xmlns="http://www.w3.org/1999/xhtml">
5219     <audio><style scoped=""/><source src=""/></audio></em>
5220     #errors
5221     /em/audio/source;element not allowed:phrasing;m
5222 wakaba 1.53 /em/audio/style;SUBDOC
5223 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5224    
5225     #data
5226     <em xmlns="http://www.w3.org/1999/xhtml">
5227     <audio><source src=""/><style scoped=""/><source src=""/></audio></em>
5228     #errors
5229     /em/audio/source;element not allowed:phrasing;m
5230 wakaba 1.53 /em/audio/style;SUBDOC
5231 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5232    
5233     #data
5234     <em xmlns="http://www.w3.org/1999/xhtml">
5235     <audio><source src=""/><style scoped=""/><source src=""/><source src=""/></audio></em>
5236     #errors
5237     /em/audio/source;element not allowed:phrasing;m
5238     /em/audio/source;element not allowed:phrasing;m
5239 wakaba 1.53 /em/audio/style;SUBDOC
5240 wakaba 1.39 /em/audio/style;element not allowed:phrasing;m
5241    
5242     #data
5243 wakaba 1.47 <area shape="default" href="" alt="a" xmlns="http://www.w3.org/1999/xhtml"/>
5244     #errors
5245    
5246     #data
5247     <div xmlns="http://www.w3.org/1999/xhtml">
5248     <area shape="default" href="" alt="a"/>
5249     </div>
5250     #errors
5251     /div;no significant content;s
5252     /div/area;element not allowed:area;m
5253    
5254     #data
5255     <map id="map1" xmlns="http://www.w3.org/1999/xhtml">
5256     <area shape="default" href="" alt="a"/>
5257     </map>
5258     #errors
5259     /map;no significant content;s
5260 wakaba 1.67 /map;attribute missing;name;m
5261 wakaba 1.66
5262     #data
5263     <map name="map1" xmlns="http://www.w3.org/1999/xhtml">
5264     <area shape="default" href="" alt="a"/>
5265     </map>
5266     #errors
5267     /map;no significant content;s
5268    
5269     #data
5270     <map id="map1" name="map1" xmlns="http://www.w3.org/1999/xhtml">
5271     <area shape="default" href="" alt="a"/>
5272     </map>
5273     #errors
5274     /map;no significant content;s
5275 wakaba 1.47
5276     #data
5277     <map id="map1" xmlns="http://www.w3.org/1999/xhtml">
5278     <p><area shape="default" href="" alt="a"/></p>
5279     </map>
5280     #errors
5281     /map;no significant content;s
5282     /map/p;no significant content;s
5283 wakaba 1.67 /map;attribute missing;name;m
5284 wakaba 1.66
5285     #data
5286     <map name="map1" xmlns="http://www.w3.org/1999/xhtml">
5287     <p><area shape="default" href="" alt="a"/></p>
5288     </map>
5289     #errors
5290     /map;no significant content;s
5291     /map/p;no significant content;s
5292 wakaba 1.47
5293     #data
5294     <map id="map1" xmlns="http://www.w3.org/1999/xhtml">
5295     <map id="map2"><p><area shape="default" href="" alt="a"/></p></map>
5296     </map>
5297     #errors
5298     /map;no significant content;s
5299     /map/map;no significant content;s
5300     /map/map/p;no significant content;s
5301 wakaba 1.67 /map;attribute missing;name;m
5302     /map/map;attribute missing;name;m
5303 wakaba 1.66
5304     #data
5305     <map name="map1" xmlns="http://www.w3.org/1999/xhtml">
5306     <map name="map2"><p><area shape="default" href="" alt="a"/></p></map>
5307     </map>
5308     #errors
5309     /map;no significant content;s
5310     /map/map;no significant content;s
5311     /map/map/p;no significant content;s
5312 wakaba 1.47
5313     #data
5314     <div xmlns="http://www.w3.org/1999/xhtml">
5315 wakaba 1.66 <map name="map1">
5316     <map name="map2"/>
5317 wakaba 1.47 </map>
5318     <area shape="default" href="" alt="a"/></div>
5319     #errors
5320     /div;no significant content;s
5321     /div/map;no significant content;s
5322     /div/map/map;no significant content;s
5323     /div/area;element not allowed:area;m
5324    
5325     #data
5326 wakaba 1.66 <map name="map1" xmlns="http://www.w3.org/1999/xhtml">
5327     <map name="map2"/><p><area shape="default" href="" alt="a"/></p>
5328 wakaba 1.47 </map>
5329     #errors
5330     /map;no significant content;s
5331     /map/map;no significant content;s
5332     /map/p;no significant content;s
5333    
5334     #data
5335     <div xmlns="http://www.w3.org/1999/xhtml">
5336 wakaba 1.66 <map name="map2"/><p><area shape="default" href="" alt="a"/></p>
5337 wakaba 1.47 </div>
5338     #errors
5339     /div;no significant content;s
5340     /div/map;no significant content;s
5341     /div/p;no significant content;s
5342     /div/p/area;element not allowed:area;m
5343    
5344     #data
5345 wakaba 1.12 <table xmlns="http://www.w3.org/1999/xhtml">
5346     <thead><tr><td/></tr></thead>
5347     <tbody><tr><td/></tr></tbody>
5348     <tfoot><tr><td/></tr></tfoot>
5349     </table>
5350     #errors
5351 wakaba 1.25 /table/thead/tr/td;no significant content;s
5352     /table/tbody/tr/td;no significant content;s
5353     /table/tfoot/tr/td;no significant content;s
5354 wakaba 1.12
5355     #data
5356 wakaba 1.28 <th xmlns="http://www.w3.org/1999/xhtml"></th>
5357     #errors
5358     /th;no significant content;s
5359    
5360     #data
5361     <th xmlns="http://www.w3.org/1999/xhtml">xxx</th>
5362     #errors
5363    
5364     #data
5365     <th xmlns="http://www.w3.org/1999/xhtml"> </th>
5366     #errors
5367     /th;no significant content;s
5368    
5369     #data
5370     <th xmlns="http://www.w3.org/1999/xhtml"> <!---->xxx</th>
5371     #errors
5372    
5373     #data
5374     <th xmlns="http://www.w3.org/1999/xhtml"><a href="">aa</a></th>
5375     #errors
5376    
5377     #data
5378     <th xmlns="http://www.w3.org/1999/xhtml"><a href=""></a></th>
5379     #errors
5380     /th;no significant content;s
5381     /th/a;no significant content;s
5382    
5383     #data
5384     <th xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></th>
5385     #errors
5386     /th/p;element not allowed:phrasing;m
5387    
5388     #data
5389     <th xmlns="http://www.w3.org/1999/xhtml"><ul><li>xx</li></ul></th>
5390     #errors
5391     /th/ul;element not allowed:phrasing;m
5392    
5393     #data
5394     <th xmlns="http://www.w3.org/1999/xhtml"><h1>aaa</h1></th>
5395     #errors
5396     /th/h1;element not allowed:phrasing;m
5397    
5398     #data
5399     <th xmlns="http://www.w3.org/1999/xhtml"><table/></th>
5400     #errors
5401     /th/table;element not allowed:phrasing;m
5402     /th;no significant content;s
5403    
5404     #data
5405     <th xmlns="http://www.w3.org/1999/xhtml"><ins></ins></th>
5406     #errors
5407     /th;no significant content;s
5408    
5409     #data
5410     <th xmlns="http://www.w3.org/1999/xhtml"><ins>xxx</ins></th>
5411     #errors
5412    
5413     #data
5414     <th xmlns="http://www.w3.org/1999/xhtml"><ins><p>xx</p></ins></th>
5415     #errors
5416     /th/ins/p;element not allowed:phrasing;m
5417    
5418     #data
5419     <th xmlns="http://www.w3.org/1999/xhtml"><ins>xxx<p>xxx</p></ins></th>
5420     #errors
5421     /th/ins/p;element not allowed:phrasing;m
5422    
5423     #data
5424     <th xmlns="http://www.w3.org/1999/xhtml"><del></del></th>
5425     #errors
5426     /th;no significant content;s
5427    
5428     #data
5429     <th xmlns="http://www.w3.org/1999/xhtml"><del>xx</del></th>
5430     #errors
5431     /th;no significant content;s
5432    
5433     #data
5434     <th xmlns="http://www.w3.org/1999/xhtml"><del><p>xx</p></del></th>
5435     #errors
5436     /th;no significant content;s
5437     /th/del/p;element not allowed:phrasing;m
5438    
5439     #data
5440     <th xmlns="http://www.w3.org/1999/xhtml"><del><p>xxx</p>xxx</del></th>
5441     #errors
5442     /th;no significant content;s
5443     /th/del/p;element not allowed:phrasing;m
5444    
5445     #data
5446     <th xmlns="http://www.w3.org/1999/xhtml"><del><ins>xxx<p>xxx</p></ins></del></th>
5447     #errors
5448     /th;no significant content;s
5449     /th/del/ins/p;element not allowed:phrasing;m
5450    
5451     #data
5452 wakaba 1.6 <fieldset xmlns="http://www.w3.org/1999/xhtml">
5453     <legend>XXX</legend>
5454     </fieldset>
5455     #errors
5456 wakaba 1.4
5457 wakaba 1.6 #data
5458     <fieldset xmlns="http://www.w3.org/1999/xhtml">
5459     <legend><p>XXX</p></legend>
5460     </fieldset>
5461     #errors
5462 wakaba 1.27 /fieldset/legend/p;element not allowed:phrasing;m
5463 wakaba 1.6
5464     #data
5465     <fieldset xmlns="http://www.w3.org/1999/xhtml">
5466     <legend><blockquote><p>XXX</p></blockquote></legend>
5467     </fieldset>
5468     #errors
5469 wakaba 1.27 /fieldset/legend/blockquote;element not allowed:phrasing;m
5470 wakaba 1.6
5471     #data
5472     <figure xmlns="http://www.w3.org/1999/xhtml">
5473     <legend>XXX</legend>
5474 wakaba 1.34 <img src="" alt="x"/>
5475 wakaba 1.6 </figure>
5476     #errors
5477    
5478     #data
5479     <figure xmlns="http://www.w3.org/1999/xhtml">
5480     <legend><p>XXX</p></legend>
5481 wakaba 1.34 <img src="" alt="x"/>
5482 wakaba 1.6 </figure>
5483     #errors
5484 wakaba 1.27 /figure/legend/p;element not allowed:phrasing;m
5485 wakaba 1.6
5486     #data
5487     <figure xmlns="http://www.w3.org/1999/xhtml">
5488     <legend><blockquote><p>XXX</p></blockquote></legend>
5489 wakaba 1.34 <img src="" alt="x"/>
5490 wakaba 1.6 </figure>
5491     #errors
5492 wakaba 1.27 /figure/legend/blockquote;element not allowed:phrasing;m
5493 wakaba 1.6
5494     #data
5495     <figure xmlns="http://www.w3.org/1999/xhtml">
5496     <legend>XXX</legend>
5497 wakaba 1.34 <img src="" alt="x"/>
5498 wakaba 1.6 </figure>
5499     #errors
5500    
5501     #data
5502     <figure xmlns="http://www.w3.org/1999/xhtml">
5503     <legend><p>XXX</p></legend>
5504 wakaba 1.34 <img src="" alt="x"/>
5505 wakaba 1.6 </figure>
5506     #errors
5507 wakaba 1.27 /figure/legend/p;element not allowed:phrasing;m
5508 wakaba 1.6
5509     #data
5510     <figure xmlns="http://www.w3.org/1999/xhtml">
5511     <legend><blockquote><p>XXX</p></blockquote></legend>
5512 wakaba 1.34 <img src="" alt="x"/>
5513 wakaba 1.6 </figure>
5514     #errors
5515 wakaba 1.27 /figure/legend/blockquote;element not allowed:phrasing;m
5516 wakaba 1.19
5517     #data
5518     <head xmlns="http://www.w3.org/1999/xhtml">
5519     <title/>
5520     <noscript>
5521     <p/>
5522     </noscript>
5523     </head>
5524     #errors
5525 wakaba 1.67 /head/noscript;in XML:noscript;m
5526 wakaba 1.32 /head/noscript/p;element not allowed:head noscript;m
5527 wakaba 1.25 /head/noscript/p;no significant content;s
5528 wakaba 1.19
5529     #data
5530     <head xmlns="http://www.w3.org/1999/xhtml">
5531     <title/>
5532     <noscript>
5533     <noscript/>
5534     </noscript>
5535     </head>
5536     #errors
5537 wakaba 1.67 /head/noscript;in XML:noscript;m
5538     /head/noscript/noscript;in XML:noscript;m
5539 wakaba 1.32 /head/noscript/noscript;element not allowed:head noscript;m
5540 wakaba 1.19
5541     #data
5542     <head xmlns="http://www.w3.org/1999/xhtml">
5543     <title/>
5544     <noscript>
5545     <link rel="stylesheet" href=""/>
5546     </noscript>
5547     </head>
5548     #errors
5549 wakaba 1.67 /head/noscript;in XML:noscript;m
5550 wakaba 1.19
5551     #data
5552     <head xmlns="http://www.w3.org/1999/xhtml">
5553     <title/>
5554     <noscript>
5555     <style/>
5556     </noscript>
5557     </head>
5558     #errors
5559 wakaba 1.67 /head/noscript;in XML:noscript;m
5560 wakaba 1.53 /head/noscript/style;SUBDOC
5561 wakaba 1.19
5562     #data
5563     <head xmlns="http://www.w3.org/1999/xhtml">
5564     <title/>
5565     <noscript>
5566     <script/>
5567     </noscript>
5568     </head>
5569     #errors
5570 wakaba 1.67 /head/noscript;in XML:noscript;m
5571 wakaba 1.32 /head/noscript/script;element not allowed:head noscript;m
5572 wakaba 1.62 /head/noscript/script;SUBDOC
5573 wakaba 1.19
5574     #data
5575     <head xmlns="http://www.w3.org/1999/xhtml">
5576     <title/>
5577     <noscript>
5578     <meta name="keywords" content=""/>
5579     </noscript>
5580     </head>
5581     #errors
5582 wakaba 1.67 /head/noscript;in XML:noscript;m
5583 wakaba 1.38 /head/noscript/meta;element not allowed:head noscript;m
5584 wakaba 1.19
5585     #data
5586     <head xmlns="http://www.w3.org/1999/xhtml">
5587     <title/>
5588     <noscript>
5589     <base href=""/>
5590     </noscript>
5591     </head>
5592     #errors
5593 wakaba 1.67 /head/noscript;in XML:noscript;m
5594 wakaba 1.32 /head/noscript/base;element not allowed:head noscript;m
5595 wakaba 1.19
5596     #data
5597     <head xmlns="http://www.w3.org/1999/xhtml">
5598     <title/>
5599     <noscript>
5600     <event-source src=""/>
5601     </noscript>
5602     </head>
5603     #errors
5604 wakaba 1.67 /head/noscript;in XML:noscript;m
5605 wakaba 1.32 /head/noscript/event-source;element not allowed:head noscript;m
5606 wakaba 1.19
5607     #data
5608     <head xmlns="http://www.w3.org/1999/xhtml">
5609     <title/>
5610     <noscript>
5611     <title/>
5612     </noscript>
5613     </head>
5614     #errors
5615 wakaba 1.67 /head/noscript;in XML:noscript;m
5616 wakaba 1.32 /head/noscript/title;element not allowed:head noscript;m
5617 wakaba 1.19
5618     #data
5619     <head xmlns="http://www.w3.org/1999/xhtml">
5620     <title/>
5621     <noscript>
5622     <link rel="stylesheet" href=""/>
5623     <style/>
5624     </noscript>
5625     </head>
5626     #errors
5627 wakaba 1.67 /head/noscript;in XML:noscript;m
5628 wakaba 1.53 /head/noscript/style;SUBDOC
5629 wakaba 1.19
5630     #data
5631     <head xmlns="http://www.w3.org/1999/xhtml">
5632     <title/>
5633     <noscript>
5634     <link rel="stylesheet" href=""/>
5635     <noscript>
5636     <style/>
5637     </noscript>
5638     </noscript>
5639     </head>
5640     #errors
5641 wakaba 1.67 /head/noscript;in XML:noscript;m
5642     /head/noscript/noscript;in XML:noscript;m
5643 wakaba 1.32 /head/noscript/noscript;element not allowed:head noscript;m
5644 wakaba 1.53 /head/noscript/noscript/style;SUBDOC
5645 wakaba 1.19
5646     #data
5647     <head xmlns="http://www.w3.org/1999/xhtml">
5648     <title/>
5649     <noscript>
5650     <link rel="stylesheet" href=""/>
5651     <noscript>
5652     <p/>
5653     </noscript>
5654     </noscript>
5655     </head>
5656     #errors
5657 wakaba 1.67 /head/noscript;in XML:noscript;m
5658     /head/noscript/noscript;in XML:noscript;m
5659 wakaba 1.32 /head/noscript/noscript;element not allowed:head noscript;m
5660     /head/noscript/noscript/p;element not allowed:head noscript;m
5661 wakaba 1.25 /head/noscript/noscript/p;no significant content;s
5662 wakaba 1.19
5663     #data
5664     <head xmlns="http://www.w3.org/1999/xhtml">
5665     <title/>
5666     <noscript>
5667     <link rel="stylesheet" href=""/>
5668     <noscript>
5669     <meta charset="us-ascii"/>
5670     </noscript>
5671     </noscript>
5672     </head>
5673     #errors
5674 wakaba 1.67 /head/noscript;in XML:noscript;m
5675     /head/noscript/noscript;in XML:noscript;m
5676 wakaba 1.32 /head/noscript/noscript;element not allowed:head noscript;m
5677 wakaba 1.42 /head/noscript/noscript/meta;element not allowed:head noscript;m
5678 wakaba 1.29 /head/noscript/noscript/meta;element not allowed:meta charset;m
5679     /head/noscript/noscript/meta;in XML:charset;m
5680 wakaba 1.67 /head/noscript/noscript/meta/@charset;mismatched charset name not checked;u
5681 wakaba 1.19
5682     #data
5683     <noscript xmlns="http://www.w3.org/1999/xhtml">
5684     <meta name="keywords" content=""/>
5685     </noscript>
5686     #errors
5687 wakaba 1.67 /noscript;in XML:noscript;m
5688 wakaba 1.25 /noscript;no significant content;s
5689 wakaba 1.55 /noscript/meta;element not allowed:flow;m
5690 wakaba 1.19
5691     #data
5692     <noscript xmlns="http://www.w3.org/1999/xhtml">
5693     <title/>
5694     </noscript>
5695     #errors
5696 wakaba 1.25 /noscript;no significant content;s
5697 wakaba 1.67 /noscript;in XML:noscript;m
5698 wakaba 1.55 /noscript/title;element not allowed:flow;m
5699 wakaba 1.19
5700     #data
5701     <noscript xmlns="http://www.w3.org/1999/xhtml">
5702     <link rel="stylesheet" href=""/>
5703     </noscript>
5704     #errors
5705 wakaba 1.25 /noscript;no significant content;s
5706 wakaba 1.67 /noscript;in XML:noscript;m
5707 wakaba 1.55 /noscript/link;element not allowed:flow;m
5708 wakaba 1.19
5709     #data
5710     <noscript xmlns="http://www.w3.org/1999/xhtml">
5711     <style/>
5712     </noscript>
5713     #errors
5714 wakaba 1.25 /noscript;no significant content;s
5715 wakaba 1.67 /noscript;in XML:noscript;m
5716 wakaba 1.55 /noscript/style;element not allowed:flow style;m
5717 wakaba 1.53 /noscript/style;SUBDOC
5718 wakaba 1.26
5719     #data
5720     <noscript xmlns="http://www.w3.org/1999/xhtml">
5721 wakaba 1.41 <style scoped=""/>
5722 wakaba 1.26 </noscript>
5723     #errors
5724     /noscript;no significant content;s
5725 wakaba 1.67 /noscript;in XML:noscript;m
5726 wakaba 1.53 /noscript/style;SUBDOC
5727 wakaba 1.19
5728     #data
5729     <noscript xmlns="http://www.w3.org/1999/xhtml">
5730     <meta charset="us-ascii"/>
5731     </noscript>
5732     #errors
5733 wakaba 1.25 /noscript;no significant content;s
5734 wakaba 1.67 /noscript;in XML:noscript;m
5735 wakaba 1.55 /noscript/meta;element not allowed:flow;m
5736 wakaba 1.29 /noscript/meta;element not allowed:meta charset;m
5737     /noscript/meta;in XML:charset;m
5738 wakaba 1.67 /noscript/meta/@charset;mismatched charset name not checked;u
5739 wakaba 1.42
5740     #data
5741     <noscript xmlns="http://www.w3.org/1999/xhtml">
5742     <meta http-equiv="Content-Type" content="text/html; charset=us-ascii"/>
5743     </noscript>
5744     #errors
5745     /noscript;no significant content;s
5746 wakaba 1.67 /noscript;in XML:noscript;m
5747 wakaba 1.55 /noscript/meta;element not allowed:flow;m
5748 wakaba 1.42 /noscript/meta;element not allowed:meta charset;m
5749     /noscript/meta;in XML:charset;m
5750 wakaba 1.67 /noscript/meta/@content;mismatched charset name not checked;u
5751 wakaba 1.19
5752     #data
5753     <noscript xmlns="http://www.w3.org/1999/xhtml">
5754     <noscript/>
5755     </noscript>
5756     #errors
5757 wakaba 1.25 /noscript;no significant content;s
5758 wakaba 1.67 /noscript;in XML:noscript;m
5759 wakaba 1.27 /noscript/noscript;element not allowed:minus;m
5760 wakaba 1.67 /noscript/noscript;in XML:noscript;m
5761 wakaba 1.40
5762     #data
5763     <details xmlns="http://www.w3.org/1999/xhtml"></details>
5764     #errors
5765     /details;no significant content;s
5766 wakaba 1.67 /details;child element missing;legend;m
5767 wakaba 1.40
5768     #data
5769     <details xmlns="http://www.w3.org/1999/xhtml"> </details>
5770     #errors
5771     /details;no significant content;s
5772 wakaba 1.67 /details;child element missing;legend;m
5773 wakaba 1.40
5774     #data
5775     <details xmlns="http://www.w3.org/1999/xhtml">xxxx</details>
5776     #errors
5777 wakaba 1.67 /details;child element missing;legend;m
5778 wakaba 1.40
5779     #data
5780     <details xmlns="http://www.w3.org/1999/xhtml"><p></p></details>
5781     #errors
5782 wakaba 1.67 /details;child element missing;legend;m
5783 wakaba 1.40 /details;no significant content;s
5784     /details/p;no significant content;s
5785    
5786     #data
5787     <details xmlns="http://www.w3.org/1999/xhtml"><p>xxx</p></details>
5788     #errors
5789 wakaba 1.67 /details;child element missing;legend;m
5790 wakaba 1.40
5791     #data
5792     <details xmlns="http://www.w3.org/1999/xhtml"><legend>xx</legend>xxx</details>
5793     #errors
5794    
5795     #data
5796     <details xmlns="http://www.w3.org/1999/xhtml"><legend>xx</legend><p>xxx</p></details>
5797     #errors
5798    
5799     #data
5800     <details xmlns="http://www.w3.org/1999/xhtml"><legend>xx</legend><style scoped="scoped"></style><p>xxx</p></details>
5801     #errors
5802 wakaba 1.53 /details/style;SUBDOC
5803 wakaba 1.40
5804     #data
5805     <details xmlns="http://www.w3.org/1999/xhtml">
5806     <legend>xx</legend>
5807     <style scoped="scoped"></style><p>xxx</p></details>
5808     #errors
5809 wakaba 1.53 /details/style;SUBDOC
5810 wakaba 1.40
5811     #data
5812     <details xmlns="http://www.w3.org/1999/xhtml">
5813     xx<legend>xx</legend></details>
5814     #errors
5815     /details/legend;element not allowed:details legend;m
5816    
5817     #data
5818     <details xmlns="http://www.w3.org/1999/xhtml">
5819     <p>xx</p><legend>xx</legend></details>
5820     #errors
5821     /details/legend;element not allowed:details legend;m
5822    
5823     #data
5824     <details xmlns="http://www.w3.org/1999/xhtml">
5825     <legend>yy</legend><legend>xx</legend></details>
5826     #errors
5827     /details/legend;element not allowed:details legend;m
5828    
5829     #data
5830     <details xmlns="http://www.w3.org/1999/xhtml">
5831     <ins><legend>xx</legend>aa</ins></details>
5832     #errors
5833    
5834     #data
5835     <details xmlns="http://www.w3.org/1999/xhtml">
5836     zzz<legend>yy</legend><legend>xx</legend>aaa</details>
5837     #errors
5838     /details/legend;element not allowed:details legend;m
5839     /details/legend;element not allowed:details legend;m
5840 wakaba 1.21
5841     #data
5842     <datatemplate xmlns="http://www.w3.org/1999/xhtml"/>
5843     #errors
5844    
5845     #data
5846     <datatemplate xmlns="http://www.w3.org/1999/xhtml"><rule/></datatemplate>
5847     #errors
5848    
5849     #data
5850     <datatemplate xmlns="http://www.w3.org/1999/xhtml">
5851     <rule/>
5852     </datatemplate>
5853     #errors
5854    
5855     #data
5856     <datatemplate xmlns="http://www.w3.org/1999/xhtml">
5857     <rule/><!-- -->
5858     </datatemplate>
5859     #errors
5860    
5861     #data
5862     <datatemplate xmlns="http://www.w3.org/1999/xhtml"><rule/>aa</datatemplate>
5863     #errors
5864 wakaba 1.67 /datatemplate/"aa";character not allowed;m
5865 wakaba 1.21
5866     #data
5867     <datatemplate xmlns="http://www.w3.org/1999/xhtml">aa<rule/></datatemplate>
5868     #errors
5869 wakaba 1.67 /datatemplate/"aa";character not allowed;m
5870 wakaba 1.21
5871     #data
5872     <datatemplate xmlns="http://www.w3.org/1999/xhtml"><p/></datatemplate>
5873     #errors
5874 wakaba 1.67 /datatemplate/p;element not allowed:datatemplate;m
5875 wakaba 1.25 /datatemplate/p;no significant content;s
5876 wakaba 1.21
5877     #data
5878     <head xmlns="http://www.w3.org/1999/xhtml">
5879     <title/>
5880     <datatemplate/>
5881     </head>
5882     #errors
5883    
5884     #data
5885     <body xmlns="http://www.w3.org/1999/xhtml">
5886     <datatemplate/>
5887     </body>
5888     #errors
5889 wakaba 1.25 /body;no significant content;s
5890 wakaba 1.21
5891     #data
5892     <section xmlns="http://www.w3.org/1999/xhtml">
5893     <datatemplate/>
5894     </section>
5895     #errors
5896 wakaba 1.25 /section;no significant content;s
5897 wakaba 1.21
5898     #data
5899     <p xmlns="http://www.w3.org/1999/xhtml">
5900     <datatemplate/>
5901     </p>
5902     #errors
5903 wakaba 1.27 /p/datatemplate;element not allowed:phrasing;m
5904 wakaba 1.25 /p;no significant content;s
5905 wakaba 1.21
5906     #data
5907 wakaba 1.59 <datetemplate xmlns="http://www.w3.org/1999/xhtml"/>
5908     #errors
5909     /datetemplate;element not defined;m
5910    
5911     #data
5912 wakaba 1.21 <rule xmlns="http://www.w3.org/1999/xhtml"/>
5913     #errors
5914    
5915     #data
5916     <rule xmlns="http://www.w3.org/1999/xhtml"><p/></rule>
5917     #errors
5918 wakaba 1.25 /rule/p;no significant content;s
5919 wakaba 1.21
5920     #data
5921     <rule xmlns="http://www.w3.org/1999/xhtml">aa</rule>
5922     #errors
5923    
5924     #data
5925     <rule xmlns="http://www.w3.org/1999/xhtml"><!----><?a?></rule>
5926     #errors
5927    
5928     #data
5929     <rule xmlns="http://www.w3.org/1999/xhtml"><unknownelement/></rule>
5930     #errors
5931 wakaba 1.43 /rule/unknownelement;element not defined;m
5932 wakaba 1.21
5933     #data
5934     <rule xmlns="http://www.w3.org/1999/xhtml"><unknown xmlns=""/></rule>
5935     #errors
5936 wakaba 1.67 /rule/unknown;unknown element;u
5937 wakaba 1.21
5938     #data
5939     <rule xmlns="http://www.w3.org/1999/xhtml">
5940     <unknown xmlns="http://www.example.org/"/>
5941     </rule>
5942     #errors
5943 wakaba 1.67 /rule/unknown;unknown element;u
5944 wakaba 1.21
5945     #data
5946     <p xmlns="http://www.w3.org/1999/xhtml"><rule/></p>
5947     #errors
5948 wakaba 1.27 /p/rule;element not allowed:phrasing;m
5949 wakaba 1.25 /p;no significant content;s
5950 wakaba 1.21
5951     #data
5952     <body xmlns="http://www.w3.org/1999/xhtml"><rule/></body>
5953     #errors
5954 wakaba 1.55 /body/rule;element not allowed:flow;m
5955 wakaba 1.25 /body;no significant content;s
5956 wakaba 1.21
5957     #data
5958     <head xmlns="http://www.w3.org/1999/xhtml"><title/><rule/></head>
5959     #errors
5960 wakaba 1.27 /head/rule;element not allowed:metadata;m
5961 wakaba 1.21
5962     #data
5963     <nest xmlns="http://www.w3.org/1999/xhtml"/>
5964     #errors
5965    
5966     #data
5967     <nest xmlns="http://www.w3.org/1999/xhtml"> </nest>
5968     #errors
5969    
5970     #data
5971     <nest xmlns="http://www.w3.org/1999/xhtml">aa</nest>
5972     #errors
5973 wakaba 1.27 /nest/"aa";character not allowed:empty;m
5974 wakaba 1.21
5975     #data
5976     <nest xmlns="http://www.w3.org/1999/xhtml"><p/></nest>
5977     #errors
5978 wakaba 1.27 /nest/p;element not allowed:empty;m
5979 wakaba 1.25 /nest/p;no significant content;s
5980 wakaba 1.21
5981     #data
5982     <nest xmlns="http://www.w3.org/1999/xhtml"><!----></nest>
5983     #errors
5984    
5985     #data
5986     <nest xmlns="http://www.w3.org/1999/xhtml"><nest/></nest>
5987     #errors
5988 wakaba 1.27 /nest/nest;element not allowed:empty;m
5989 wakaba 1.21
5990     #data
5991     <p xmlns="http://www.w3.org/1999/xhtml"><nest/></p>
5992     #errors
5993 wakaba 1.27 /p/nest;element not allowed:phrasing;m
5994 wakaba 1.25 /p;no significant content;s
5995 wakaba 1.21
5996     #data
5997     <head xmlns="http://www.w3.org/1999/xhtml"><title/><nest/></head>
5998     #errors
5999 wakaba 1.27 /head/nest;element not allowed:metadata;m
6000 wakaba 1.21
6001     #data
6002     <div xmlns="http://www.w3.org/1999/xhtml"><nest/></div>
6003     #errors
6004 wakaba 1.55 /div/nest;element not allowed:flow;m
6005 wakaba 1.25 /div;no significant content;s
6006 wakaba 1.21
6007     #data
6008     <datatemplate xmlns="http://www.w3.org/1999/xhtml"><nest/></datatemplate>
6009     #errors
6010 wakaba 1.67 /datatemplate/nest;element not allowed:datatemplate;m
6011 wakaba 1.21
6012     #data
6013     <rule xmlns="http://www.w3.org/1999/xhtml"><nest/></rule>
6014     #errors
6015    
6016     #data
6017     <rule xmlns="http://www.w3.org/1999/xhtml"><br><nest/></br></rule>
6018     #errors
6019    
6020     #data
6021     <rule xmlns="http://www.w3.org/1999/xhtml"><br><nest/>a</br></rule>
6022     #errors
6023 wakaba 1.27 /rule/br/"a";character not allowed:empty;m
6024 wakaba 1.21
6025     #data
6026     <rule xmlns="http://www.w3.org/1999/xhtml"><title><nest/></title></rule>
6027     #errors
6028    
6029     #data
6030     <rule xmlns="http://www.w3.org/1999/xhtml"><title><nest/>aa</title></rule>
6031     #errors
6032    
6033     #data
6034     <rule xmlns="http://www.w3.org/1999/xhtml">
6035     <plaintext><nest/></plaintext>
6036     </rule>
6037     #errors
6038 wakaba 1.43 /rule/plaintext;element not defined;m
6039 wakaba 1.21
6040     #data
6041     <rule xmlns="http://www.w3.org/1999/xhtml"><textarea><nest/></textarea></rule>
6042     #errors
6043    
6044     #data
6045     <rule xmlns="http://www.w3.org/1999/xhtml"><section><nest/></section></rule>
6046     #errors
6047 wakaba 1.25 /rule/section;no significant content;s
6048 wakaba 1.21
6049     #data
6050     <rule xmlns="http://www.w3.org/1999/xhtml">
6051     <section><style scoped=""/><nest/></section>
6052     </rule>
6053     #errors
6054 wakaba 1.53 /rule/section/style;SUBDOC
6055 wakaba 1.25 /rule/section;no significant content;s
6056 wakaba 1.21
6057     #data
6058     <rule xmlns="http://www.w3.org/1999/xhtml">
6059     <section><nest/><style scoped=""/></section>
6060     </rule>
6061     #errors
6062 wakaba 1.53 /rule/section/style;SUBDOC
6063 wakaba 1.25 /rule/section;no significant content;s
6064 wakaba 1.21
6065     #data
6066     <rule xmlns="http://www.w3.org/1999/xhtml">
6067     <section><nest/><style scoped=""/><p/></section>
6068     </rule>
6069     #errors
6070 wakaba 1.53 /rule/section/style;SUBDOC
6071 wakaba 1.25 /rule/section;no significant content;s
6072     /rule/section/p;no significant content;s
6073 wakaba 1.21
6074     #data
6075     <rule xmlns="http://www.w3.org/1999/xhtml">
6076     <section><p/><style scoped=""/><nest/></section>
6077     </rule>
6078     #errors
6079 wakaba 1.55 /rule/section/style;element not allowed:flow style;m
6080 wakaba 1.53 /rule/section/style;SUBDOC
6081 wakaba 1.25 /rule/section;no significant content;s
6082     /rule/section/p;no significant content;s
6083 wakaba 1.21
6084     #data
6085     <rule xmlns="http://www.w3.org/1999/xhtml"><p><nest/></p></rule>
6086     #errors
6087 wakaba 1.25 /rule/p;no significant content;s
6088 wakaba 1.21
6089     #data
6090     <rule xmlns="http://www.w3.org/1999/xhtml"><p><nest/>aaa</p></rule>
6091     #errors
6092    
6093     #data
6094     <rule xmlns="http://www.w3.org/1999/xhtml"><p><!----><nest/></p></rule>
6095     #errors
6096 wakaba 1.25 /rule/p;no significant content;s
6097 wakaba 1.21
6098     #data
6099     <rule xmlns="http://www.w3.org/1999/xhtml"><body><nest/></body></rule>
6100     #errors
6101 wakaba 1.25 /rule/body;no significant content;s
6102 wakaba 1.21
6103     #data
6104     <rule xmlns="http://www.w3.org/1999/xhtml"><em><nest/></em></rule>
6105     #errors
6106 wakaba 1.25 /rule/em;no significant content;s
6107 wakaba 1.21
6108     #data
6109     <rule xmlns="http://www.w3.org/1999/xhtml"><em>aa<nest/></em></rule>
6110     #errors
6111    
6112     #data
6113     <rule xmlns="http://www.w3.org/1999/xhtml"><em><nest/><i/></em></rule>
6114     #errors
6115 wakaba 1.25 /rule/em;no significant content;s
6116     /rule/em/i;no significant content;s
6117 wakaba 1.21
6118     #data
6119     <rule xmlns="http://www.w3.org/1999/xhtml"><sub><nest/></sub></rule>
6120     #errors
6121 wakaba 1.25 /rule/sub;no significant content;s
6122 wakaba 1.21
6123     #data
6124     <rule xmlns="http://www.w3.org/1999/xhtml"><sup><nest/><sub/></sup></rule>
6125     #errors
6126 wakaba 1.25 /rule/sup;no significant content;s
6127     /rule/sup/sub;no significant content;s
6128 wakaba 1.21
6129     #data
6130     <rule xmlns="http://www.w3.org/1999/xhtml"><sub><em><nest/></em></sub></rule>
6131     #errors
6132 wakaba 1.25 /rule/sub;no significant content;s
6133     /rule/sub/em;no significant content;s
6134 wakaba 1.21
6135     #data
6136     <rule xmlns="http://www.w3.org/1999/xhtml"><div><nest/></div></rule>
6137     #errors
6138 wakaba 1.25 /rule/div;no significant content;s
6139 wakaba 1.21
6140     #data
6141     <rule xmlns="http://www.w3.org/1999/xhtml"><div><nest/><p/></div></rule>
6142     #errors
6143 wakaba 1.25 /rule/div;no significant content;s
6144     /rule/div/p;no significant content;s
6145 wakaba 1.21
6146     #data
6147     <rule xmlns="http://www.w3.org/1999/xhtml"><div><nest/><i/></div></rule>
6148     #errors
6149 wakaba 1.25 /rule/div;no significant content;s
6150     /rule/div/i;no significant content;s
6151 wakaba 1.21
6152     #data
6153     <rule xmlns="http://www.w3.org/1999/xhtml"><div><nest/>aa</div></rule>
6154     #errors
6155    
6156     #data
6157     <rule xmlns="http://www.w3.org/1999/xhtml"><div><nest/><p/><i/></div></rule>
6158     #errors
6159 wakaba 1.25 /rule/div;no significant content;s
6160     /rule/div/p;no significant content;s
6161     /rule/div/i;no significant content;s
6162 wakaba 1.21
6163     #data
6164     <rule xmlns="http://www.w3.org/1999/xhtml"><div><p/><nest/></div></rule>
6165     #errors
6166 wakaba 1.25 /rule/div;no significant content;s
6167     /rule/div/p;no significant content;s
6168 wakaba 1.21
6169     #data
6170     <rule xmlns="http://www.w3.org/1999/xhtml"><div><i/><nest/></div></rule>
6171     #errors
6172 wakaba 1.25 /rule/div;no significant content;s
6173     /rule/div/i;no significant content;s
6174 wakaba 1.21
6175     #data
6176     <rule xmlns="http://www.w3.org/1999/xhtml"><div>aa<nest/></div></rule>
6177     #errors
6178    
6179     #data
6180     <rule xmlns="http://www.w3.org/1999/xhtml"><div>aa<nest/><p/></div></rule>
6181     #errors
6182 wakaba 1.25 /rule/div/p;no significant content;s
6183 wakaba 1.21
6184     #data
6185     <rule xmlns="http://www.w3.org/1999/xhtml"><aside><nest/></aside></rule>
6186     #errors
6187 wakaba 1.25 /rule/aside;no significant content;s
6188 wakaba 1.21
6189     #data
6190     <rule xmlns="http://www.w3.org/1999/xhtml"><aside><nest/>aa</aside></rule>
6191     #errors
6192    
6193     #data
6194     <rule xmlns="http://www.w3.org/1999/xhtml"><aside><nest/><i/></aside></rule>
6195     #errors
6196 wakaba 1.25 /rule/aside;no significant content;s
6197     /rule/aside/i;no significant content;s
6198 wakaba 1.21
6199     #data
6200     <rule xmlns="http://www.w3.org/1999/xhtml"><aside><nest/><p/></aside></rule>
6201     #errors
6202 wakaba 1.25 /rule/aside;no significant content;s
6203     /rule/aside/p;no significant content;s
6204 wakaba 1.21
6205     #data
6206     <rule xmlns="http://www.w3.org/1999/xhtml"><aside>aa<nest/></aside></rule>
6207     #errors
6208    
6209     #data
6210     <rule xmlns="http://www.w3.org/1999/xhtml"><aside><i/><nest/></aside></rule>
6211     #errors
6212 wakaba 1.25 /rule/aside;no significant content;s
6213     /rule/aside/i;no significant content;s
6214 wakaba 1.21
6215     #data
6216     <rule xmlns="http://www.w3.org/1999/xhtml"><aside><p/><nest/></aside></rule>
6217     #errors
6218 wakaba 1.25 /rule/aside;no significant content;s
6219     /rule/aside/p;no significant content;s
6220 wakaba 1.21
6221     #data
6222     <rule xmlns="http://www.w3.org/1999/xhtml">
6223     <aside><nest/><style scoped=""/></aside>
6224     </rule>
6225     #errors
6226 wakaba 1.53 /rule/aside/style;SUBDOC
6227 wakaba 1.25 /rule/aside;no significant content;s
6228 wakaba 1.21
6229     #data
6230     <rule xmlns="http://www.w3.org/1999/xhtml">
6231     <aside><nest/><style scoped=""/>aa</aside>
6232     </rule>
6233     #errors
6234 wakaba 1.53 /rule/aside/style;SUBDOC
6235 wakaba 1.21
6236     #data
6237     <rule xmlns="http://www.w3.org/1999/xhtml">
6238     <aside><nest/><style scoped=""/><i/></aside>
6239     </rule>
6240     #errors
6241 wakaba 1.53 /rule/aside/style;SUBDOC
6242 wakaba 1.25 /rule/aside;no significant content;s
6243     /rule/aside/i;no significant content;s
6244 wakaba 1.21
6245     #data
6246     <rule xmlns="http://www.w3.org/1999/xhtml">
6247     <aside><nest/><style scoped=""/><blockquote/></aside>
6248     </rule>
6249     #errors
6250 wakaba 1.53 /rule/aside/style;SUBDOC
6251 wakaba 1.25 /rule/aside;no significant content;s
6252     /rule/aside/blockquote;no significant content;s
6253 wakaba 1.21
6254     #data
6255     <rule xmlns="http://www.w3.org/1999/xhtml">
6256     <aside><nest/><style scoped=""/><blockquote/><p/></aside>
6257     </rule>
6258     #errors
6259 wakaba 1.53 /rule/aside/style;SUBDOC
6260 wakaba 1.25 /rule/aside;no significant content;s
6261     /rule/aside/blockquote;no significant content;s
6262     /rule/aside/p;no significant content;s
6263 wakaba 1.21
6264     #data
6265     <rule xmlns="http://www.w3.org/1999/xhtml">
6266     <aside><nest/><style scoped=""/><blockquote/><i/></aside>
6267     </rule>
6268     #errors
6269 wakaba 1.53 /rule/aside/style;SUBDOC
6270 wakaba 1.25 /rule/aside;no significant content;s
6271     /rule/aside/blockquote;no significant content;s
6272     /rule/aside/i;no significant content;s
6273 wakaba 1.21
6274     #data
6275     <rule xmlns="http://www.w3.org/1999/xhtml">
6276     <aside><nest/><style scoped=""/><p/></aside>
6277     </rule>
6278     #errors
6279 wakaba 1.53 /rule/aside/style;SUBDOC
6280 wakaba 1.25 /rule/aside;no significant content;s
6281     /rule/aside/p;no significant content;s
6282 wakaba 1.21
6283     #data
6284     <rule xmlns="http://www.w3.org/1999/xhtml">
6285     <aside><nest/>aa<style scoped=""/></aside>
6286     </rule>
6287     #errors
6288 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6289 wakaba 1.53 /rule/aside/style;SUBDOC
6290 wakaba 1.21
6291     #data
6292     <rule xmlns="http://www.w3.org/1999/xhtml">
6293     <aside><nest/><i/><style scoped=""/></aside>
6294     </rule>
6295     #errors
6296 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6297 wakaba 1.53 /rule/aside/style;SUBDOC
6298 wakaba 1.25 /rule/aside;no significant content;s
6299     /rule/aside/i;no significant content;s
6300 wakaba 1.21
6301     #data
6302     <rule xmlns="http://www.w3.org/1999/xhtml">
6303     <aside><nest/><p/><style scoped=""/></aside>
6304     </rule>
6305     #errors
6306 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6307 wakaba 1.53 /rule/aside/style;SUBDOC
6308 wakaba 1.25 /rule/aside;no significant content;s
6309     /rule/aside/p;no significant content;s
6310 wakaba 1.21
6311     #data
6312     <rule xmlns="http://www.w3.org/1999/xhtml">
6313     <aside>aa<nest/></aside>
6314     </rule>
6315     #errors
6316    
6317     #data
6318     <rule xmlns="http://www.w3.org/1999/xhtml">
6319     <aside><i/><nest/></aside>
6320     </rule>
6321     #errors
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><blockquote/><nest/></aside>
6328     </rule>
6329     #errors
6330 wakaba 1.25 /rule/aside;no significant content;s
6331     /rule/aside/blockquote;no significant content;s
6332 wakaba 1.21
6333     #data
6334     <rule xmlns="http://www.w3.org/1999/xhtml">
6335     <aside><p/><nest/></aside>
6336     </rule>
6337     #errors
6338 wakaba 1.25 /rule/aside;no significant content;s
6339     /rule/aside/p;no significant content;s
6340 wakaba 1.21
6341     #data
6342     <rule xmlns="http://www.w3.org/1999/xhtml">
6343     <aside>aa<nest/><style scoped=""/></aside>
6344     </rule>
6345     #errors
6346 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6347 wakaba 1.53 /rule/aside/style;SUBDOC
6348 wakaba 1.21
6349     #data
6350     <rule xmlns="http://www.w3.org/1999/xhtml">
6351     <aside><i/><nest/><style scoped=""/></aside>
6352     </rule>
6353     #errors
6354 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6355 wakaba 1.53 /rule/aside/style;SUBDOC
6356 wakaba 1.25 /rule/aside;no significant content;s
6357     /rule/aside/i;no significant content;s
6358 wakaba 1.21
6359     #data
6360     <rule xmlns="http://www.w3.org/1999/xhtml">
6361     <aside><blockquote/><nest/><style scoped=""/></aside>
6362     </rule>
6363     #errors
6364 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6365 wakaba 1.53 /rule/aside/style;SUBDOC
6366 wakaba 1.37 /rule/aside/blockquote;no significant content;s
6367 wakaba 1.25 /rule/aside;no significant content;s
6368 wakaba 1.21
6369     #data
6370     <rule xmlns="http://www.w3.org/1999/xhtml">
6371     <aside><p/><nest/><style scoped=""/></aside>
6372     </rule>
6373     #errors
6374 wakaba 1.55 /rule/aside/style;element not allowed:flow style;m
6375 wakaba 1.53 /rule/aside/style;SUBDOC
6376 wakaba 1.25 /rule/aside;no significant content;s
6377     /rule/aside/p;no significant content;s
6378 wakaba 1.65
6379     #data
6380     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby><nest/></ruby></rule>
6381     #errors
6382     /rule/ruby;no significant content;s
6383 wakaba 1.67 /rule/ruby;element missing;rt;m
6384 wakaba 1.65
6385     #data
6386     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby><nest/><rt>x</rt></ruby></rule>
6387     #errors
6388     /rule/ruby/rt;no significant content before;s
6389    
6390     #data
6391     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby><nest/>x<rt>y</rt></ruby></rule>
6392     #errors
6393    
6394     #data
6395     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<nest/><rt>y</rt></ruby></rule>
6396     #errors
6397    
6398     #data
6399     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rt>y</rt><nest/></ruby></rule>
6400     #errors
6401    
6402     #data
6403     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rt><nest/></rt></ruby></rule>
6404     #errors
6405     /rule/ruby/rt;no significant content;s
6406    
6407     #data
6408     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp><nest/>(</rp><rt>y</rt><rp>)</rp></ruby></rule>
6409     #errors
6410    
6411     #data
6412     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp><nest/></rp><rt>y</rt><rp>)</rp></ruby></rule>
6413     #errors
6414     /rule/ruby/rp;rp:syntax error;m
6415    
6416     #data
6417     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>(<nest/>(</rp><rt>y</rt><rp>]</rp></ruby></rule>
6418     #errors
6419     /rule/ruby/rp;rp:syntax error;m
6420    
6421     #data
6422     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><rt><nest/></rt><rp>]</rp></ruby></rule>
6423     #errors
6424     /rule/ruby/rt;no significant content;s
6425    
6426     #data
6427     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><rt>y</rt><rp>]<nest/></rp></ruby></rule>
6428     #errors
6429    
6430     #data
6431     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><rt>y</rt><rp>]<nest/></rp></ruby></rule>
6432     #errors
6433    
6434     #data
6435     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><nest/><rt>y</rt><rp>]</rp></ruby></rule>
6436     #errors
6437    
6438     #data
6439     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><rt>y</rt><nest/><rp>]</rp></ruby></rule>
6440     #errors
6441    
6442     #data
6443     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><rt>c</rt><rp>]</rp><nest/></ruby></rule>
6444     #errors
6445    
6446     #data
6447     <rule xmlns="http://www.w3.org/1999/xhtml"><ruby>x<rp>[</rp><rt>c</rt><nest/></ruby></rule>
6448     #errors
6449 wakaba 1.67 /rule/ruby;element missing;rp;m
6450 wakaba 1.65
6451     #data
6452     <rule xmlns="http://www.w3.org/1999/xhtml"><rt><nest/></rt></rule>
6453     #errors
6454     /rule/rt;no significant content;s
6455    
6456     #data
6457     <rule xmlns="http://www.w3.org/1999/xhtml"><rt>x<nest/></rt></rule>
6458     #errors
6459    
6460     #data
6461     <rule xmlns="http://www.w3.org/1999/xhtml"><rp><nest/></rp></rule>
6462     #errors
6463     /rule/rp;rp:syntax error;m
6464    
6465     #data
6466     <rule xmlns="http://www.w3.org/1999/xhtml"><rp>(<nest/></rp></rule>
6467     #errors
6468    
6469     #data
6470     <rule xmlns="http://www.w3.org/1999/xhtml"><rp><nest/>)</rp></rule>
6471     #errors
6472     /rule/rp;rp:syntax error;m
6473    
6474     #data
6475     <rule xmlns="http://www.w3.org/1999/xhtml"><rb><nest/></rb></rule>
6476     #errors
6477     /rule/rb;element not defined;m
6478 wakaba 1.21
6479     #data
6480     <rule xmlns="http://www.w3.org/1999/xhtml"><ins><nest/></ins></rule>
6481     #errors
6482    
6483     #data
6484     <rule xmlns="http://www.w3.org/1999/xhtml"><p><ins><nest/></ins></p></rule>
6485     #errors
6486 wakaba 1.25 /rule/p;no significant content;s
6487 wakaba 1.21
6488     #data
6489     <rule xmlns="http://www.w3.org/1999/xhtml"><html><nest/></html></rule>
6490     #errors
6491 wakaba 1.67 /rule/html;child element missing;head;m
6492     /rule/html;child element missing;body;m
6493 wakaba 1.21
6494     #data
6495     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6496     <head><title/></head><body/><nest/>
6497     </html></rule>
6498     #errors
6499 wakaba 1.25 /rule/html/body;no significant content;s
6500 wakaba 1.21
6501     #data
6502     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6503     <head><title/></head><nest/><body/>
6504     </html></rule>
6505     #errors
6506 wakaba 1.25 /rule/html/body;no significant content;s
6507 wakaba 1.21
6508     #data
6509     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6510     <nest/><head><title/></head><body/>
6511     </html></rule>
6512     #errors
6513 wakaba 1.25 /rule/html/body;no significant content;s
6514 wakaba 1.21
6515     #data
6516     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6517     <head><title/></head><body/><nest/><body/>
6518     </html></rule>
6519     #errors
6520 wakaba 1.67 /rule/html/body;element not allowed;m
6521 wakaba 1.25 /rule/html/body;no significant content;s
6522     /rule/html/body;no significant content;s
6523 wakaba 1.21
6524     #data
6525     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6526     <head><title/></head><nest/>
6527     </html></rule>
6528     #errors
6529 wakaba 1.67 /rule/html;child element missing;body;m
6530 wakaba 1.21
6531     #data
6532     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6533     <nest/><body/>
6534     </html></rule>
6535     #errors
6536 wakaba 1.67 /rule/html/body;ps element missing;head;m
6537 wakaba 1.25 /rule/html/body;no significant content;s
6538 wakaba 1.21
6539     #data
6540     <rule xmlns="http://www.w3.org/1999/xhtml"><html>
6541     <head><title/></head><body/><nest/>
6542     </html></rule>
6543     #errors
6544 wakaba 1.25 /rule/html/body;no significant content;s
6545 wakaba 1.21
6546     #data
6547     <rule xmlns="http://www.w3.org/1999/xhtml">
6548     <head><nest/></head>
6549     </rule>
6550     #errors
6551 wakaba 1.67 /rule/head;child element missing;title;m
6552 wakaba 1.21
6553     #data
6554     <rule xmlns="http://www.w3.org/1999/xhtml">
6555     <head><title/><nest/></head>
6556     </rule>
6557     #errors
6558    
6559     #data
6560     <rule xmlns="http://www.w3.org/1999/xhtml">
6561     <head><nest/><title/></head>
6562     </rule>
6563     #errors
6564    
6565     #data
6566     <rule xmlns="http://www.w3.org/1999/xhtml">
6567     <head><nest/><base href="http://www.example.com/"/><title/></head>
6568     </rule>
6569     #errors
6570    
6571     #data
6572     <rule xmlns="http://www.w3.org/1999/xhtml">
6573     <head><base href="http://www.example.com/"/><nest/><title/></head>
6574     </rule>
6575     #errors
6576    
6577     #data
6578     <rule xmlns="http://www.w3.org/1999/xhtml">
6579     <head><meta charset="us-ascii"/><nest/><title/></head>
6580     </rule>
6581     #errors
6582 wakaba 1.29 /rule/head/meta;element not allowed:meta charset;m
6583     /rule/head/meta;in XML:charset;m
6584 wakaba 1.67 /rule/head/meta/@charset;mismatched charset name not checked;u
6585 wakaba 1.21
6586     #data
6587     <rule xmlns="http://www.w3.org/1999/xhtml">
6588     <head><nest/><meta charset="us-ascii"/><title/></head>
6589     </rule>
6590     #errors
6591 wakaba 1.29 /rule/head/meta;element not allowed:meta charset;m
6592     /rule/head/meta;in XML:charset;m
6593 wakaba 1.67 /rule/head/meta/@charset;mismatched charset name not checked;u
6594 wakaba 1.21
6595     #data
6596     <rule xmlns="http://www.w3.org/1999/xhtml"><style><nest/></style></rule>
6597     #errors
6598 wakaba 1.53 /rule/style;SUBDOC
6599 wakaba 1.21
6600     #data
6601     <rule xmlns="http://www.w3.org/1999/xhtml"><script><nest/></script></rule>
6602     #errors
6603 wakaba 1.62 /rule/script;SUBDOC
6604 wakaba 1.21
6605     #data
6606     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><nest/></footer></rule>
6607     #errors
6608 wakaba 1.25 /rule/footer;no significant content;s
6609 wakaba 1.21
6610     #data
6611     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><nest/>a</footer></rule>
6612     #errors
6613    
6614     #data
6615     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><nest/><i/></footer></rule>
6616     #errors
6617 wakaba 1.25 /rule/footer;no significant content;s
6618     /rule/footer/i;no significant content;s
6619 wakaba 1.21
6620     #data
6621     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><nest/><ul/></footer></rule>
6622     #errors
6623 wakaba 1.25 /rule/footer;no significant content;s
6624 wakaba 1.21
6625     #data
6626     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><nest/><p/></footer></rule>
6627     #errors
6628 wakaba 1.25 /rule/footer;no significant content;s
6629     /rule/footer/p;no significant content;s
6630 wakaba 1.21
6631     #data
6632     <rule xmlns="http://www.w3.org/1999/xhtml"><footer>a<nest/></footer></rule>
6633     #errors
6634    
6635     #data
6636     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><i/><nest/></footer></rule>
6637     #errors
6638 wakaba 1.25 /rule/footer;no significant content;s
6639     /rule/footer/i;no significant content;s
6640 wakaba 1.21
6641     #data
6642     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><ol/><nest/></footer></rule>
6643     #errors
6644 wakaba 1.25 /rule/footer;no significant content;s
6645 wakaba 1.21
6646     #data
6647     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><p/><nest/></footer></rule>
6648     #errors
6649 wakaba 1.25 /rule/footer;no significant content;s
6650     /rule/footer/p;no significant content;s
6651 wakaba 1.21
6652     #data
6653     <rule xmlns="http://www.w3.org/1999/xhtml"><footer>a<nest/><p/></footer></rule>
6654     #errors
6655 wakaba 1.25 /rule/footer/p;no significant content;s
6656 wakaba 1.21
6657     #data
6658     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><p/><nest/>a</footer></rule>
6659     #errors
6660 wakaba 1.25 /rule/footer/p;no significant content;s
6661 wakaba 1.21
6662     #data
6663     <rule xmlns="http://www.w3.org/1999/xhtml"><footer><nest/><h1/></footer></rule>
6664     #errors
6665 wakaba 1.27 /rule/footer/h1;element not allowed:minus;m
6666 wakaba 1.25 /rule/footer;no significant content;s
6667     /rule/footer/h1;no significant content;s
6668 wakaba 1.21
6669     #data
6670     <rule xmlns="http://www.w3.org/1999/xhtml"><dialog><nest/></dialog></rule>
6671     #errors
6672    
6673     #data
6674     <rule xmlns="http://www.w3.org/1999/xhtml">
6675     <dialog><dt/><nest/></dialog>
6676     </rule>
6677     #errors
6678 wakaba 1.67 /rule/dialog;child element missing;dd;m
6679 wakaba 1.25 /rule/dialog/dt;no significant content;s
6680 wakaba 1.21
6681     #data
6682     <rule xmlns="http://www.w3.org/1999/xhtml">
6683     <dialog><dt/><dd/><nest/></dialog>
6684     </rule>
6685     #errors
6686 wakaba 1.25 /rule/dialog/dt;no significant content;s
6687     /rule/dialog/dd;no significant content;s
6688 wakaba 1.21
6689     #data
6690     <rule xmlns="http://www.w3.org/1999/xhtml">
6691     <dialog><dt/><dd/><dt/><nest/></dialog>
6692     </rule>
6693     #errors
6694 wakaba 1.67 /rule/dialog;child element missing;dd;m
6695 wakaba 1.25 /rule/dialog/dt;no significant content;s
6696     /rule/dialog/dd;no significant content;s
6697     /rule/dialog/dt;no significant content;s
6698 wakaba 1.21
6699     #data
6700     <rule xmlns="http://www.w3.org/1999/xhtml">
6701     <dialog><dt/><dd/><dt/><dd/><nest/></dialog>
6702     </rule>
6703     #errors
6704 wakaba 1.25 /rule/dialog/dt;no significant content;s
6705     /rule/dialog/dd;no significant content;s
6706     /rule/dialog/dt;no significant content;s
6707     /rule/dialog/dd;no significant content;s
6708 wakaba 1.21
6709     #data
6710     <rule xmlns="http://www.w3.org/1999/xhtml">
6711     <dialog><dt/><nest/><dd/></dialog>
6712     </rule>
6713     #errors
6714 wakaba 1.25 /rule/dialog/dt;no significant content;s
6715     /rule/dialog/dd;no significant content;s
6716 wakaba 1.21
6717     #data
6718     <rule xmlns="http://www.w3.org/1999/xhtml">
6719     <dialog><dt/><nest/><dt/><dd/></dialog>
6720     </rule>
6721     #errors
6722 wakaba 1.67 /rule/dialog/dt;ps element missing;dd;m
6723 wakaba 1.25 /rule/dialog/dt;no significant content;s
6724     /rule/dialog/dt;no significant content;s
6725     /rule/dialog/dd;no significant content;s
6726 wakaba 1.21
6727     #data
6728     <rule xmlns="http://www.w3.org/1999/xhtml">
6729     <dialog><nest/><dt/></dialog>
6730     </rule>
6731     #errors
6732 wakaba 1.67 /rule/dialog;child element missing;dd;m
6733 wakaba 1.25 /rule/dialog/dt;no significant content;s
6734 wakaba 1.21
6735     #data
6736     <rule xmlns="http://www.w3.org/1999/xhtml">
6737     <dialog><nest/><dt/><dd/></dialog>
6738     </rule>
6739     #errors
6740 wakaba 1.25 /rule/dialog/dt;no significant content;s
6741     /rule/dialog/dd;no significant content;s
6742 wakaba 1.21
6743     #data
6744     <rule xmlns="http://www.w3.org/1999/xhtml"><ul><nest/></ul></rule>
6745     #errors
6746    
6747     #data
6748     <rule xmlns="http://www.w3.org/1999/xhtml"><ul><li/><nest/></ul></rule>
6749     #errors
6750 wakaba 1.25 /rule/ul/li;no significant content;s
6751 wakaba 1.21
6752     #data
6753     <rule xmlns="http://www.w3.org/1999/xhtml"><ul><nest/><li/></ul></rule>
6754     #errors
6755 wakaba 1.25 /rule/ul/li;no significant content;s
6756 wakaba 1.21
6757     #data
6758     <rule xmlns="http://www.w3.org/1999/xhtml"><ol><nest/></ol></rule>
6759     #errors
6760    
6761     #data
6762     <rule xmlns="http://www.w3.org/1999/xhtml"><dl><nest/></dl></rule>
6763     #errors
6764    
6765     #data
6766     <rule xmlns="http://www.w3.org/1999/xhtml"><dl><nest/><dt/></dl></rule>
6767     #errors
6768 wakaba 1.67 /rule/dl;child element missing;dd;m
6769 wakaba 1.25 /rule/dl/dt;no significant content;s
6770 wakaba 1.21
6771     #data
6772     <rule xmlns="http://www.w3.org/1999/xhtml"><dl><dt/><nest/></dl></rule>
6773     #errors
6774 wakaba 1.67 /rule/dl;child element missing;dd;m
6775 wakaba 1.25 /rule/dl/dt;no significant content;s
6776 wakaba 1.21
6777     #data
6778     <rule xmlns="http://www.w3.org/1999/xhtml"><dl><dt/><nest/><dd/></dl></rule>
6779     #errors
6780 wakaba 1.25 /rule/dl/dt;no significant content;s
6781     /rule/dl/dd;no significant content;s
6782 wakaba 1.21
6783     #data
6784     <rule xmlns="http://www.w3.org/1999/xhtml"><dl><dt/><dd/><nest/></dl></rule>
6785     #errors
6786 wakaba 1.25 /rule/dl/dt;no significant content;s
6787     /rule/dl/dd;no significant content;s
6788 wakaba 1.21
6789     #data
6790     <rule xmlns="http://www.w3.org/1999/xhtml"><dl><nest/><dt/><dd/></dl></rule>
6791     #errors
6792 wakaba 1.25 /rule/dl/dt;no significant content;s
6793     /rule/dl/dd;no significant content;s
6794 wakaba 1.21
6795     #data
6796     <rule xmlns="http://www.w3.org/1999/xhtml">
6797     <dl><dt/><dd/><nest/><dt/><dd/></dl>
6798     </rule>
6799     #errors
6800 wakaba 1.25 /rule/dl/dt;no significant content;s
6801     /rule/dl/dd;no significant content;s
6802     /rule/dl/dt;no significant content;s
6803     /rule/dl/dd;no significant content;s
6804 wakaba 1.21
6805     #data
6806     <rule xmlns="http://www.w3.org/1999/xhtml">
6807     <dl><dt/><nest/><dt/><dd/></dl>
6808     </rule>
6809     #errors
6810 wakaba 1.25 /rule/dl/dt;no significant content;s
6811     /rule/dl/dt;no significant content;s
6812     /rule/dl/dd;no significant content;s
6813 wakaba 1.21
6814     #data
6815     <rule xmlns="http://www.w3.org/1999/xhtml">
6816     <dl><dt/><dd/><nest/><dd/></dl>
6817     </rule>
6818     #errors
6819 wakaba 1.25 /rule/dl/dt;no significant content;s
6820     /rule/dl/dd;no significant content;s
6821     /rule/dl/dd;no significant content;s
6822 wakaba 1.21
6823     #data
6824     <rule xmlns="http://www.w3.org/1999/xhtml"><del><nest/></del></rule>
6825     #errors
6826    
6827     #data
6828     <rule xmlns="http://www.w3.org/1999/xhtml"><del><nest/>aa</del></rule>
6829     #errors
6830    
6831     #data
6832     <rule xmlns="http://www.w3.org/1999/xhtml"><del><nest/><p/></del></rule>
6833     #errors
6834 wakaba 1.25 /rule/del/p;no significant content;s
6835 wakaba 1.21
6836     #data
6837     <rule xmlns="http://www.w3.org/1999/xhtml">
6838     <video src="/"><nest/></video>
6839     </rule>
6840     #errors
6841    
6842     #data
6843     <rule xmlns="http://www.w3.org/1999/xhtml">
6844     <video><nest/><source src="/"/></video>
6845     </rule>
6846     #errors
6847    
6848     #data
6849     <rule xmlns="http://www.w3.org/1999/xhtml">
6850     <video><source src="/"/><nest/><source src="/"/></video>
6851     </rule>
6852     #errors
6853    
6854     #data
6855     <rule xmlns="http://www.w3.org/1999/xhtml">
6856     <video><source src="/"/><nest/></video>
6857     </rule>
6858     #errors
6859    
6860     #data
6861     <rule xmlns="http://www.w3.org/1999/xhtml">
6862     <table><nest/></table>
6863     </rule>
6864     #errors
6865    
6866     #data
6867     <rule xmlns="http://www.w3.org/1999/xhtml">
6868     <table><nest/><tr><td/></tr></table>
6869     </rule>
6870     #errors
6871 wakaba 1.25 /rule/table/tr/td;no significant content;s
6872 wakaba 1.21
6873     #data
6874     <rule xmlns="http://www.w3.org/1999/xhtml">
6875     <table><nest/><tbody><tr><td/></tr></tbody></table>
6876     </rule>
6877     #errors
6878 wakaba 1.25 /rule/table/tbody/tr/td;no significant content;s
6879 wakaba 1.21
6880     #data
6881     <rule xmlns="http://www.w3.org/1999/xhtml">
6882     <table><tbody><tr><td/></tr></tbody><nest/></table>
6883     </rule>
6884     #errors
6885 wakaba 1.25 /rule/table/tbody/tr/td;no significant content;s
6886 wakaba 1.21
6887     #data
6888     <rule xmlns="http://www.w3.org/1999/xhtml">
6889     <table><caption/><nest/><caption/><tr><td/></tr></table>
6890     </rule>
6891     #errors
6892 wakaba 1.67 /rule/table/caption;element not allowed;m
6893 wakaba 1.25 /rule/table/caption;no significant content;s
6894     /rule/table/caption;no significant content;s
6895     /rule/table/tr/td;no significant content;s
6896 wakaba 1.21
6897     #data
6898     <rule xmlns="http://www.w3.org/1999/xhtml">
6899     <colgroup><nest/></colgroup>
6900     </rule>
6901     #errors
6902    
6903     #data
6904     <rule xmlns="http://www.w3.org/1999/xhtml">
6905     <colgroup><col/><nest/></colgroup>
6906     </rule>
6907     #errors
6908    
6909     #data
6910     <rule xmlns="http://www.w3.org/1999/xhtml">
6911     <colgroup><nest/><col/></colgroup>
6912     </rule>
6913     #errors
6914    
6915     #data
6916     <rule xmlns="http://www.w3.org/1999/xhtml">
6917     <colgroup><col/><nest/><col/></colgroup>
6918     </rule>
6919     #errors
6920    
6921     #data
6922     <rule xmlns="http://www.w3.org/1999/xhtml">
6923     <tbody><nest/></tbody>
6924     </rule>
6925     #errors
6926    
6927     #data
6928     <rule xmlns="http://www.w3.org/1999/xhtml">
6929     <tbody><nest/><tr><td/></tr></tbody>
6930     </rule>
6931     #errors
6932 wakaba 1.25 /rule/tbody/tr/td;no significant content;s
6933 wakaba 1.21
6934     #data
6935     <rule xmlns="http://www.w3.org/1999/xhtml">
6936     <tbody><tr><td/></tr><nest/></tbody>
6937     </rule>
6938     #errors
6939 wakaba 1.25 /rule/tbody/tr/td;no significant content;s
6940 wakaba 1.21
6941     #data
6942     <rule xmlns="http://www.w3.org/1999/xhtml">
6943     <tr><nest/></tr>
6944     </rule>
6945     #errors
6946    
6947     #data
6948     <rule xmlns="http://www.w3.org/1999/xhtml">
6949     <tr><td/><nest/></tr>
6950     </rule>
6951     #errors
6952 wakaba 1.25 /rule/tr/td;no significant content;s
6953 wakaba 1.21
6954     #data
6955     <rule xmlns="http://www.w3.org/1999/xhtml">
6956     <tr><nest/><td/></tr>
6957     </rule>
6958     #errors
6959 wakaba 1.25 /rule/tr/td;no significant content;s
6960 wakaba 1.21
6961     #data
6962     <rule xmlns="http://www.w3.org/1999/xhtml">
6963     <tr><th/><nest/></tr>
6964     </rule>
6965     #errors
6966 wakaba 1.25 /rule/tr/th;no significant content;s
6967 wakaba 1.21
6968     #data
6969     <rule xmlns="http://www.w3.org/1999/xhtml">
6970     <tr><th/><nest/><td/></tr>
6971     </rule>
6972     #errors
6973 wakaba 1.25 /rule/tr/th;no significant content;s
6974     /rule/tr/td;no significant content;s
6975 wakaba 1.21
6976     #data
6977     <rule xmlns="http://www.w3.org/1999/xhtml">
6978     <head><title/><noscript><nest/></noscript></head>
6979     </rule>
6980     #errors
6981 wakaba 1.67 /rule/head/noscript;in XML:noscript;m
6982 wakaba 1.21
6983     #data
6984     <rule xmlns="http://www.w3.org/1999/xhtml"><head><title/>
6985     <noscript><link rel="alternate" href=""/><nest/></noscript>
6986     </head></rule>
6987     #errors
6988 wakaba 1.67 /rule/head/noscript;in XML:noscript;m
6989 wakaba 1.21
6990     #data
6991     <rule xmlns="http://www.w3.org/1999/xhtml">
6992     <datagrid><nest/></datagrid>
6993     </rule>
6994     #errors
6995    
6996     #data
6997     <rule xmlns="http://www.w3.org/1999/xhtml">
6998     <datagrid><nest/><table/></datagrid>
6999     </rule>
7000     #errors
7001    
7002     #data
7003     <rule xmlns="http://www.w3.org/1999/xhtml">
7004     <datagrid><nest/><table/><p/></datagrid>
7005     </rule>
7006     #errors
7007 wakaba 1.67 /rule/datagrid/p;element not allowed;m
7008 wakaba 1.25 /rule/datagrid/p;no significant content;s
7009 wakaba 1.21
7010     #data
7011     <rule xmlns="http://www.w3.org/1999/xhtml">
7012     <datagrid><p/><nest/><table/></datagrid>
7013     </rule>
7014     #errors
7015 wakaba 1.25 /rule/datagrid;no significant content;s
7016     /rule/datagrid/p;no significant content;s
7017 wakaba 1.21
7018     #data
7019     <rule xmlns="http://www.w3.org/1999/xhtml">
7020     <datagrid><table/><nest/><p/></datagrid>
7021     </rule>
7022     #errors
7023 wakaba 1.67 /rule/datagrid/p;element not allowed;m
7024 wakaba 1.25 /rule/datagrid/p;no significant content;s
7025 wakaba 1.21
7026     #data
7027     <rule xmlns="http://www.w3.org/1999/xhtml">
7028     <menu><nest/></menu>
7029     </rule>
7030     #errors
7031 wakaba 1.25 /rule/menu;no significant content;s
7032 wakaba 1.21
7033     #data
7034     <rule xmlns="http://www.w3.org/1999/xhtml">
7035     <menu><li/><nest/></menu>
7036     </rule>
7037     #errors
7038 wakaba 1.25 /rule/menu/li;no significant content;s
7039 wakaba 1.21
7040     #data
7041     <rule xmlns="http://www.w3.org/1999/xhtml">
7042     <menu><nest/><li/></menu>
7043     </rule>
7044     #errors
7045 wakaba 1.25 /rule/menu/li;no significant content;s
7046 wakaba 1.21
7047     #data
7048     <rule xmlns="http://www.w3.org/1999/xhtml">
7049     <menu><li/><nest/><li/></menu>
7050     </rule>
7051     #errors
7052 wakaba 1.25 /rule/menu/li;no significant content;s
7053     /rule/menu/li;no significant content;s
7054 wakaba 1.21
7055     #data
7056     <rule xmlns="http://www.w3.org/1999/xhtml">
7057     <menu>aa<nest/></menu>
7058     </rule>
7059     #errors
7060    
7061     #data
7062     <rule xmlns="http://www.w3.org/1999/xhtml">
7063     <menu><nest/>aa</menu>
7064     </rule>
7065     #errors
7066    
7067     #data
7068     <rule xmlns="http://www.w3.org/1999/xhtml">
7069     <menu>aa<nest/>bb</menu>
7070     </rule>
7071     #errors
7072    
7073     #data
7074     <rule xmlns="http://www.w3.org/1999/xhtml">
7075     <menu>aa<nest/><li/></menu>
7076     </rule>
7077     #errors
7078 wakaba 1.67 /rule/menu/li;element not allowed;m
7079 wakaba 1.25 /rule/menu/li;no significant content;s
7080 wakaba 1.21
7081     #data
7082     <rule xmlns="http://www.w3.org/1999/xhtml">
7083     <menu><li/><nest/>aa</menu>
7084     </rule>
7085     #errors
7086 wakaba 1.67 /rule/menu/"aa";character not allowed;m
7087 wakaba 1.25 /rule/menu/li;no significant content;s
7088 wakaba 1.21
7089     #data
7090     <rule xmlns="http://www.w3.org/1999/xhtml">
7091     <datatemplate><nest/></datatemplate>
7092     </rule>
7093     #errors
7094    
7095     #data
7096     <rule xmlns="http://www.w3.org/1999/xhtml">
7097     <datatemplate><nest/><rule/></datatemplate>
7098     </rule>
7099     #errors
7100    
7101     #data
7102     <rule xmlns="http://www.w3.org/1999/xhtml">
7103     <datatemplate><rule/><nest/></datatemplate>
7104     </rule>
7105     #errors
7106    
7107     #data
7108     <rule xmlns="http://www.w3.org/1999/xhtml">
7109     <rule><nest/></rule>
7110     </rule>
7111     #errors
7112    
7113     #data
7114     <rule xmlns="http://www.w3.org/1999/xhtml">
7115     <a:author xmlns:a="http://www.w3.org/2005/Atom"><a:name><nest/></a:name></a:author>
7116     </rule>
7117     #errors
7118    
7119     #data
7120     <rule xmlns="http://www.w3.org/1999/xhtml">
7121     <a:author xmlns:a="http://www.w3.org/2005/Atom"><a:name><nest/>aa</a:name></a:author>
7122     </rule>
7123     #errors
7124    
7125     #data
7126     <rule xmlns="http://www.w3.org/1999/xhtml">
7127     <a:author xmlns:a="http://www.w3.org/2005/Atom"><a:name>aa<nest/></a:name></a:author>
7128     </rule>
7129     #errors
7130    
7131     #data
7132     <rule xmlns="http://www.w3.org/1999/xhtml">
7133     <a:author xmlns:a="http://www.w3.org/2005/Atom"><a:uri><nest/>http://www.example.org/</a:uri><a:name/></a:author>
7134     </rule>
7135     #errors
7136    
7137     #data
7138     <rule xmlns="http://www.w3.org/1999/xhtml">
7139     <a:author xmlns:a="http://www.w3.org/2005/Atom"><a:email><nest/>a@example.com</a:email><a:name/></a:author>
7140     </rule>
7141     #errors
7142 wakaba 1.48 /rule/author/email;addr-spec not supported;u
7143 wakaba 1.21
7144     #data
7145     <rule xmlns="http://www.w3.org/1999/xhtml">
7146     <a:published xmlns:a="http://www.w3.org/2005/Atom">2006-12-31T00:00:00Z<nest/></a:published>
7147     </rule>
7148     #errors
7149    
7150     #data
7151     <rule xmlns="http://www.w3.org/1999/xhtml">
7152     <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>
7153     </rule>
7154     #errors
7155    
7156     #data
7157     <rule xmlns="http://www.w3.org/1999/xhtml">
7158     <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>
7159     </rule>
7160     #errors
7161    
7162     #data
7163     <rule xmlns="http://www.w3.org/1999/xhtml">
7164     <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>
7165     </rule>
7166     #errors
7167    
7168     #data
7169     <rule xmlns="http://www.w3.org/1999/xhtml">
7170     <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>
7171     </rule>
7172     #errors
7173    
7174     #data
7175     <rule xmlns="http://www.w3.org/1999/xhtml">
7176     <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>
7177     </rule>
7178     #errors
7179 wakaba 1.67 /rule/feed/entry;child element missing:atom;author;m
7180 wakaba 1.21
7181     #data
7182     <rule xmlns="http://www.w3.org/1999/xhtml">
7183     <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>
7184     </rule>
7185     #errors
7186 wakaba 1.67 /rule/feed/entry;child element missing:atom;author;m
7187     /rule/feed/entry;child element missing:atom;author;m
7188 wakaba 1.21
7189     #data
7190     <div xmlns="http://www.w3.org/1999/xhtml">
7191     <datatemplate><rule></rule><nest></nest></datatemplate>
7192     <nest></nest>
7193     </div>
7194     #errors
7195 wakaba 1.67 /div/datatemplate/nest;element not allowed:datatemplate;m
7196 wakaba 1.55 /div/nest;element not allowed:flow;m
7197 wakaba 1.25 /div;no significant content;s
7198 wakaba 1.21
7199     #data
7200     <div xmlns="http://www.w3.org/1999/xhtml">
7201     <datatemplate><rule></rule><nest></nest></datatemplate>
7202     </div>
7203     #errors
7204 wakaba 1.67 /div/datatemplate/nest;element not allowed:datatemplate;m
7205 wakaba 1.25 /div;no significant content;s
7206 wakaba 1.49
7207     #data
7208     <center xmlns="http://www.w3.org/1999/xhtml"></center>
7209     #errors
7210     /center;element not defined;m
7211     /center;no significant content;s
7212    
7213     #data
7214     <center xmlns="http://www.w3.org/1999/xhtml"> </center>
7215     #errors
7216     /center;element not defined;m
7217     /center;no significant content;s
7218    
7219     #data
7220     <center xmlns="http://www.w3.org/1999/xhtml">x</center>
7221     #errors
7222     /center;element not defined;m
7223    
7224     #data
7225     <center xmlns="http://www.w3.org/1999/xhtml">x<p>y</p></center>
7226     #errors
7227     /center;element not defined;m
7228    
7229     #data
7230     <div xmlns="http://www.w3.org/1999/xhtml"><center>x</center></div>
7231     #errors
7232     /div/center;element not defined;m
7233 wakaba 1.55 /div/center;element not allowed:flow;m
7234 wakaba 1.49
7235     #data
7236     <b xmlns="http://www.w3.org/1999/xhtml"><center>x</center></b>
7237     #errors
7238     /b/center;element not defined;m
7239     /b/center;element not allowed:phrasing;m
7240    
7241     #data
7242     <centre xmlns="http://www.w3.org/1999/xhtml"></centre>
7243     #errors
7244     /centre;element not defined;m
7245    
7246     #data
7247     <basefont xmlns="http://www.w3.org/1999/xhtml"></basefont>
7248     #errors
7249     /basefont;element not defined;m
7250    
7251     #data
7252     <div xmlns="http://www.w3.org/1999/xhtml"><basefont/></div>
7253     #errors
7254     /div/basefont;element not defined;m
7255 wakaba 1.55 /div/basefont;element not allowed:flow;m
7256 wakaba 1.49 /div;no significant content;s
7257    
7258     #data
7259     <span xmlns="http://www.w3.org/1999/xhtml"><basefont/></span>
7260     #errors
7261     /span/basefont;element not defined;m
7262     /span/basefont;element not allowed:phrasing;m
7263     /span;no significant content;s
7264    
7265     #data
7266     <dir xmlns="http://www.w3.org/1999/xhtml"></dir>
7267     #errors
7268     /dir;element not defined;m
7269    
7270     #data
7271     <dir xmlns="http://www.w3.org/1999/xhtml"><li/></dir>
7272     #errors
7273     /dir;element not defined;m
7274     /dir/li;no significant content;s
7275    
7276     #data
7277     <dir xmlns="http://www.w3.org/1999/xhtml"><li/>a</dir>
7278     #errors
7279     /dir;element not defined;m
7280     /dir/li;no significant content;s
7281 wakaba 1.67 /dir/"a";character not allowed;m
7282 wakaba 1.49
7283     #data
7284     <dir xmlns="http://www.w3.org/1999/xhtml">a</dir>
7285     #errors
7286     /dir;element not defined;m
7287 wakaba 1.67 /dir/"a";character not allowed;m
7288 wakaba 1.49
7289     #data
7290     <dir xmlns="http://www.w3.org/1999/xhtml"><p/></dir>
7291     /dir;element not defined;m
7292     /dir/p;element not allowed;m
7293     /dir/p;no significant content;s
7294    
7295     #data
7296     <div xmlns="http://www.w3.org/1999/xhtml"><dir><li/></dir></div>
7297     #errors
7298     /div;no significant content;s
7299     /div/dir;element not defined;m
7300 wakaba 1.55 /div/dir;element not allowed:flow;m
7301 wakaba 1.49 /div/dir/li;no significant content;s
7302    
7303     #data
7304     <i xmlns="http://www.w3.org/1999/xhtml"><dir><li/></dir></i>
7305     #errors
7306     /i;no significant content;s
7307     /i/dir;element not defined;m
7308     /i/dir;element not allowed:phrasing;m
7309     /i/dir/li;no significant content;s
7310 wakaba 1.58
7311     #data
7312     <p xmlns="http://www.w3.org/1999/xhtml"><font>x</font></p>
7313     #errors
7314     /p/font;element not defined;m
7315    
7316     #data
7317     <p xmlns="http://www.w3.org/1999/xhtml"><span><font>x</font></span></p>
7318     #errors
7319     /p/span/font;element not defined;m
7320    
7321     #data html
7322     <!DOCTYPE HTML>
7323     <html>
7324     <head>
7325     <title></title>
7326     <meta name="generator" content="Sample Editor 1.0 (WYSIWYG editor)">
7327     </head>
7328     <body>
7329     <font style="display: block; border: solid">
7330     <h1>Hello.</h1>
7331     </font>
7332     <p>
7333     <font style="color: orange; background: white">How</font>
7334     <font style="color: yellow; background: white">do</font>
7335     <font style="color: green; background: white"><em>you</em></font>
7336     <font style="color: blue; background: white">do?</font>
7337     </p>
7338     </body>
7339     </html>
7340     <!-- From old HTML5 draft -->
7341     #errors
7342     /html/body/font;element not defined;m
7343 wakaba 1.67 /html/body/font/@style;unknown attribute;u
7344 wakaba 1.58 /html/body/p/font;element not defined;m
7345 wakaba 1.67 /html/body/p/font/@style;unknown attribute;u
7346 wakaba 1.58 /html/body/p/font;element not defined;m
7347 wakaba 1.67 /html/body/p/font/@style;unknown attribute;u
7348 wakaba 1.58 /html/body/p/font;element not defined;m
7349 wakaba 1.67 /html/body/p/font/@style;unknown attribute;u
7350 wakaba 1.58 /html/body/p/font;element not defined;m
7351 wakaba 1.67 /html/body/p/font/@style;unknown attribute;u
7352 wakaba 1.58

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24