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