Parent Directory | Revision Log
++ whatpm/t/ChangeLog 13 May 2007 09:51:36 -0000 * content-model-1.dat: Tests for |a| content model are added. Tests for |legend| content model are added. 2007-05-13 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/ChangeLog 13 May 2007 09:50:22 -0000 * ContentChecker.pm: Don't generate duplicate error when an element type is put in the "minus" list and the element type is not allowed explicitly in the particular element content model. (html:a checker): New checker. (html:details, html:datagrid): New checkers. (html:legend): New checker. 2007-05-13 Wakaba <wakaba@suika.fam.cx>
1 | wakaba | 1.1 | #data |
2 | <html></html> | ||
3 | #errors | ||
4 | /html;element not supported | ||
5 | |||
6 | #data | ||
7 | <html xmlns="http://www.w3.org/1999/xhtml"></html> | ||
8 | #errors | ||
9 | /html;child element missing:head | ||
10 | /html;child element missing:body | ||
11 | |||
12 | #data | ||
13 | <html xmlns="http://www.w3.org/1999/xhtml"><head></head></html> | ||
14 | #errors | ||
15 | /html;child element missing:body | ||
16 | /html/head;child element missing:title | ||
17 | |||
18 | #data | ||
19 | <html xmlns="http://www.w3.org/1999/xhtml"><body></body></html> | ||
20 | #errors | ||
21 | /html/body;ps element missing:head | ||
22 | |||
23 | #data | ||
24 | <html xmlns="http://www.w3.org/1999/xhtml"><p></p></html> | ||
25 | #errors | ||
26 | /html/p;element not allowed | ||
27 | /html;child element missing:head | ||
28 | /html;child element missing:body | ||
29 | |||
30 | #data | ||
31 | <html xmlns="http://www.w3.org/1999/xhtml">a</html> | ||
32 | #errors | ||
33 | /html/"a";character not allowed | ||
34 | /html;child element missing:head | ||
35 | /html;child element missing:body | ||
36 | |||
37 | #data | ||
38 | <html xmlns="http://www.w3.org/1999/xhtml"> </html> | ||
39 | #errors | ||
40 | /html;child element missing:head | ||
41 | /html;child element missing:body | ||
42 | |||
43 | #data | ||
44 | <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html> | ||
45 | #errors | ||
46 | /html/head;child element missing:title | ||
47 | |||
48 | #data | ||
49 | <html xmlns="http://www.w3.org/1999/xhtml"><head></head>a<body></body></html> | ||
50 | #errors | ||
51 | /html/head;child element missing:title | ||
52 | /html/"a";character not allowed | ||
53 | |||
54 | #data | ||
55 | <html xmlns="http://www.w3.org/1999/xhtml">a<head></head><body></body></html> | ||
56 | #errors | ||
57 | /html/"a";character not allowed | ||
58 | /html/head;child element missing:title | ||
59 | |||
60 | #data | ||
61 | <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body>a</html> | ||
62 | #errors | ||
63 | /html/head;child element missing:title | ||
64 | /html/"a";character not allowed | ||
65 | |||
66 | #data | ||
67 | <html xmlns="http://www.w3.org/1999/xhtml"> <head></head> <body></body> </html> | ||
68 | #errors | ||
69 | /html/head;child element missing:title | ||
70 | |||
71 | #data | ||
72 | <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body><p></p></html> | ||
73 | #errors | ||
74 | /html/head;child element missing:title | ||
75 | /html/p;element not allowed | ||
76 | |||
77 | #data | ||
78 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
79 | <base href="http://www.w3.org/"/> | ||
80 | </head> | ||
81 | #errors | ||
82 | /head;child element missing:title | ||
83 | |||
84 | #data | ||
85 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
86 | <command/> | ||
87 | </head> | ||
88 | #errors | ||
89 | /head;child element missing:title | ||
90 | |||
91 | #data | ||
92 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
93 | <event-source/> | ||
94 | </head> | ||
95 | #errors | ||
96 | /head;child element missing:title | ||
97 | |||
98 | #data | ||
99 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
100 | <link/> | ||
101 | </head> | ||
102 | #errors | ||
103 | /head;child element missing:title | ||
104 | |||
105 | #data | ||
106 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
107 | <meta charset="us-ascii"/> | ||
108 | </head> | ||
109 | #errors | ||
110 | /head;child element missing:title | ||
111 | |||
112 | #data | ||
113 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
114 | <meta name="keywords" content="html5"/> | ||
115 | </head> | ||
116 | #errors | ||
117 | /head;child element missing:title | ||
118 | |||
119 | #data | ||
120 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
121 | <script type="text/javascript"/> | ||
122 | </head> | ||
123 | #errors | ||
124 | /head;child element missing:title | ||
125 | |||
126 | #data | ||
127 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
128 | <style type="text/css"/> | ||
129 | </head> | ||
130 | #errors | ||
131 | /head;child element missing:title | ||
132 | |||
133 | #data | ||
134 | <html xmlns="http://www.w3.org/1999/xhtml"><head><title></title></head><body></body></html> | ||
135 | #errors | ||
136 | |||
137 | #data | ||
138 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
139 | <base href="http://www.w3.org/"/> | ||
140 | <title/> | ||
141 | </head> | ||
142 | #errors | ||
143 | |||
144 | #data | ||
145 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
146 | <title/> | ||
147 | <base href="http://www.w3.org/"/> | ||
148 | </head> | ||
149 | #errors | ||
150 | /head/base;element not allowed | ||
151 | |||
152 | #data | ||
153 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
154 | <command/> | ||
155 | <title/> | ||
156 | </head> | ||
157 | #errors | ||
158 | |||
159 | #data | ||
160 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
161 | <title/> | ||
162 | <command/> | ||
163 | </head> | ||
164 | #errors | ||
165 | |||
166 | #data | ||
167 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
168 | <event-source/> | ||
169 | <title/> | ||
170 | </head> | ||
171 | #errors | ||
172 | |||
173 | #data | ||
174 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
175 | <title/> | ||
176 | <event-source/> | ||
177 | </head> | ||
178 | #errors | ||
179 | |||
180 | #data | ||
181 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
182 | <link/> | ||
183 | <title/> | ||
184 | </head> | ||
185 | #errors | ||
186 | |||
187 | #data | ||
188 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
189 | <title/> | ||
190 | <link/> | ||
191 | </head> | ||
192 | #errors | ||
193 | |||
194 | #data | ||
195 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
196 | <meta charset="us-ascii"/> | ||
197 | <title/> | ||
198 | </head> | ||
199 | #errors | ||
200 | |||
201 | #data | ||
202 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
203 | <title/> | ||
204 | <meta charset="us-ascii"/> | ||
205 | </head> | ||
206 | #errors | ||
207 | /head/meta;element not allowed | ||
208 | |||
209 | #data | ||
210 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
211 | <meta name="keywords" content="html5"/> | ||
212 | <title/> | ||
213 | </head> | ||
214 | #errors | ||
215 | |||
216 | #data | ||
217 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
218 | <title/> | ||
219 | <meta name="keywords" content="html5"/> | ||
220 | </head> | ||
221 | #errors | ||
222 | |||
223 | #data | ||
224 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
225 | <script type="text/javascript"/> | ||
226 | <title/> | ||
227 | </head> | ||
228 | #errors | ||
229 | |||
230 | #data | ||
231 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
232 | <title/> | ||
233 | <script type="text/javascript"/> | ||
234 | </head> | ||
235 | #errors | ||
236 | |||
237 | #data | ||
238 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
239 | <style type="text/css"/> | ||
240 | <title/> | ||
241 | </head> | ||
242 | #errors | ||
243 | |||
244 | #data | ||
245 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
246 | <title/> | ||
247 | <style type="text/css"/> | ||
248 | </head> | ||
249 | #errors | ||
250 | |||
251 | #data | ||
252 | <html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><title></title></head><body></body></html> | ||
253 | #errors | ||
254 | /html/head/title;element not allowed | ||
255 | |||
256 | #data | ||
257 | <html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><p></p></head><body></body></html> | ||
258 | #errors | ||
259 | /html/head/p;element not allowed | ||
260 | |||
261 | #data | ||
262 | <head xmlns="http://www.w3.org/1999/xhtml"><meta charset="us-ascii"/><base/><title></title></head> | ||
263 | #errors | ||
264 | |||
265 | #data | ||
266 | <head xmlns="http://www.w3.org/1999/xhtml"><meta charset="us-ascii"/><title/><base/></head> | ||
267 | #errors | ||
268 | /head/base;element not allowed | ||
269 | |||
270 | #data | ||
271 | <head xmlns="http://www.w3.org/1999/xhtml"><title/><base/></head> | ||
272 | #errors | ||
273 | /head/base;element not allowed | ||
274 | |||
275 | #data | ||
276 | <head xmlns="http://www.w3.org/1999/xhtml"><title/><base/><meta charset="us-ascii"/></head> | ||
277 | #errors | ||
278 | /head/base;element not allowed | ||
279 | /head/meta;element not allowed | ||
280 | |||
281 | #data | ||
282 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
283 | <meta charset="us-ascii"/> | ||
284 | <title/> | ||
285 | <base href="http://www.w3.org/"/> | ||
286 | </head> | ||
287 | #errors | ||
288 | /head/base;element not allowed | ||
289 | |||
290 | #data | ||
291 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
292 | <base href="http://www.w3.org/"/> | ||
293 | <meta charset="us-ascii"/> | ||
294 | <title/> | ||
295 | </head> | ||
296 | #errors | ||
297 | /head/meta;element not allowed | ||
298 | |||
299 | #data | ||
300 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
301 | <base href="http://www.w3.org/"/> | ||
302 | <title/> | ||
303 | <meta charset="us-ascii"/> | ||
304 | </head> | ||
305 | #errors | ||
306 | /head/meta;element not allowed | ||
307 | |||
308 | #data | ||
309 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
310 | <base href="http://www.w3.org/"/> | ||
311 | <meta name="keywords" content="html5"/> | ||
312 | <title/> | ||
313 | </head> | ||
314 | #errors | ||
315 | |||
316 | #data | ||
317 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
318 | <base href="http://www.w3.org/"/> | ||
319 | <title/> | ||
320 | <meta name="keywords" content="html5"/> | ||
321 | </head> | ||
322 | #errors | ||
323 | |||
324 | #data | ||
325 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
326 | <meta name="keywords" content="html5"/> | ||
327 | <meta charset="us-ascii"/> | ||
328 | <title/> | ||
329 | </head> | ||
330 | #errors | ||
331 | /head/meta;element not allowed | ||
332 | |||
333 | #data | ||
334 | <head xmlns="http://www.w3.org/1999/xhtml"> | ||
335 | <meta charset="us-ascii"/> | ||
336 | <meta name="keywords" content="html5"/> | ||
337 | <title/> | ||
338 | </head> | ||
339 | #errors | ||
340 | |||
341 | #data | ||
342 | <base href="http://www.w3.org/" xmlns="http://www.w3.org/1999/xhtml"></base> | ||
343 | #errors | ||
344 | |||
345 | #data | ||
346 | <base href="http://www.w3.org/" xmlns="http://www.w3.org/1999/xhtml"> </base> | ||
347 | #errors | ||
348 | |||
349 | #data | ||
350 | <base href="http://www.w3.org/" xmlns="http://www.w3.org/1999/xhtml">a</base> | ||
351 | #errors | ||
352 | /base/"a";character not allowed | ||
353 | |||
354 | #data | ||
355 | <base href="http://www.w3.org/" xmlns="http://www.w3.org/1999/xhtml"><p/></base> | ||
356 | #errors | ||
357 | /base/p;element not allowed | ||
358 | |||
359 | #data | ||
360 | <link xmlns="http://www.w3.org/1999/xhtml"></link> | ||
361 | #errors | ||
362 | |||
363 | #data | ||
364 | <link xmlns="http://www.w3.org/1999/xhtml"> </link> | ||
365 | #errors | ||
366 | |||
367 | #data | ||
368 | <link xmlns="http://www.w3.org/1999/xhtml">a</link> | ||
369 | #errors | ||
370 | /link/"a";character not allowed | ||
371 | |||
372 | #data | ||
373 | <link xmlns="http://www.w3.org/1999/xhtml"><p/></link> | ||
374 | #errors | ||
375 | /link/p;element not allowed | ||
376 | |||
377 | #data | ||
378 | <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"></meta> | ||
379 | #errors | ||
380 | |||
381 | #data | ||
382 | <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"> </meta> | ||
383 | #errors | ||
384 | |||
385 | #data | ||
386 | <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml">a</meta> | ||
387 | #errors | ||
388 | /meta/"a";character not allowed | ||
389 | |||
390 | #data | ||
391 | <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"><p/></meta> | ||
392 | #errors | ||
393 | /meta/p;element not allowed | ||
394 | |||
395 | #data | ||
396 | <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"></style> | ||
397 | #errors | ||
398 | |||
399 | #data | ||
400 | <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"> | ||
401 | p {color: green} | ||
402 | </style> | ||
403 | #errors | ||
404 | |||
405 | wakaba | 1.2 | #data |
406 | <body xmlns="http://www.w3.org/1999/xhtml"></body> | ||
407 | #errors | ||
408 | |||
409 | #data | ||
410 | <body xmlns="http://www.w3.org/1999/xhtml"> </body> | ||
411 | #errors | ||
412 | |||
413 | #data | ||
414 | <body xmlns="http://www.w3.org/1999/xhtml">a</body> | ||
415 | #errors | ||
416 | /body/"a";character not allowed | ||
417 | |||
418 | #data | ||
419 | <body xmlns="http://www.w3.org/1999/xhtml"><p/></body> | ||
420 | #errors | ||
421 | |||
422 | #data | ||
423 | <body xmlns="http://www.w3.org/1999/xhtml"><blockquote/></body> | ||
424 | #errors | ||
425 | |||
426 | #data | ||
427 | <body xmlns="http://www.w3.org/1999/xhtml"><div/></body> | ||
428 | #errors | ||
429 | |||
430 | #data | ||
431 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
432 | <script type="text/javascript"/> | ||
433 | </body> | ||
434 | #errors | ||
435 | |||
436 | #data | ||
437 | <body xmlns="http://www.w3.org/1999/xhtml"><b/></body> | ||
438 | #errors | ||
439 | wakaba | 1.3 | /body/b;element not allowed |
440 | wakaba | 1.2 | |
441 | wakaba | 1.3 | #data |
442 | <section xmlns="http://www.w3.org/1999/xhtml"></section> | ||
443 | #errors | ||
444 | wakaba | 1.2 | |
445 | wakaba | 1.3 | #data |
446 | <section xmlns="http://www.w3.org/1999/xhtml"> </section> | ||
447 | #errors | ||
448 | wakaba | 1.2 | |
449 | wakaba | 1.3 | #data |
450 | <section xmlns="http://www.w3.org/1999/xhtml">a</section> | ||
451 | #errors | ||
452 | /section/"a";character not allowed | ||
453 | |||
454 | #data | ||
455 | <section xmlns="http://www.w3.org/1999/xhtml"><p/></section> | ||
456 | #errors | ||
457 | |||
458 | #data | ||
459 | <section xmlns="http://www.w3.org/1999/xhtml"><blockquote/></section> | ||
460 | #errors | ||
461 | |||
462 | #data | ||
463 | <section xmlns="http://www.w3.org/1999/xhtml"><div/></section> | ||
464 | #errors | ||
465 | |||
466 | #data | ||
467 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
468 | <script type="text/javascript"/> | ||
469 | </section> | ||
470 | #errors | ||
471 | |||
472 | #data | ||
473 | <section xmlns="http://www.w3.org/1999/xhtml"><b/></section> | ||
474 | #errors | ||
475 | /section/b;element not allowed | ||
476 | |||
477 | #data | ||
478 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
479 | <style type="text/css"/> | ||
480 | </section> | ||
481 | #errors | ||
482 | |||
483 | #data | ||
484 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
485 | <style type="text/css"/> | ||
486 | <p/> | ||
487 | </section> | ||
488 | #errors | ||
489 | |||
490 | #data | ||
491 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
492 | <p/> | ||
493 | <style type="text/css"/> | ||
494 | </section> | ||
495 | #errors | ||
496 | /section/style;element not allowed | ||
497 | |||
498 | #data | ||
499 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
500 | <style type="text/css"/> | ||
501 | <b/> | ||
502 | </section> | ||
503 | #errors | ||
504 | /section/b;element not allowed | ||
505 | |||
506 | #data | ||
507 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
508 | <b/> | ||
509 | <style type="text/css"/> | ||
510 | </section> | ||
511 | #errors | ||
512 | /section/b;element not allowed | ||
513 | /section/style;element not allowed | ||
514 | |||
515 | #data | ||
516 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
517 | <style type="text/css"/>a</section> | ||
518 | #errors | ||
519 | /section/"a";character not allowed | ||
520 | |||
521 | #data | ||
522 | <section xmlns="http://www.w3.org/1999/xhtml">a<style type="text/css"/> | ||
523 | </section> | ||
524 | #errors | ||
525 | /section/"a";character not allowed | ||
526 | |||
527 | #data | ||
528 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
529 | <style type="text/css"/> | ||
530 | <style type="text/css"/> | ||
531 | <p/> | ||
532 | </section> | ||
533 | #errors | ||
534 | |||
535 | #data | ||
536 | <section xmlns="http://www.w3.org/1999/xhtml"> | ||
537 | <style type="text/css"/> | ||
538 | <p/><p/> | ||
539 | </section> | ||
540 | #errors | ||
541 | |||
542 | #data | ||
543 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
544 | wakaba | 1.4 | @@ TODO: It is expected that tests for NAV and following elements come here. |
545 | wakaba | 1.3 | </p> |
546 | #errors | ||
547 | wakaba | 1.4 | |
548 | #data | ||
549 | wakaba | 1.5 | <li xmlns="http://www.w3.org/1999/xhtml"></li> |
550 | #errors | ||
551 | |||
552 | #data | ||
553 | <li xmlns="http://www.w3.org/1999/xhtml"> </li> | ||
554 | #errors | ||
555 | |||
556 | #data | ||
557 | <li xmlns="http://www.w3.org/1999/xhtml">XXX</li> | ||
558 | #errors | ||
559 | |||
560 | #data | ||
561 | <li xmlns="http://www.w3.org/1999/xhtml"><p>XXX</p></li> | ||
562 | #errors | ||
563 | |||
564 | #data | ||
565 | <li xmlns="http://www.w3.org/1999/xhtml">XXX<p>YYY</p></li> | ||
566 | #errors | ||
567 | /li/p;element not allowed | ||
568 | |||
569 | #data | ||
570 | <li xmlns="http://www.w3.org/1999/xhtml"><p>XXX</p>YYY</li> | ||
571 | #errors | ||
572 | /li/p;element not allowed | ||
573 | |||
574 | #data | ||
575 | <ul xmlns="http://www.w3.org/1999/xhtml"> | ||
576 | <li></li> | ||
577 | </ul> | ||
578 | #errors | ||
579 | |||
580 | #data | ||
581 | <ul xmlns="http://www.w3.org/1999/xhtml"> | ||
582 | <li> </li> | ||
583 | </ul> | ||
584 | #errors | ||
585 | |||
586 | #data | ||
587 | <ul xmlns="http://www.w3.org/1999/xhtml"> | ||
588 | <li>XXX</li> | ||
589 | </ul> | ||
590 | #errors | ||
591 | |||
592 | #data | ||
593 | <ul xmlns="http://www.w3.org/1999/xhtml"> | ||
594 | <li><p>XXX</p></li> | ||
595 | </ul> | ||
596 | #errors | ||
597 | |||
598 | #data | ||
599 | <ul xmlns="http://www.w3.org/1999/xhtml"> | ||
600 | <li>XXX<p>YYY</p></li> | ||
601 | </ul> | ||
602 | #errors | ||
603 | /ul/li/p;element not allowed | ||
604 | |||
605 | #data | ||
606 | <ul xmlns="http://www.w3.org/1999/xhtml"> | ||
607 | <li><p>XXX</p>YYY</li> | ||
608 | </ul> | ||
609 | #errors | ||
610 | /ul/li/p;element not allowed | ||
611 | |||
612 | #data | ||
613 | <ol xmlns="http://www.w3.org/1999/xhtml"> | ||
614 | <li></li> | ||
615 | </ol> | ||
616 | #errors | ||
617 | |||
618 | #data | ||
619 | <ol xmlns="http://www.w3.org/1999/xhtml"> | ||
620 | <li> </li> | ||
621 | </ol> | ||
622 | #errors | ||
623 | |||
624 | #data | ||
625 | <ol xmlns="http://www.w3.org/1999/xhtml"> | ||
626 | <li>XXX</li> | ||
627 | </ol> | ||
628 | #errors | ||
629 | |||
630 | #data | ||
631 | <ol xmlns="http://www.w3.org/1999/xhtml"> | ||
632 | <li><p>XXX</p></li> | ||
633 | </ol> | ||
634 | #errors | ||
635 | |||
636 | #data | ||
637 | <ol xmlns="http://www.w3.org/1999/xhtml"> | ||
638 | <li>XXX<p>YYY</p></li> | ||
639 | </ol> | ||
640 | #errors | ||
641 | /ol/li/p;element not allowed | ||
642 | |||
643 | #data | ||
644 | <ol xmlns="http://www.w3.org/1999/xhtml"> | ||
645 | <li><p>XXX</p>YYY</li> | ||
646 | </ol> | ||
647 | #errors | ||
648 | /ol/li/p;element not allowed | ||
649 | |||
650 | #data | ||
651 | <menu xmlns="http://www.w3.org/1999/xhtml"> | ||
652 | <li></li> | ||
653 | </menu> | ||
654 | #errors | ||
655 | |||
656 | #data | ||
657 | <menu xmlns="http://www.w3.org/1999/xhtml"> | ||
658 | <li> </li> | ||
659 | </menu> | ||
660 | #errors | ||
661 | |||
662 | #data | ||
663 | <menu xmlns="http://www.w3.org/1999/xhtml"> | ||
664 | <li>XXX</li> | ||
665 | </menu> | ||
666 | #errors | ||
667 | |||
668 | #data | ||
669 | <menu xmlns="http://www.w3.org/1999/xhtml"> | ||
670 | <li><p>XXX</p></li> | ||
671 | </menu> | ||
672 | #errors | ||
673 | /menu/li/p;element not allowed | ||
674 | |||
675 | #data | ||
676 | <menu xmlns="http://www.w3.org/1999/xhtml"> | ||
677 | <li>XXX<p>YYY</p></li> | ||
678 | </menu> | ||
679 | #errors | ||
680 | /menu/li/p;element not allowed | ||
681 | |||
682 | #data | ||
683 | <menu xmlns="http://www.w3.org/1999/xhtml"> | ||
684 | <li><p>XXX</p>YYY</li> | ||
685 | </menu> | ||
686 | #errors | ||
687 | /menu/li/p;element not allowed | ||
688 | |||
689 | #data | ||
690 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
691 | <ul> | ||
692 | <li></li> | ||
693 | </ul> | ||
694 | </body> | ||
695 | #errors | ||
696 | |||
697 | #data | ||
698 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
699 | <ul> | ||
700 | <li> </li> | ||
701 | </ul> | ||
702 | </body> | ||
703 | #errors | ||
704 | |||
705 | #data | ||
706 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
707 | <ul> | ||
708 | <li>XXX</li> | ||
709 | </ul> | ||
710 | </body> | ||
711 | #errors | ||
712 | |||
713 | #data | ||
714 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
715 | <ul> | ||
716 | <li><p>XXX</p></li> | ||
717 | </ul> | ||
718 | </body> | ||
719 | #errors | ||
720 | |||
721 | #data | ||
722 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
723 | <ul> | ||
724 | <li>XXX<p>YYY</p></li> | ||
725 | </ul> | ||
726 | </body> | ||
727 | #errors | ||
728 | /body/ul/li/p;element not allowed | ||
729 | |||
730 | #data | ||
731 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
732 | <ul> | ||
733 | <li><p>XXX</p>YYY</li> | ||
734 | </ul> | ||
735 | </body> | ||
736 | #errors | ||
737 | /body/ul/li/p;element not allowed | ||
738 | |||
739 | #data | ||
740 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
741 | <ol> | ||
742 | <li></li> | ||
743 | </ol> | ||
744 | </body> | ||
745 | #errors | ||
746 | |||
747 | #data | ||
748 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
749 | <ol> | ||
750 | <li> </li> | ||
751 | </ol> | ||
752 | </body> | ||
753 | #errors | ||
754 | |||
755 | #data | ||
756 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
757 | <ol> | ||
758 | <li>XXX</li> | ||
759 | </ol> | ||
760 | </body> | ||
761 | #errors | ||
762 | |||
763 | #data | ||
764 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
765 | <ol> | ||
766 | <li><p>XXX</p></li> | ||
767 | </ol> | ||
768 | </body> | ||
769 | #errors | ||
770 | |||
771 | #data | ||
772 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
773 | <ol> | ||
774 | <li>XXX<p>YYY</p></li> | ||
775 | </ol> | ||
776 | </body> | ||
777 | #errors | ||
778 | /body/ol/li/p;element not allowed | ||
779 | |||
780 | #data | ||
781 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
782 | <ol> | ||
783 | <li><p>XXX</p>YYY</li> | ||
784 | </ol> | ||
785 | </body> | ||
786 | #errors | ||
787 | /body/ol/li/p;element not allowed | ||
788 | |||
789 | #data | ||
790 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
791 | <menu> | ||
792 | <li></li> | ||
793 | </menu> | ||
794 | </body> | ||
795 | #errors | ||
796 | |||
797 | #data | ||
798 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
799 | <menu> | ||
800 | <li> </li> | ||
801 | </menu> | ||
802 | </body> | ||
803 | #errors | ||
804 | |||
805 | #data | ||
806 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
807 | <menu> | ||
808 | <li>XXX</li> | ||
809 | </menu> | ||
810 | </body> | ||
811 | #errors | ||
812 | |||
813 | #data | ||
814 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
815 | <menu> | ||
816 | <li><p>XXX</p></li> | ||
817 | </menu> | ||
818 | </body> | ||
819 | #errors | ||
820 | /body/menu/li/p;element not allowed | ||
821 | |||
822 | #data | ||
823 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
824 | <menu> | ||
825 | <li>XXX<p>YYY</p></li> | ||
826 | </menu> | ||
827 | </body> | ||
828 | #errors | ||
829 | /body/menu/li/p;element not allowed | ||
830 | |||
831 | #data | ||
832 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
833 | <menu> | ||
834 | <li><p>XXX</p>YYY</li> | ||
835 | </menu> | ||
836 | </body> | ||
837 | #errors | ||
838 | /body/menu/li/p;element not allowed | ||
839 | |||
840 | #data | ||
841 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
842 | <ul> | ||
843 | <li></li> | ||
844 | </ul> | ||
845 | </div> | ||
846 | #errors | ||
847 | |||
848 | #data | ||
849 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
850 | <ul> | ||
851 | <li> </li> | ||
852 | </ul> | ||
853 | </div> | ||
854 | #errors | ||
855 | |||
856 | #data | ||
857 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
858 | <ul> | ||
859 | <li>XXX</li> | ||
860 | </ul> | ||
861 | </div> | ||
862 | #errors | ||
863 | |||
864 | #data | ||
865 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
866 | <ul> | ||
867 | <li><p>XXX</p></li> | ||
868 | </ul> | ||
869 | </div> | ||
870 | #errors | ||
871 | |||
872 | #data | ||
873 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
874 | <ul> | ||
875 | <li>XXX<p>YYY</p></li> | ||
876 | </ul> | ||
877 | </div> | ||
878 | #errors | ||
879 | /div/ul/li/p;element not allowed | ||
880 | |||
881 | #data | ||
882 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
883 | <ul> | ||
884 | <li><p>XXX</p>YYY</li> | ||
885 | </ul> | ||
886 | </div> | ||
887 | #errors | ||
888 | /div/ul/li/p;element not allowed | ||
889 | |||
890 | #data | ||
891 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
892 | <ol> | ||
893 | <li></li> | ||
894 | </ol> | ||
895 | </div> | ||
896 | #errors | ||
897 | |||
898 | #data | ||
899 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
900 | <ol> | ||
901 | <li> </li> | ||
902 | </ol> | ||
903 | </div> | ||
904 | #errors | ||
905 | |||
906 | #data | ||
907 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
908 | <ol> | ||
909 | <li>XXX</li> | ||
910 | </ol> | ||
911 | </div> | ||
912 | #errors | ||
913 | |||
914 | #data | ||
915 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
916 | <ol> | ||
917 | <li><p>XXX</p></li> | ||
918 | </ol> | ||
919 | </div> | ||
920 | #errors | ||
921 | |||
922 | #data | ||
923 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
924 | <ol> | ||
925 | <li>XXX<p>YYY</p></li> | ||
926 | </ol> | ||
927 | </div> | ||
928 | #errors | ||
929 | /div/ol/li/p;element not allowed | ||
930 | |||
931 | #data | ||
932 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
933 | <ol> | ||
934 | <li><p>XXX</p>YYY</li> | ||
935 | </ol> | ||
936 | </div> | ||
937 | #errors | ||
938 | /div/ol/li/p;element not allowed | ||
939 | |||
940 | #data | ||
941 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
942 | <menu> | ||
943 | <li></li> | ||
944 | </menu> | ||
945 | </div> | ||
946 | #errors | ||
947 | |||
948 | #data | ||
949 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
950 | <menu> | ||
951 | <li> </li> | ||
952 | </menu> | ||
953 | </div> | ||
954 | #errors | ||
955 | |||
956 | #data | ||
957 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
958 | <menu> | ||
959 | <li>XXX</li> | ||
960 | </menu> | ||
961 | </div> | ||
962 | #errors | ||
963 | |||
964 | #data | ||
965 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
966 | <menu> | ||
967 | <li><p>XXX</p></li> | ||
968 | </menu> | ||
969 | </div> | ||
970 | #errors | ||
971 | /div/menu/li/p;element not allowed | ||
972 | |||
973 | #data | ||
974 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
975 | <menu> | ||
976 | <li>XXX<p>YYY</p></li> | ||
977 | </menu> | ||
978 | </div> | ||
979 | #errors | ||
980 | /div/menu/li/p;element not allowed | ||
981 | |||
982 | #data | ||
983 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
984 | <menu> | ||
985 | <li><p>XXX</p>YYY</li> | ||
986 | </menu> | ||
987 | </div> | ||
988 | #errors | ||
989 | /div/menu/li/p;element not allowed | ||
990 | |||
991 | #data | ||
992 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
993 | <p/> | ||
994 | <ul> | ||
995 | <li></li> | ||
996 | </ul> | ||
997 | </div> | ||
998 | #errors | ||
999 | |||
1000 | #data | ||
1001 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1002 | <p/> | ||
1003 | <ul> | ||
1004 | <li> </li> | ||
1005 | </ul> | ||
1006 | </div> | ||
1007 | #errors | ||
1008 | |||
1009 | #data | ||
1010 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1011 | <p/> | ||
1012 | <ul> | ||
1013 | <li>XXX</li> | ||
1014 | </ul> | ||
1015 | </div> | ||
1016 | #errors | ||
1017 | |||
1018 | #data | ||
1019 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1020 | <p/> | ||
1021 | <ul> | ||
1022 | <li><p>XXX</p></li> | ||
1023 | </ul> | ||
1024 | </div> | ||
1025 | #errors | ||
1026 | |||
1027 | #data | ||
1028 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1029 | <p/> | ||
1030 | <ul> | ||
1031 | <li>XXX<p>YYY</p></li> | ||
1032 | </ul> | ||
1033 | </div> | ||
1034 | #errors | ||
1035 | /div/ul/li/p;element not allowed | ||
1036 | |||
1037 | #data | ||
1038 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1039 | <p/> | ||
1040 | <ul> | ||
1041 | <li><p>XXX</p>YYY</li> | ||
1042 | </ul> | ||
1043 | </div> | ||
1044 | #errors | ||
1045 | /div/ul/li/p;element not allowed | ||
1046 | |||
1047 | #data | ||
1048 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1049 | <p/> | ||
1050 | <ol> | ||
1051 | <li></li> | ||
1052 | </ol> | ||
1053 | </div> | ||
1054 | #errors | ||
1055 | |||
1056 | #data | ||
1057 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1058 | <p/> | ||
1059 | <ol> | ||
1060 | <li> </li> | ||
1061 | </ol> | ||
1062 | </div> | ||
1063 | #errors | ||
1064 | |||
1065 | #data | ||
1066 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1067 | <p/> | ||
1068 | <ol> | ||
1069 | <li>XXX</li> | ||
1070 | </ol> | ||
1071 | </div> | ||
1072 | #errors | ||
1073 | |||
1074 | #data | ||
1075 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1076 | <p/> | ||
1077 | <ol> | ||
1078 | <li><p>XXX</p></li> | ||
1079 | </ol> | ||
1080 | </div> | ||
1081 | #errors | ||
1082 | |||
1083 | #data | ||
1084 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1085 | <p/> | ||
1086 | <ol> | ||
1087 | <li>XXX<p>YYY</p></li> | ||
1088 | </ol> | ||
1089 | </div> | ||
1090 | #errors | ||
1091 | /div/ol/li/p;element not allowed | ||
1092 | |||
1093 | #data | ||
1094 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1095 | <p/> | ||
1096 | <ol> | ||
1097 | <li><p>XXX</p>YYY</li> | ||
1098 | </ol> | ||
1099 | </div> | ||
1100 | #errors | ||
1101 | /div/ol/li/p;element not allowed | ||
1102 | |||
1103 | #data | ||
1104 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1105 | <p/> | ||
1106 | <menu> | ||
1107 | <li></li> | ||
1108 | </menu> | ||
1109 | </div> | ||
1110 | #errors | ||
1111 | |||
1112 | #data | ||
1113 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1114 | <p/> | ||
1115 | <menu> | ||
1116 | <li> </li> | ||
1117 | </menu> | ||
1118 | </div> | ||
1119 | #errors | ||
1120 | |||
1121 | #data | ||
1122 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1123 | <p/> | ||
1124 | <menu> | ||
1125 | <li>XXX</li> | ||
1126 | </menu> | ||
1127 | </div> | ||
1128 | #errors | ||
1129 | |||
1130 | #data | ||
1131 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1132 | <p/> | ||
1133 | <menu> | ||
1134 | <li><p>XXX</p></li> | ||
1135 | </menu> | ||
1136 | </div> | ||
1137 | #errors | ||
1138 | /div/menu/li/p;element not allowed | ||
1139 | |||
1140 | #data | ||
1141 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1142 | <p/> | ||
1143 | <menu> | ||
1144 | <li>XXX<p>YYY</p></li> | ||
1145 | </menu> | ||
1146 | </div> | ||
1147 | #errors | ||
1148 | /div/menu/li/p;element not allowed | ||
1149 | |||
1150 | #data | ||
1151 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1152 | <p/> | ||
1153 | <menu> | ||
1154 | <li><p>XXX</p>YYY</li> | ||
1155 | </menu> | ||
1156 | </div> | ||
1157 | #errors | ||
1158 | /div/menu/li/p;element not allowed | ||
1159 | |||
1160 | #data | ||
1161 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1162 | <ul> | ||
1163 | <li></li> | ||
1164 | </ul> | ||
1165 | <p/> | ||
1166 | </div> | ||
1167 | #errors | ||
1168 | |||
1169 | #data | ||
1170 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1171 | <ul> | ||
1172 | <li> </li> | ||
1173 | </ul> | ||
1174 | <p/> | ||
1175 | </div> | ||
1176 | #errors | ||
1177 | |||
1178 | #data | ||
1179 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1180 | <ul> | ||
1181 | <li>XXX</li> | ||
1182 | </ul> | ||
1183 | <p/> | ||
1184 | </div> | ||
1185 | #errors | ||
1186 | |||
1187 | #data | ||
1188 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1189 | <ul> | ||
1190 | <li><p>XXX</p></li> | ||
1191 | </ul> | ||
1192 | <p/> | ||
1193 | </div> | ||
1194 | #errors | ||
1195 | |||
1196 | #data | ||
1197 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1198 | <ul> | ||
1199 | <li>XXX<p>YYY</p></li> | ||
1200 | </ul> | ||
1201 | <p/> | ||
1202 | </div> | ||
1203 | #errors | ||
1204 | /div/ul/li/p;element not allowed | ||
1205 | |||
1206 | #data | ||
1207 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1208 | <ul> | ||
1209 | <li><p>XXX</p>YYY</li> | ||
1210 | </ul> | ||
1211 | <p/> | ||
1212 | </div> | ||
1213 | #errors | ||
1214 | /div/ul/li/p;element not allowed | ||
1215 | |||
1216 | #data | ||
1217 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1218 | <ol> | ||
1219 | <li></li> | ||
1220 | </ol> | ||
1221 | <p/> | ||
1222 | </div> | ||
1223 | #errors | ||
1224 | |||
1225 | #data | ||
1226 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1227 | <ol> | ||
1228 | <li> </li> | ||
1229 | </ol> | ||
1230 | <p/> | ||
1231 | </div> | ||
1232 | #errors | ||
1233 | |||
1234 | #data | ||
1235 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1236 | <ol> | ||
1237 | <li>XXX</li> | ||
1238 | </ol> | ||
1239 | <p/> | ||
1240 | </div> | ||
1241 | #errors | ||
1242 | |||
1243 | #data | ||
1244 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1245 | <ol> | ||
1246 | <li><p>XXX</p></li> | ||
1247 | </ol> | ||
1248 | <p/> | ||
1249 | </div> | ||
1250 | #errors | ||
1251 | |||
1252 | #data | ||
1253 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1254 | <ol> | ||
1255 | <li>XXX<p>YYY</p></li> | ||
1256 | </ol> | ||
1257 | <p/> | ||
1258 | </div> | ||
1259 | #errors | ||
1260 | /div/ol/li/p;element not allowed | ||
1261 | |||
1262 | #data | ||
1263 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1264 | <ol> | ||
1265 | <li><p>XXX</p>YYY</li> | ||
1266 | </ol> | ||
1267 | <p/> | ||
1268 | </div> | ||
1269 | #errors | ||
1270 | /div/ol/li/p;element not allowed | ||
1271 | |||
1272 | #data | ||
1273 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1274 | <menu> | ||
1275 | <li></li> | ||
1276 | </menu> | ||
1277 | <p/> | ||
1278 | </div> | ||
1279 | #errors | ||
1280 | |||
1281 | #data | ||
1282 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1283 | <menu> | ||
1284 | <li> </li> | ||
1285 | </menu> | ||
1286 | <p/> | ||
1287 | </div> | ||
1288 | #errors | ||
1289 | |||
1290 | #data | ||
1291 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1292 | <menu> | ||
1293 | <li>XXX</li> | ||
1294 | </menu> | ||
1295 | <p/> | ||
1296 | </div> | ||
1297 | #errors | ||
1298 | |||
1299 | #data | ||
1300 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1301 | <menu> | ||
1302 | <li><p>XXX</p></li> | ||
1303 | </menu> | ||
1304 | <p/> | ||
1305 | </div> | ||
1306 | #errors | ||
1307 | /div/menu/li/p;element not allowed | ||
1308 | |||
1309 | #data | ||
1310 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1311 | <menu> | ||
1312 | <li>XXX<p>YYY</p></li> | ||
1313 | </menu> | ||
1314 | <p/> | ||
1315 | </div> | ||
1316 | #errors | ||
1317 | /div/menu/li/p;element not allowed | ||
1318 | |||
1319 | #data | ||
1320 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1321 | <menu> | ||
1322 | <li><p>XXX</p>YYY</li> | ||
1323 | </menu> | ||
1324 | <p/> | ||
1325 | </div> | ||
1326 | #errors | ||
1327 | /div/menu/li/p;element not allowed | ||
1328 | |||
1329 | #data | ||
1330 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1331 | aaa | ||
1332 | <ul> | ||
1333 | <li></li> | ||
1334 | </ul> | ||
1335 | </div> | ||
1336 | #errors | ||
1337 | |||
1338 | #data | ||
1339 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1340 | aaa | ||
1341 | <ul> | ||
1342 | <li> </li> | ||
1343 | </ul> | ||
1344 | </div> | ||
1345 | #errors | ||
1346 | |||
1347 | #data | ||
1348 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1349 | aaa | ||
1350 | <ul> | ||
1351 | <li>XXX</li> | ||
1352 | </ul> | ||
1353 | </div> | ||
1354 | #errors | ||
1355 | |||
1356 | #data | ||
1357 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1358 | aaa | ||
1359 | <ul> | ||
1360 | <li><p>XXX</p></li> | ||
1361 | </ul> | ||
1362 | </div> | ||
1363 | #errors | ||
1364 | /div/ul/li/p;element not allowed | ||
1365 | |||
1366 | #data | ||
1367 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1368 | aaa | ||
1369 | <ul> | ||
1370 | <li>XXX<p>YYY</p></li> | ||
1371 | </ul> | ||
1372 | </div> | ||
1373 | #errors | ||
1374 | /div/ul/li/p;element not allowed | ||
1375 | |||
1376 | #data | ||
1377 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1378 | aaa | ||
1379 | <ul> | ||
1380 | <li><p>XXX</p>YYY</li> | ||
1381 | </ul> | ||
1382 | </div> | ||
1383 | #errors | ||
1384 | /div/ul/li/p;element not allowed | ||
1385 | |||
1386 | #data | ||
1387 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1388 | aaa | ||
1389 | <ol> | ||
1390 | <li></li> | ||
1391 | </ol> | ||
1392 | </div> | ||
1393 | #errors | ||
1394 | |||
1395 | #data | ||
1396 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1397 | aaa | ||
1398 | <ol> | ||
1399 | <li> </li> | ||
1400 | </ol> | ||
1401 | </div> | ||
1402 | #errors | ||
1403 | |||
1404 | #data | ||
1405 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1406 | aaa | ||
1407 | <ol> | ||
1408 | <li>XXX</li> | ||
1409 | </ol> | ||
1410 | </div> | ||
1411 | #errors | ||
1412 | |||
1413 | #data | ||
1414 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1415 | aaa | ||
1416 | <ol> | ||
1417 | <li><p>XXX</p></li> | ||
1418 | </ol> | ||
1419 | </div> | ||
1420 | #errors | ||
1421 | /div/ol/li/p;element not allowed | ||
1422 | |||
1423 | #data | ||
1424 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1425 | aaa | ||
1426 | <ol> | ||
1427 | <li>XXX<p>YYY</p></li> | ||
1428 | </ol> | ||
1429 | </div> | ||
1430 | #errors | ||
1431 | /div/ol/li/p;element not allowed | ||
1432 | |||
1433 | #data | ||
1434 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1435 | aaa | ||
1436 | <ol> | ||
1437 | <li><p>XXX</p>YYY</li> | ||
1438 | </ol> | ||
1439 | </div> | ||
1440 | #errors | ||
1441 | /div/ol/li/p;element not allowed | ||
1442 | |||
1443 | #data | ||
1444 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1445 | aaa | ||
1446 | <menu> | ||
1447 | <li></li> | ||
1448 | </menu> | ||
1449 | </div> | ||
1450 | #errors | ||
1451 | |||
1452 | #data | ||
1453 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1454 | aaa | ||
1455 | <menu> | ||
1456 | <li> </li> | ||
1457 | </menu> | ||
1458 | </div> | ||
1459 | #errors | ||
1460 | |||
1461 | #data | ||
1462 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1463 | aaa | ||
1464 | <menu> | ||
1465 | <li>XXX</li> | ||
1466 | </menu> | ||
1467 | </div> | ||
1468 | #errors | ||
1469 | |||
1470 | #data | ||
1471 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1472 | aaa | ||
1473 | <menu> | ||
1474 | <li><p>XXX</p></li> | ||
1475 | </menu> | ||
1476 | </div> | ||
1477 | #errors | ||
1478 | /div/menu/li/p;element not allowed | ||
1479 | |||
1480 | #data | ||
1481 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1482 | aaa | ||
1483 | <menu> | ||
1484 | <li>XXX<p>YYY</p></li> | ||
1485 | </menu> | ||
1486 | </div> | ||
1487 | #errors | ||
1488 | /div/menu/li/p;element not allowed | ||
1489 | |||
1490 | #data | ||
1491 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1492 | aaa | ||
1493 | <menu> | ||
1494 | <li><p>XXX</p>YYY</li> | ||
1495 | </menu> | ||
1496 | </div> | ||
1497 | #errors | ||
1498 | /div/menu/li/p;element not allowed | ||
1499 | |||
1500 | #data | ||
1501 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1502 | <ul> | ||
1503 | <li></li> | ||
1504 | </ul> | ||
1505 | aaa | ||
1506 | </div> | ||
1507 | #errors | ||
1508 | |||
1509 | #data | ||
1510 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1511 | <ul> | ||
1512 | <li> </li> | ||
1513 | </ul> | ||
1514 | aaa | ||
1515 | </div> | ||
1516 | #errors | ||
1517 | |||
1518 | #data | ||
1519 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1520 | <ul> | ||
1521 | <li>XXX</li> | ||
1522 | </ul> | ||
1523 | aaa | ||
1524 | </div> | ||
1525 | #errors | ||
1526 | |||
1527 | #data | ||
1528 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1529 | <ul> | ||
1530 | <li><p>XXX</p></li> | ||
1531 | </ul> | ||
1532 | aaa | ||
1533 | </div> | ||
1534 | #errors | ||
1535 | /div/ul/li/p;element not allowed | ||
1536 | |||
1537 | #data | ||
1538 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1539 | <ul> | ||
1540 | <li>XXX<p>YYY</p></li> | ||
1541 | </ul> | ||
1542 | aaa | ||
1543 | </div> | ||
1544 | #errors | ||
1545 | /div/ul/li/p;element not allowed | ||
1546 | |||
1547 | #data | ||
1548 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1549 | <ul> | ||
1550 | <li><p>XXX</p>YYY</li> | ||
1551 | </ul> | ||
1552 | aaa | ||
1553 | </div> | ||
1554 | #errors | ||
1555 | /div/ul/li/p;element not allowed | ||
1556 | |||
1557 | #data | ||
1558 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1559 | <ol> | ||
1560 | <li></li> | ||
1561 | </ol> | ||
1562 | aaa | ||
1563 | </div> | ||
1564 | #errors | ||
1565 | |||
1566 | #data | ||
1567 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1568 | <ol> | ||
1569 | <li> </li> | ||
1570 | </ol> | ||
1571 | aaa | ||
1572 | </div> | ||
1573 | #errors | ||
1574 | |||
1575 | #data | ||
1576 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1577 | <ol> | ||
1578 | <li>XXX</li> | ||
1579 | </ol> | ||
1580 | aaa | ||
1581 | </div> | ||
1582 | #errors | ||
1583 | |||
1584 | #data | ||
1585 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1586 | <ol> | ||
1587 | <li><p>XXX</p></li> | ||
1588 | </ol> | ||
1589 | aaa | ||
1590 | </div> | ||
1591 | #errors | ||
1592 | /div/ol/li/p;element not allowed | ||
1593 | |||
1594 | #data | ||
1595 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1596 | <ol> | ||
1597 | <li>XXX<p>YYY</p></li> | ||
1598 | </ol> | ||
1599 | aaa | ||
1600 | </div> | ||
1601 | #errors | ||
1602 | /div/ol/li/p;element not allowed | ||
1603 | |||
1604 | #data | ||
1605 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1606 | <ol> | ||
1607 | <li><p>XXX</p>YYY</li> | ||
1608 | </ol> | ||
1609 | aaa | ||
1610 | </div> | ||
1611 | #errors | ||
1612 | /div/ol/li/p;element not allowed | ||
1613 | |||
1614 | #data | ||
1615 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1616 | <menu> | ||
1617 | <li></li> | ||
1618 | </menu> | ||
1619 | aaa | ||
1620 | </div> | ||
1621 | #errors | ||
1622 | |||
1623 | #data | ||
1624 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1625 | <menu> | ||
1626 | <li> </li> | ||
1627 | </menu> | ||
1628 | aaa | ||
1629 | </div> | ||
1630 | #errors | ||
1631 | |||
1632 | #data | ||
1633 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1634 | <menu> | ||
1635 | <li>XXX</li> | ||
1636 | </menu> | ||
1637 | aaa | ||
1638 | </div> | ||
1639 | #errors | ||
1640 | |||
1641 | #data | ||
1642 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1643 | <menu> | ||
1644 | <li><p>XXX</p></li> | ||
1645 | </menu> | ||
1646 | aaa | ||
1647 | </div> | ||
1648 | #errors | ||
1649 | /div/menu/li/p;element not allowed | ||
1650 | |||
1651 | #data | ||
1652 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1653 | <menu> | ||
1654 | <li>XXX<p>YYY</p></li> | ||
1655 | </menu> | ||
1656 | aaa | ||
1657 | </div> | ||
1658 | #errors | ||
1659 | /div/menu/li/p;element not allowed | ||
1660 | |||
1661 | #data | ||
1662 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1663 | <menu> | ||
1664 | <li><p>XXX</p>YYY</li> | ||
1665 | </menu> | ||
1666 | aaa | ||
1667 | </div> | ||
1668 | #errors | ||
1669 | /div/menu/li/p;element not allowed | ||
1670 | |||
1671 | #data | ||
1672 | <dd xmlns="http://www.w3.org/1999/xhtml"></dd> | ||
1673 | #errors | ||
1674 | |||
1675 | #data | ||
1676 | <dd xmlns="http://www.w3.org/1999/xhtml"> </dd> | ||
1677 | #errors | ||
1678 | |||
1679 | #data | ||
1680 | <dd xmlns="http://www.w3.org/1999/xhtml">XXX</dd> | ||
1681 | #errors | ||
1682 | |||
1683 | #data | ||
1684 | <dd xmlns="http://www.w3.org/1999/xhtml"><p>XXX</p></dd> | ||
1685 | #errors | ||
1686 | |||
1687 | #data | ||
1688 | <dd xmlns="http://www.w3.org/1999/xhtml"><p>XXX</p>YYY</dd> | ||
1689 | #errors | ||
1690 | /dd/p;element not allowed | ||
1691 | |||
1692 | #data | ||
1693 | <dd xmlns="http://www.w3.org/1999/xhtml">XXX<p>YYY</p></dd> | ||
1694 | #errors | ||
1695 | /dd/p;element not allowed | ||
1696 | |||
1697 | #data | ||
1698 | wakaba | 1.4 | <body xmlns="http://www.w3.org/1999/xhtml"> |
1699 | <dl> | ||
1700 | <dt>XXX</dt> | ||
1701 | <dd></dd> | ||
1702 | </dl> | ||
1703 | </body> | ||
1704 | #errors | ||
1705 | |||
1706 | #data | ||
1707 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
1708 | <dl> | ||
1709 | <dt>XXX</dt> | ||
1710 | <dd> </dd> | ||
1711 | </dl> | ||
1712 | </body> | ||
1713 | #errors | ||
1714 | |||
1715 | #data | ||
1716 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
1717 | <dl> | ||
1718 | <dt>XXX</dt> | ||
1719 | <dd>YYY</dd> | ||
1720 | </dl> | ||
1721 | </body> | ||
1722 | #errors | ||
1723 | |||
1724 | #data | ||
1725 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
1726 | <dl> | ||
1727 | <dt>XXX</dt> | ||
1728 | <dd><p>YYY</p></dd> | ||
1729 | </dl> | ||
1730 | </body> | ||
1731 | #errors | ||
1732 | |||
1733 | #data | ||
1734 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
1735 | <dl> | ||
1736 | <dt>XXX</dt> | ||
1737 | <dd>YYY<p>ZZZ</p></dd> | ||
1738 | </dl> | ||
1739 | </body> | ||
1740 | #errors | ||
1741 | /body/dl/dd/p;element not allowed | ||
1742 | |||
1743 | #data | ||
1744 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
1745 | <dl> | ||
1746 | <dt>XXX</dt> | ||
1747 | <dd><p>YYY</p>ZZZ</dd> | ||
1748 | </dl> | ||
1749 | </body> | ||
1750 | #errors | ||
1751 | /body/dl/dd/p;element not allowed | ||
1752 | |||
1753 | #data | ||
1754 | <dl xmlns="http://www.w3.org/1999/xhtml"> | ||
1755 | <dt>XXX</dt> | ||
1756 | <dd></dd> | ||
1757 | </dl> | ||
1758 | #errors | ||
1759 | |||
1760 | #data | ||
1761 | <dl xmlns="http://www.w3.org/1999/xhtml"> | ||
1762 | <dt>XXX</dt> | ||
1763 | <dd> </dd> | ||
1764 | </dl> | ||
1765 | #errors | ||
1766 | |||
1767 | #data | ||
1768 | <dl xmlns="http://www.w3.org/1999/xhtml"> | ||
1769 | <dt>XXX</dt> | ||
1770 | <dd>YYY</dd> | ||
1771 | </dl> | ||
1772 | #errors | ||
1773 | |||
1774 | #data | ||
1775 | <dl xmlns="http://www.w3.org/1999/xhtml"> | ||
1776 | <dt>XXX</dt> | ||
1777 | <dd><p>YYY</p></dd> | ||
1778 | </dl> | ||
1779 | #errors | ||
1780 | |||
1781 | #data | ||
1782 | <dl xmlns="http://www.w3.org/1999/xhtml"> | ||
1783 | <dt>XXX</dt> | ||
1784 | <dd>YYY<p>ZZZ</p></dd> | ||
1785 | </dl> | ||
1786 | #errors | ||
1787 | /dl/dd/p;element not allowed | ||
1788 | |||
1789 | #data | ||
1790 | <dl xmlns="http://www.w3.org/1999/xhtml"> | ||
1791 | <dt>XXX</dt> | ||
1792 | <dd><p>YYY</p>ZZZ</dd> | ||
1793 | </dl> | ||
1794 | #errors | ||
1795 | /dl/dd/p;element not allowed | ||
1796 | |||
1797 | #data | ||
1798 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
1799 | <dl> | ||
1800 | <dt>XXX</dt> | ||
1801 | <dd></dd> | ||
1802 | </dl> | ||
1803 | </p> | ||
1804 | #errors | ||
1805 | |||
1806 | #data | ||
1807 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
1808 | <dl> | ||
1809 | <dt>XXX</dt> | ||
1810 | <dd> </dd> | ||
1811 | </dl> | ||
1812 | </p> | ||
1813 | #errors | ||
1814 | |||
1815 | #data | ||
1816 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
1817 | <dl> | ||
1818 | <dt>XXX</dt> | ||
1819 | <dd>YYY</dd> | ||
1820 | </dl> | ||
1821 | </p> | ||
1822 | #errors | ||
1823 | |||
1824 | #data | ||
1825 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
1826 | <dl> | ||
1827 | <dt>XXX</dt> | ||
1828 | <dd><p>YYY</p></dd> | ||
1829 | </dl> | ||
1830 | </p> | ||
1831 | #errors | ||
1832 | /p/dl/dd/p;element not allowed | ||
1833 | |||
1834 | #data | ||
1835 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
1836 | <dl> | ||
1837 | <dt>XXX</dt> | ||
1838 | <dd>YYY<p>ZZZ</p></dd> | ||
1839 | </dl> | ||
1840 | </p> | ||
1841 | #errors | ||
1842 | /p/dl/dd/p;element not allowed | ||
1843 | |||
1844 | #data | ||
1845 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1846 | <p/> | ||
1847 | <dl> | ||
1848 | <dt>XXX</dt> | ||
1849 | <dd></dd> | ||
1850 | </dl> | ||
1851 | </div> | ||
1852 | #errors | ||
1853 | |||
1854 | #data | ||
1855 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1856 | <p/> | ||
1857 | <dl> | ||
1858 | <dt>XXX</dt> | ||
1859 | <dd> </dd> | ||
1860 | </dl> | ||
1861 | </div> | ||
1862 | #errors | ||
1863 | |||
1864 | #data | ||
1865 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1866 | <p/> | ||
1867 | <dl> | ||
1868 | <dt>XXX</dt> | ||
1869 | <dd>YYY</dd> | ||
1870 | </dl> | ||
1871 | </div> | ||
1872 | #errors | ||
1873 | |||
1874 | #data | ||
1875 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1876 | <p/> | ||
1877 | <dl> | ||
1878 | <dt>XXX</dt> | ||
1879 | <dd><p>YYY</p></dd> | ||
1880 | </dl> | ||
1881 | </div> | ||
1882 | #errors | ||
1883 | |||
1884 | #data | ||
1885 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1886 | <p/> | ||
1887 | <dl> | ||
1888 | <dt>XXX</dt> | ||
1889 | <dd>YYY<p>ZZZ</p></dd> | ||
1890 | </dl> | ||
1891 | </div> | ||
1892 | #errors | ||
1893 | /div/dl/dd/p;element not allowed | ||
1894 | |||
1895 | #data | ||
1896 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1897 | <dl> | ||
1898 | <dt>XXX</dt> | ||
1899 | <dd></dd> | ||
1900 | </dl> | ||
1901 | <p/> | ||
1902 | </div> | ||
1903 | #errors | ||
1904 | |||
1905 | #data | ||
1906 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1907 | <dl> | ||
1908 | <dt>XXX</dt> | ||
1909 | <dd> </dd> | ||
1910 | </dl> | ||
1911 | <p/> | ||
1912 | </div> | ||
1913 | #errors | ||
1914 | |||
1915 | #data | ||
1916 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1917 | <dl> | ||
1918 | <dt>XXX</dt> | ||
1919 | <dd>YYY</dd> | ||
1920 | </dl> | ||
1921 | <p/> | ||
1922 | </div> | ||
1923 | #errors | ||
1924 | |||
1925 | #data | ||
1926 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1927 | <dl> | ||
1928 | <dt>XXX</dt> | ||
1929 | <dd><p>YYY</p></dd> | ||
1930 | </dl> | ||
1931 | <p/> | ||
1932 | </div> | ||
1933 | #errors | ||
1934 | |||
1935 | #data | ||
1936 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1937 | <dl> | ||
1938 | <dt>XXX</dt> | ||
1939 | <dd><p>YYY</p>ZZZ</dd> | ||
1940 | </dl> | ||
1941 | <p/> | ||
1942 | </div> | ||
1943 | #errors | ||
1944 | /div/dl/dd/p;element not allowed | ||
1945 | |||
1946 | #data | ||
1947 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1948 | <dl> | ||
1949 | <dt>XXX</dt> | ||
1950 | <dd>YYY<p>ZZZ</p></dd> | ||
1951 | </dl> | ||
1952 | <p/> | ||
1953 | </div> | ||
1954 | #errors | ||
1955 | /div/dl/dd/p;element not allowed | ||
1956 | |||
1957 | #data | ||
1958 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1959 | aaa | ||
1960 | <dl> | ||
1961 | <dt>XXX</dt> | ||
1962 | <dd></dd> | ||
1963 | </dl> | ||
1964 | </div> | ||
1965 | #errors | ||
1966 | |||
1967 | #data | ||
1968 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1969 | aaa | ||
1970 | <dl> | ||
1971 | <dt>XXX</dt> | ||
1972 | <dd> </dd> | ||
1973 | </dl> | ||
1974 | </div> | ||
1975 | #errors | ||
1976 | |||
1977 | #data | ||
1978 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1979 | aaa | ||
1980 | <dl> | ||
1981 | <dt>XXX</dt> | ||
1982 | <dd>YYY</dd> | ||
1983 | </dl> | ||
1984 | </div> | ||
1985 | #errors | ||
1986 | |||
1987 | #data | ||
1988 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
1989 | aaa | ||
1990 | <dl> | ||
1991 | <dt>XXX</dt> | ||
1992 | <dd><p>YYY</p></dd> | ||
1993 | </dl> | ||
1994 | </div> | ||
1995 | #errors | ||
1996 | /div/dl/dd/p;element not allowed | ||
1997 | |||
1998 | #data | ||
1999 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
2000 | aaa | ||
2001 | <dl> | ||
2002 | <dt>XXX</dt> | ||
2003 | <dd>YYY<p>ZZZ</p></dd> | ||
2004 | </dl> | ||
2005 | </div> | ||
2006 | #errors | ||
2007 | /div/dl/dd/p;element not allowed | ||
2008 | |||
2009 | #data | ||
2010 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
2011 | <dl> | ||
2012 | <dt>XXX</dt> | ||
2013 | <dd></dd> | ||
2014 | </dl> | ||
2015 | aaa | ||
2016 | </div> | ||
2017 | #errors | ||
2018 | |||
2019 | #data | ||
2020 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
2021 | <dl> | ||
2022 | <dt>XXX</dt> | ||
2023 | <dd> </dd> | ||
2024 | </dl> | ||
2025 | aaa | ||
2026 | </div> | ||
2027 | #errors | ||
2028 | |||
2029 | #data | ||
2030 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
2031 | <dl> | ||
2032 | <dt>XXX</dt> | ||
2033 | <dd>YYY</dd> | ||
2034 | </dl> | ||
2035 | aaa | ||
2036 | </div> | ||
2037 | #errors | ||
2038 | |||
2039 | #data | ||
2040 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
2041 | <dl> | ||
2042 | <dt>XXX</dt> | ||
2043 | <dd><p>YYY</p></dd> | ||
2044 | </dl> | ||
2045 | aaa | ||
2046 | </div> | ||
2047 | #errors | ||
2048 | /div/dl/dd/p;element not allowed | ||
2049 | |||
2050 | #data | ||
2051 | <div xmlns="http://www.w3.org/1999/xhtml"> | ||
2052 | <dl> | ||
2053 | <dt>XXX</dt> | ||
2054 | <dd>YYY<p>ZZZ</p></dd> | ||
2055 | </dl> | ||
2056 | aaa | ||
2057 | </div> | ||
2058 | #errors | ||
2059 | /div/dl/dd/p;element not allowed | ||
2060 | |||
2061 | #data | ||
2062 | <body xmlns="http://www.w3.org/1999/xhtml"> | ||
2063 | <dl> | ||
2064 | <dt>XXX</dt> | ||
2065 | <dd><p>YYY</p>ZZZ</dd> | ||
2066 | </dl> | ||
2067 | </body> | ||
2068 | #errors | ||
2069 | /body/dl/dd/p;element not allowed | ||
2070 | |||
2071 | #data | ||
2072 | <dialog xmlns="http://www.w3.org/1999/xhtml"> | ||
2073 | <dt>XXX</dt> | ||
2074 | <dd></dd> | ||
2075 | </dialog> | ||
2076 | #errors | ||
2077 | |||
2078 | #data | ||
2079 | <dialog xmlns="http://www.w3.org/1999/xhtml"> | ||
2080 | <dt>XXX</dt> | ||
2081 | <dd> </dd> | ||
2082 | </dialog> | ||
2083 | #errors | ||
2084 | |||
2085 | #data | ||
2086 | <dialog xmlns="http://www.w3.org/1999/xhtml"> | ||
2087 | <dt>XXX</dt> | ||
2088 | <dd>YYY</dd> | ||
2089 | </dialog> | ||
2090 | #errors | ||
2091 | |||
2092 | #data | ||
2093 | <dialog xmlns="http://www.w3.org/1999/xhtml"> | ||
2094 | <dt>XXX</dt> | ||
2095 | <dd><p>YYY</p></dd> | ||
2096 | </dialog> | ||
2097 | #errors | ||
2098 | |||
2099 | #data | ||
2100 | <dialog xmlns="http://www.w3.org/1999/xhtml"> | ||
2101 | <dt>XXX</dt> | ||
2102 | <dd>YYY<p>ZZZ</p></dd> | ||
2103 | </dialog> | ||
2104 | #errors | ||
2105 | /dialog/dd/p;element not allowed | ||
2106 | |||
2107 | #data | ||
2108 | <dialog xmlns="http://www.w3.org/1999/xhtml"> | ||
2109 | <dt>XXX</dt> | ||
2110 | <dd><p>YYY</p>ZZZ</dd> | ||
2111 | </dialog> | ||
2112 | #errors | ||
2113 | /dialog/dd/p;element not allowed | ||
2114 | |||
2115 | #data | ||
2116 | wakaba | 1.6 | <a xmlns="http://www.w3.org/1999/xhtml"></a> |
2117 | #errors | ||
2118 | |||
2119 | #data | ||
2120 | <a xmlns="http://www.w3.org/1999/xhtml"> </a> | ||
2121 | #errors | ||
2122 | |||
2123 | #data | ||
2124 | <a xmlns="http://www.w3.org/1999/xhtml">XXX</a> | ||
2125 | #errors | ||
2126 | |||
2127 | #data | ||
2128 | <a xmlns="http://www.w3.org/1999/xhtml"><em>XXX</em></a> | ||
2129 | #errors | ||
2130 | |||
2131 | #data | ||
2132 | <a xmlns="http://www.w3.org/1999/xhtml">XXX<em>YYY</em>ZZZ</a> | ||
2133 | #errors | ||
2134 | |||
2135 | #data | ||
2136 | <a xmlns="http://www.w3.org/1999/xhtml"><blockquote/></a> | ||
2137 | #errors | ||
2138 | |||
2139 | #data | ||
2140 | <a xmlns="http://www.w3.org/1999/xhtml">XXX<blockquote/></a> | ||
2141 | #errors | ||
2142 | |||
2143 | #data | ||
2144 | <a xmlns="http://www.w3.org/1999/xhtml"><a>XXX</a></a> | ||
2145 | #errors | ||
2146 | /a/a;element not allowed | ||
2147 | |||
2148 | #data | ||
2149 | <a xmlns="http://www.w3.org/1999/xhtml">XXX<a>YYY</a></a> | ||
2150 | #errors | ||
2151 | /a/a;element not allowed | ||
2152 | |||
2153 | #data | ||
2154 | <a xmlns="http://www.w3.org/1999/xhtml"><em><a>XXX</a></em></a> | ||
2155 | #errors | ||
2156 | /a/em/a;element not allowed | ||
2157 | |||
2158 | #data | ||
2159 | <details xmlns="http://www.w3.org/1999/xhtml"> | ||
2160 | <legend/> | ||
2161 | <p><a/></p> | ||
2162 | </details> | ||
2163 | #errors | ||
2164 | /details/p/a;element not allowed | ||
2165 | |||
2166 | #data | ||
2167 | <details xmlns="http://www.w3.org/1999/xhtml"> | ||
2168 | <legend><a/></legend> | ||
2169 | </details> | ||
2170 | #errors | ||
2171 | /details/legend/a;element not allowed | ||
2172 | |||
2173 | #data | ||
2174 | <datagrid xmlns="http://www.w3.org/1999/xhtml"> | ||
2175 | <p><a/></p> | ||
2176 | </datagrid> | ||
2177 | #errors | ||
2178 | /datagrid/p/a;element not allowed | ||
2179 | |||
2180 | #data | ||
2181 | <a xmlns="http://www.w3.org/1999/xhtml"> | ||
2182 | <details> | ||
2183 | <legend/> | ||
2184 | </details> | ||
2185 | </a> | ||
2186 | #errors | ||
2187 | /a/details;element not allowed | ||
2188 | |||
2189 | #data | ||
2190 | <a xmlns="http://www.w3.org/1999/xhtml"> | ||
2191 | <span> | ||
2192 | <details><legend/></details> | ||
2193 | </span> | ||
2194 | </a> | ||
2195 | #errors | ||
2196 | /a/span/details;element not allowed | ||
2197 | |||
2198 | #data | ||
2199 | <a xmlns="http://www.w3.org/1999/xhtml"> | ||
2200 | <datagrid/> | ||
2201 | </a> | ||
2202 | #errors | ||
2203 | /a/datagrid;element not allowed | ||
2204 | |||
2205 | #data | ||
2206 | <a xmlns="http://www.w3.org/1999/xhtml"> | ||
2207 | <span><datagrid/></span> | ||
2208 | </a> | ||
2209 | #errors | ||
2210 | /a/span/datagrid;element not allowed | ||
2211 | |||
2212 | #data | ||
2213 | <em xmlns="http://www.w3.org/1999/xhtml"></em> | ||
2214 | #errors | ||
2215 | |||
2216 | #data | ||
2217 | <em xmlns="http://www.w3.org/1999/xhtml"> </em> | ||
2218 | #errors | ||
2219 | |||
2220 | #data | ||
2221 | <em xmlns="http://www.w3.org/1999/xhtml">XXX</em> | ||
2222 | #errors | ||
2223 | |||
2224 | #data | ||
2225 | <em xmlns="http://www.w3.org/1999/xhtml"><blockquote/></em> | ||
2226 | #errors | ||
2227 | |||
2228 | #data | ||
2229 | <em xmlns="http://www.w3.org/1999/xhtml">XXX<blockquote/></em> | ||
2230 | #errors | ||
2231 | |||
2232 | #data | ||
2233 | <em xmlns="http://www.w3.org/1999/xhtml"><p/></em> | ||
2234 | #errors | ||
2235 | /em/p;element not allowed | ||
2236 | |||
2237 | #data | ||
2238 | wakaba | 1.4 | <code xmlns="http://www.w3.org/1999/xhtml"> |
2239 | <em></em> | ||
2240 | </code> | ||
2241 | #errors | ||
2242 | |||
2243 | #data | ||
2244 | <code xmlns="http://www.w3.org/1999/xhtml"> | ||
2245 | <em> </em> | ||
2246 | </code> | ||
2247 | #errors | ||
2248 | |||
2249 | #data | ||
2250 | <code xmlns="http://www.w3.org/1999/xhtml"> | ||
2251 | <em>XXX</em> | ||
2252 | </code> | ||
2253 | #errors | ||
2254 | |||
2255 | #data | ||
2256 | <code xmlns="http://www.w3.org/1999/xhtml"> | ||
2257 | <em>XXX<b/></em> | ||
2258 | </code> | ||
2259 | #errors | ||
2260 | |||
2261 | #data | ||
2262 | <code xmlns="http://www.w3.org/1999/xhtml"> | ||
2263 | <em>XXX<blockquote/></em> | ||
2264 | </code> | ||
2265 | #errors | ||
2266 | /code/em/blockquote;element not allowed | ||
2267 | |||
2268 | #data | ||
2269 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2270 | <em></em> | ||
2271 | </p> | ||
2272 | #errors | ||
2273 | |||
2274 | #data | ||
2275 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2276 | <em> </em> | ||
2277 | </p> | ||
2278 | #errors | ||
2279 | |||
2280 | #data | ||
2281 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2282 | <em>XXX</em> | ||
2283 | </p> | ||
2284 | #errors | ||
2285 | |||
2286 | #data | ||
2287 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2288 | <em>XXX<b>YYY</b></em> | ||
2289 | </p> | ||
2290 | #errors | ||
2291 | |||
2292 | #data | ||
2293 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2294 | <em>XXX<blockquote/></em> | ||
2295 | </p> | ||
2296 | #errors | ||
2297 | |||
2298 | #data | ||
2299 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2300 | @@ TODO: strong, small, m | ||
2301 | </p> | ||
2302 | #errors | ||
2303 | |||
2304 | #data | ||
2305 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2306 | <dfn></dfn> | ||
2307 | </p> | ||
2308 | #errors | ||
2309 | |||
2310 | #data | ||
2311 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2312 | <dfn> </dfn> | ||
2313 | </p> | ||
2314 | #errors | ||
2315 | |||
2316 | #data | ||
2317 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2318 | <dfn>XXX</dfn> | ||
2319 | </p> | ||
2320 | #errors | ||
2321 | |||
2322 | #data | ||
2323 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2324 | <dfn><em>XXX</em></dfn> | ||
2325 | </p> | ||
2326 | #errors | ||
2327 | |||
2328 | #data | ||
2329 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2330 | <dfn><em><blockquote/></em></dfn> | ||
2331 | </p> | ||
2332 | #errors | ||
2333 | /p/dfn/em/blockquote;element not allowed | ||
2334 | |||
2335 | #data | ||
2336 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2337 | <dfn><blockquote/></dfn> | ||
2338 | </p> | ||
2339 | #errors | ||
2340 | /p/dfn/blockquote;element not allowed | ||
2341 | |||
2342 | #data | ||
2343 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2344 | <dfn><h1/></dfn> | ||
2345 | </p> | ||
2346 | #errors | ||
2347 | /p/dfn/h1;element not allowed | ||
2348 | |||
2349 | #data | ||
2350 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2351 | <dfn><dfn>XXX</dfn></dfn> | ||
2352 | </p> | ||
2353 | #errors | ||
2354 | /p/dfn/dfn;element not allowed | ||
2355 | |||
2356 | #data | ||
2357 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2358 | <dfn></dfn><dfn/> | ||
2359 | </p> | ||
2360 | #errors | ||
2361 | |||
2362 | #data | ||
2363 | <p xmlns="http://www.w3.org/1999/xhtml"> | ||
2364 | <dfn><em><dfn/></em></dfn> | ||
2365 | </p> | ||
2366 | #errors | ||
2367 | /p/dfn/em/dfn;element not allowed | ||
2368 | |||
2369 | wakaba | 1.6 | #data |
2370 | <fieldset xmlns="http://www.w3.org/1999/xhtml"> | ||
2371 | <legend>XXX</legend> | ||
2372 | </fieldset> | ||
2373 | #errors | ||
2374 | wakaba | 1.4 | |
2375 | wakaba | 1.6 | #data |
2376 | <fieldset xmlns="http://www.w3.org/1999/xhtml"> | ||
2377 | <legend><p>XXX</p></legend> | ||
2378 | </fieldset> | ||
2379 | #errors | ||
2380 | /fieldset/legend/p;element not allowed | ||
2381 | |||
2382 | #data | ||
2383 | <fieldset xmlns="http://www.w3.org/1999/xhtml"> | ||
2384 | <legend><blockquote><p>XXX</p></blockquote></legend> | ||
2385 | </fieldset> | ||
2386 | #errors | ||
2387 | /fieldset/legend/blockquote;element not allowed | ||
2388 | |||
2389 | #data | ||
2390 | <figure xmlns="http://www.w3.org/1999/xhtml"> | ||
2391 | <legend>XXX</legend> | ||
2392 | <img/> | ||
2393 | </figure> | ||
2394 | #errors | ||
2395 | |||
2396 | #data | ||
2397 | <figure xmlns="http://www.w3.org/1999/xhtml"> | ||
2398 | <legend><p>XXX</p></legend> | ||
2399 | <img/> | ||
2400 | </figure> | ||
2401 | #errors | ||
2402 | /figure/legend/p;element not allowed | ||
2403 | |||
2404 | #data | ||
2405 | <figure xmlns="http://www.w3.org/1999/xhtml"> | ||
2406 | <legend><blockquote><p>XXX</p></blockquote></legend> | ||
2407 | <img/> | ||
2408 | </figure> | ||
2409 | #errors | ||
2410 | |||
2411 | #data | ||
2412 | <figure xmlns="http://www.w3.org/1999/xhtml"> | ||
2413 | <legend>XXX</legend> | ||
2414 | <img/> | ||
2415 | </figure> | ||
2416 | #errors | ||
2417 | |||
2418 | #data | ||
2419 | <figure xmlns="http://www.w3.org/1999/xhtml"> | ||
2420 | <legend><p>XXX</p></legend> | ||
2421 | <img/> | ||
2422 | </figure> | ||
2423 | #errors | ||
2424 | /figure/legend/p;element not allowed | ||
2425 | |||
2426 | #data | ||
2427 | <figure xmlns="http://www.w3.org/1999/xhtml"> | ||
2428 | <legend><blockquote><p>XXX</p></blockquote></legend> | ||
2429 | <img/> | ||
2430 | </figure> | ||
2431 | #errors | ||
2432 | /figure/legend/blockquote;element not allowed |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |