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