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