Parent Directory
|
Revision Log
++ whatpm/t/ChangeLog 19 May 2007 10:11:24 -0000 * content-model-1.dat: A content model conformance error was missing. * content-model-2.dat: Unsupported global attribute (prefixed attribute) test is added. Tests for many HTML5 elements are added. 2007-05-19 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/ChangeLog 19 May 2007 10:10:09 -0000 * ContentChecker.pm: Support for many of HTML5 elements. ($GetHTMLNonNegativeIntegerAttrChecker): New. 2007-05-19 Wakaba <wakaba@suika.fam.cx>
| 1 | #data |
| 2 | <unknown u1=""></unknown> |
| 3 | #errors |
| 4 | /unknown;element not supported |
| 5 | |
| 6 | #data |
| 7 | <unknown u1="" u2=""></unknown> |
| 8 | #errors |
| 9 | /unknown;element not supported |
| 10 | |
| 11 | #data |
| 12 | <unknown u1="" xmlns=""></unknown> |
| 13 | #errors |
| 14 | /unknown;element not supported |
| 15 | |
| 16 | #data |
| 17 | <unknown xml:lang="!" xmlns=""></unknown> |
| 18 | #errors |
| 19 | /unknown;element not supported |
| 20 | /unknown/@lang;syntax error |
| 21 | |
| 22 | #data |
| 23 | <unknown u1="" xml:lang="!" xmlns=""></unknown> |
| 24 | #errors |
| 25 | /unknown;element not supported |
| 26 | /unknown/@lang;syntax error |
| 27 | |
| 28 | #data |
| 29 | <unknown u1="" xmlns="http://www.w3.org/1999/xhtml"></unknown> |
| 30 | #errors |
| 31 | /unknown;element not supported |
| 32 | |
| 33 | #data |
| 34 | <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown> |
| 35 | #errors |
| 36 | /unknown;element not supported |
| 37 | /unknown/@lang;syntax error |
| 38 | |
| 39 | #data |
| 40 | <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown> |
| 41 | #errors |
| 42 | /unknown;element not supported |
| 43 | /unknown/@lang;syntax error |
| 44 | |
| 45 | #data |
| 46 | <p xmlns="http://www.w3.org/1999/xhtml" |
| 47 | a:b="" xmlns:a="http://www.example.test/"/> |
| 48 | #errors |
| 49 | /p/@b;attribute not supported |
| 50 | |
| 51 | #data |
| 52 | <p xmlns="http://www.w3.org/1999/xhtml" |
| 53 | id=""></p> |
| 54 | #errors |
| 55 | /p/@id;attribute value is empty |
| 56 | |
| 57 | #data |
| 58 | <p xmlns="http://www.w3.org/1999/xhtml" |
| 59 | id="a"></p> |
| 60 | #errors |
| 61 | |
| 62 | #data |
| 63 | <p xmlns="http://www.w3.org/1999/xhtml" |
| 64 | id="aaaaaaa"></p> |
| 65 | #errors |
| 66 | |
| 67 | #data |
| 68 | <p xmlns="http://www.w3.org/1999/xhtml" |
| 69 | id="a"><span id="a"></span></p> |
| 70 | #errors |
| 71 | /p/span/@id;duplicate ID |
| 72 | |
| 73 | #data |
| 74 | <p xmlns="http://www.w3.org/1999/xhtml" |
| 75 | id=""><span id=""></span></p> |
| 76 | #errors |
| 77 | /p/@id;attribute value is empty |
| 78 | /p/span/@id;attribute value is empty |
| 79 | |
| 80 | #data |
| 81 | <p xmlns="http://www.w3.org/1999/xhtml"> |
| 82 | <span id="a"/> |
| 83 | <span id="b"/> |
| 84 | <span id="c"/> |
| 85 | </p> |
| 86 | #errors |
| 87 | |
| 88 | #data |
| 89 | <p xmlns="http://www.w3.org/1999/xhtml"> |
| 90 | <span id="a "/> |
| 91 | <span id=" a"/> |
| 92 | <span id=" a "/> |
| 93 | </p> |
| 94 | #errors |
| 95 | |
| 96 | #data |
| 97 | <p xmlns="http://www.w3.org/1999/xhtml"> |
| 98 | <span id="i"/> |
| 99 | <span id="I"/> |
| 100 | <span id="ı"/> |
| 101 | </p> |
| 102 | #errors |
| 103 | |
| 104 | #data |
| 105 | <p title="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 106 | #errors |
| 107 | |
| 108 | #data |
| 109 | <p title="a" xmlns="http://www.w3.org/1999/xhtml"/> |
| 110 | #errors |
| 111 | |
| 112 | #data |
| 113 | <p title="AAAAAA" xmlns="http://www.w3.org/1999/xhtml"/> |
| 114 | #errors |
| 115 | |
| 116 | #data |
| 117 | <p title="XXXX
YYYY" xmlns="http://www.w3.org/1999/xhtml"/> |
| 118 | #errors |
| 119 | |
| 120 | #data |
| 121 | <p title="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 122 | #errors |
| 123 | |
| 124 | #data |
| 125 | <p title="AAA" xmlns="http://www.w3.org/1999/xhtml"> |
| 126 | <span title="BBB"/> |
| 127 | </p> |
| 128 | #errors |
| 129 | |
| 130 | #data |
| 131 | <p dir="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 132 | #errors |
| 133 | /p/@dir;invalid enumerated attribute value |
| 134 | |
| 135 | #data |
| 136 | <p dir="ltr" xmlns="http://www.w3.org/1999/xhtml"/> |
| 137 | #errors |
| 138 | |
| 139 | #data |
| 140 | <p dir=" ltr" xmlns="http://www.w3.org/1999/xhtml"/> |
| 141 | #errors |
| 142 | /p/@dir;invalid enumerated attribute value |
| 143 | |
| 144 | #data |
| 145 | <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml"/> |
| 146 | #errors |
| 147 | /p/@dir;invalid enumerated attribute value |
| 148 | |
| 149 | #data |
| 150 | <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]> |
| 151 | <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml"/> |
| 152 | #errors |
| 153 | |
| 154 | #data |
| 155 | <?xml version="1.1"?> |
| 156 | <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]> |
| 157 | <p dir="ltr" xmlns="http://www.w3.org/1999/xhtml"/> |
| 158 | #errors |
| 159 | /p/@dir;invalid enumerated attribute value |
| 160 | |
| 161 | #data |
| 162 | <p dir="LTR" xmlns="http://www.w3.org/1999/xhtml"/> |
| 163 | #errors |
| 164 | |
| 165 | #data |
| 166 | <p dir="LtR" xmlns="http://www.w3.org/1999/xhtml"/> |
| 167 | #errors |
| 168 | |
| 169 | #data |
| 170 | <p dir="rtl" xmlns="http://www.w3.org/1999/xhtml"/> |
| 171 | #errors |
| 172 | |
| 173 | #data |
| 174 | <p dir="Rtl" xmlns="http://www.w3.org/1999/xhtml"/> |
| 175 | #errors |
| 176 | |
| 177 | #data |
| 178 | <p dir="rtltr" xmlns="http://www.w3.org/1999/xhtml"/> |
| 179 | #errors |
| 180 | /p/@dir;invalid enumerated attribute value |
| 181 | |
| 182 | #data |
| 183 | <p dir="XXXXXX" xmlns="http://www.w3.org/1999/xhtml"/> |
| 184 | #errors |
| 185 | /p/@dir;invalid enumerated attribute value |
| 186 | |
| 187 | #data |
| 188 | <p class="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 189 | #errors |
| 190 | |
| 191 | #data |
| 192 | <p class=" " xmlns="http://www.w3.org/1999/xhtml"/> |
| 193 | #errors |
| 194 | |
| 195 | #data |
| 196 | <?xml version="1.1"?> |
| 197 | <p class="
" xmlns="http://www.w3.org/1999/xhtml"/> |
| 198 | #errors |
| 199 | |
| 200 | #data |
| 201 | <p class="a b c d ef g h" xmlns="http://www.w3.org/1999/xhtml"/> |
| 202 | #errors |
| 203 | |
| 204 | #data |
| 205 | <?xml version="1.1"?> |
| 206 | <p class=" a b c d  efg h " xmlns="http://www.w3.org/1999/xhtml"/> |
| 207 | #errors |
| 208 | |
| 209 | #data |
| 210 | <p class="a a" xmlns="http://www.w3.org/1999/xhtml"/> |
| 211 | #errors |
| 212 | /p/@class;duplicate token:a |
| 213 | |
| 214 | #data |
| 215 | <?xml version="1.1"?> |
| 216 | <p class=" aa aa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 217 | #errors |
| 218 | /p/@class;duplicate token:aa |
| 219 | |
| 220 | #data |
| 221 | <p class="a a a" xmlns="http://www.w3.org/1999/xhtml"/> |
| 222 | #errors |
| 223 | /p/@class;duplicate token:a |
| 224 | /p/@class;duplicate token:a |
| 225 | |
| 226 | #data |
| 227 | <p class="I i ı" xmlns="http://www.w3.org/1999/xhtml"/> |
| 228 | #errors |
| 229 | |
| 230 | #data |
| 231 | <p irrelevant="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 232 | #errors |
| 233 | |
| 234 | #data |
| 235 | <p irrelevant=" " xmlns="http://www.w3.org/1999/xhtml"/> |
| 236 | #errors |
| 237 | /p/@irrelevant;invalid boolean attribute value |
| 238 | |
| 239 | #data |
| 240 | <p irrelevant="irrelevant" xmlns="http://www.w3.org/1999/xhtml"/> |
| 241 | #errors |
| 242 | |
| 243 | #data |
| 244 | <p irrelevant=" irrelevant" xmlns="http://www.w3.org/1999/xhtml"/> |
| 245 | #errors |
| 246 | /p/@irrelevant;invalid boolean attribute value |
| 247 | |
| 248 | #data |
| 249 | <p irrelevant="irrelevant " xmlns="http://www.w3.org/1999/xhtml"/> |
| 250 | #errors |
| 251 | /p/@irrelevant;invalid boolean attribute value |
| 252 | |
| 253 | #data |
| 254 | <p irrelevant=" irrelevant " xmlns="http://www.w3.org/1999/xhtml"/> |
| 255 | #errors |
| 256 | /p/@irrelevant;invalid boolean attribute value |
| 257 | |
| 258 | #data |
| 259 | <p irrelevant="Irrelevant" xmlns="http://www.w3.org/1999/xhtml"/> |
| 260 | #errors |
| 261 | /p/@irrelevant;invalid boolean attribute value |
| 262 | |
| 263 | #data |
| 264 | <p irrelevant="IRRELEVANT" xmlns="http://www.w3.org/1999/xhtml"/> |
| 265 | #errors |
| 266 | /p/@irrelevant;invalid boolean attribute value |
| 267 | |
| 268 | #data |
| 269 | <p irrelevant="relevant" xmlns="http://www.w3.org/1999/xhtml"/> |
| 270 | #errors |
| 271 | /p/@irrelevant;invalid boolean attribute value |
| 272 | |
| 273 | #data |
| 274 | <p irrelevant="irrelevants" xmlns="http://www.w3.org/1999/xhtml"/> |
| 275 | #errors |
| 276 | /p/@irrelevant;invalid boolean attribute value |
| 277 | |
| 278 | #data |
| 279 | <p irrelevant="false" xmlns="http://www.w3.org/1999/xhtml"/> |
| 280 | #errors |
| 281 | /p/@irrelevant;invalid boolean attribute value |
| 282 | |
| 283 | #data |
| 284 | <p irrelevant="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 285 | #errors |
| 286 | /p/@irrelevant;invalid boolean attribute value |
| 287 | |
| 288 | #data |
| 289 | <p irrelevant="yes" xmlns="http://www.w3.org/1999/xhtml"/> |
| 290 | #errors |
| 291 | /p/@irrelevant;invalid boolean attribute value |
| 292 | |
| 293 | #data |
| 294 | <p irrelevant="on" xmlns="http://www.w3.org/1999/xhtml"/> |
| 295 | #errors |
| 296 | /p/@irrelevant;invalid boolean attribute value |
| 297 | |
| 298 | #data html |
| 299 | <!DOCTYPE html> |
| 300 | <html> |
| 301 | <head><title></title></head> |
| 302 | <body></body> |
| 303 | </html> |
| 304 | #errors |
| 305 | |
| 306 | #data html |
| 307 | <!DOCTYPE html> |
| 308 | <html xmlns="http://www.w3.org/1999/xhtml"> |
| 309 | <head><title></title></head> |
| 310 | <body></body> |
| 311 | </html> |
| 312 | #errors |
| 313 | |
| 314 | #data html |
| 315 | <!DOCTYPE html> |
| 316 | <html xmlns=""> |
| 317 | <head><title></title></head> |
| 318 | <body></body> |
| 319 | </html> |
| 320 | #errors |
| 321 | /html/@xmlns;syntax error |
| 322 | |
| 323 | #data html |
| 324 | <!DOCTYPE html> |
| 325 | <html xmlns="http://www.w3.org/TR/xhtml1/strict"> |
| 326 | <head><title></title></head> |
| 327 | <body></body> |
| 328 | </html> |
| 329 | #errors |
| 330 | /html/@xmlns;syntax error |
| 331 | |
| 332 | #data html |
| 333 | <!DOCTYPE html> |
| 334 | <html xmlns="http://www.w3.org/TR/REC-html40"> |
| 335 | <head><title></title></head> |
| 336 | <body></body> |
| 337 | </html> |
| 338 | #errors |
| 339 | /html/@xmlns;syntax error |
| 340 | |
| 341 | #data html |
| 342 | <!DOCTYPE html> |
| 343 | <html xmlns=" http://www.w3.org/1999/xhtml "> |
| 344 | <head><title></title></head> |
| 345 | <body></body> |
| 346 | </html> |
| 347 | #errors |
| 348 | /html/@xmlns;syntax error |
| 349 | |
| 350 | #data html |
| 351 | <!DOCTYPE html> |
| 352 | <html xmlns="http://www.w3.org/1999/XHTML"> |
| 353 | <head><title></title></head> |
| 354 | <body></body> |
| 355 | </html> |
| 356 | #errors |
| 357 | /html/@xmlns;syntax error |
| 358 | |
| 359 | #data html |
| 360 | <!DOCTYPE html> |
| 361 | <html xmlns="http://www.w3.org/1999/html"> |
| 362 | <head><title></title></head> |
| 363 | <body></body> |
| 364 | </html> |
| 365 | #errors |
| 366 | /html/@xmlns;syntax error |
| 367 | |
| 368 | #data |
| 369 | <html xmlns="http://www.w3.org/1999/xhtml"> |
| 370 | <head><title></title></head> |
| 371 | <body></body> |
| 372 | </html> |
| 373 | #errors |
| 374 | |
| 375 | #data |
| 376 | <html xmlns="http://www.w3.org/1999/xhtml "> |
| 377 | <head><title></title></head> |
| 378 | <body></body> |
| 379 | </html> |
| 380 | #errors |
| 381 | /html;element not supported |
| 382 | /html/head;element not supported |
| 383 | /html/head/title;element not supported |
| 384 | /html/body;element not supported |
| 385 | |
| 386 | #data html |
| 387 | <!DOCTYPE html> |
| 388 | <html> |
| 389 | <head xmlns="http://www.w3.org/1999/xhtml"><title></title></head> |
| 390 | <body></body> |
| 391 | </html> |
| 392 | #errors |
| 393 | /html/head/@xmlns;attribute not supported |
| 394 | |
| 395 | #data |
| 396 | <head profile="http://www.test/" xmlns="http://www.w3.org/1999/xhtml"> |
| 397 | <title/> |
| 398 | </head> |
| 399 | #errors |
| 400 | /head/@profile;attribute not supported |
| 401 | |
| 402 | #data |
| 403 | <meta xmlns="http://www.w3.org/1999/xhtml"> |
| 404 | <!-- TODO: <meta> tests are not complete --> |
| 405 | </meta> |
| 406 | #errors |
| 407 | /meta;attribute missing:name|http-equiv|charset |
| 408 | |
| 409 | #data |
| 410 | <meta name="dns" xmlns="http://www.w3.org/1999/xhtml"/> |
| 411 | #errors |
| 412 | /meta;attribute missing:content |
| 413 | |
| 414 | #data |
| 415 | <meta name="dns" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/> |
| 416 | #errors |
| 417 | |
| 418 | #data |
| 419 | <meta charset="us-ascii" name="dns" content="example.net" |
| 420 | xmlns="http://www.w3.org/1999/xhtml"/> |
| 421 | #errors |
| 422 | /meta/@charset;attribute not allowed |
| 423 | |
| 424 | #data |
| 425 | <meta http-equiv="refresh" xmlns="http://www.w3.org/1999/xhtml"/> |
| 426 | #errors |
| 427 | /meta;attribute missing:content |
| 428 | |
| 429 | #data |
| 430 | <meta http-equiv="refresh" content="10; a.html" |
| 431 | xmlns="http://www.w3.org/1999/xhtml"/> |
| 432 | #errors |
| 433 | |
| 434 | #data |
| 435 | <meta http-equiv="refresh" content="10; a.html" name="dns" |
| 436 | xmlns="http://www.w3.org/1999/xhtml"/> |
| 437 | #errors |
| 438 | /meta/@http-equiv;attribute not allowed |
| 439 | |
| 440 | #data |
| 441 | <meta http-equiv="refresh" content="10; a.html" charset="us-ascii" |
| 442 | xmlns="http://www.w3.org/1999/xhtml"/> |
| 443 | #errors |
| 444 | /meta/@charset;attribute not allowed |
| 445 | |
| 446 | #data |
| 447 | <meta http-equiv="" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/> |
| 448 | #errors |
| 449 | /meta/@http-equiv;invalid enumerated attribute value |
| 450 | |
| 451 | #data |
| 452 | <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/> |
| 453 | #errors |
| 454 | /meta/@content;attribute not allowed |
| 455 | /meta;attribute missing:name|http-equiv |
| 456 | |
| 457 | #data |
| 458 | <meta charset="us-ascii" content="example.net" |
| 459 | xmlns="http://www.w3.org/1999/xhtml"/> |
| 460 | #errors |
| 461 | /meta/@content;attribute not allowed |
| 462 | |
| 463 | #data |
| 464 | <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/> |
| 465 | #errors |
| 466 | /meta/@content;attribute not allowed |
| 467 | /meta;attribute missing:name|http-equiv |
| 468 | |
| 469 | #data |
| 470 | <body text="red" xmlns="http://www.w3.org/1999/xhtml"/> |
| 471 | #errors |
| 472 | /body/@text;attribute not supported |
| 473 | |
| 474 | #data |
| 475 | <blockquote cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 476 | #errors |
| 477 | |
| 478 | #data |
| 479 | <h1 align="left" xmlns="http://www.w3.org/1999/xhtml"/> |
| 480 | #errors |
| 481 | /h1/@align;attribute not supported |
| 482 | |
| 483 | #data |
| 484 | <address align="left" xmlns="http://www.w3.org/1999/xhtml"/> |
| 485 | #errors |
| 486 | /address/@align;attribute not supported |
| 487 | |
| 488 | #data |
| 489 | <p align="left" xmlns="http://www.w3.org/1999/xhtml"/> |
| 490 | #errors |
| 491 | /p/@align;attribute not supported |
| 492 | |
| 493 | #data |
| 494 | <hr align="left" xmlns="http://www.w3.org/1999/xhtml"/> |
| 495 | #errors |
| 496 | /hr/@align;attribute not supported |
| 497 | |
| 498 | #data |
| 499 | <br clear="left" xmlns="http://www.w3.org/1999/xhtml"/> |
| 500 | #errors |
| 501 | /br/@clear;attribute not supported |
| 502 | |
| 503 | #data |
| 504 | <dialog compact="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 505 | #errors |
| 506 | /dialog/@compact;attribute not supported |
| 507 | |
| 508 | #data |
| 509 | <pre width="4" xmlns="http://www.w3.org/1999/xhtml"/> |
| 510 | #errors |
| 511 | /pre/@width;attribute not supported |
| 512 | |
| 513 | #data |
| 514 | <pre xml:space="preserve" xmlns="http://www.w3.org/1999/xhtml"/> |
| 515 | #errors |
| 516 | |
| 517 | #data |
| 518 | <pre xml:space="default" xmlns="http://www.w3.org/1999/xhtml"/> |
| 519 | #errors |
| 520 | |
| 521 | #data |
| 522 | <ol start="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 523 | #errors |
| 524 | /ol/@start;syntax error |
| 525 | |
| 526 | #data |
| 527 | <ol start="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 528 | #errors |
| 529 | |
| 530 | #data |
| 531 | <ol start="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 532 | #errors |
| 533 | |
| 534 | #data |
| 535 | <ol start="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 536 | #errors |
| 537 | |
| 538 | #data |
| 539 | <ol start="10" xmlns="http://www.w3.org/1999/xhtml"/> |
| 540 | #errors |
| 541 | |
| 542 | #data |
| 543 | <ol start="-0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 544 | #errors |
| 545 | |
| 546 | #data |
| 547 | <ol start="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 548 | #errors |
| 549 | |
| 550 | #data |
| 551 | <ol start="-10" xmlns="http://www.w3.org/1999/xhtml"/> |
| 552 | #errors |
| 553 | |
| 554 | #data |
| 555 | <ol start="0000" xmlns="http://www.w3.org/1999/xhtml"/> |
| 556 | #errors |
| 557 | |
| 558 | #data |
| 559 | <ol start="0001" xmlns="http://www.w3.org/1999/xhtml"/> |
| 560 | #errors |
| 561 | |
| 562 | #data |
| 563 | <ol start="00001" xmlns="http://www.w3.org/1999/xhtml"/> |
| 564 | #errors |
| 565 | |
| 566 | #data |
| 567 | <ol start="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/> |
| 568 | #errors |
| 569 | |
| 570 | #data |
| 571 | <ol start="-100000000000000" xmlns="http://www.w3.org/1999/xhtml"/> |
| 572 | #errors |
| 573 | |
| 574 | #data |
| 575 | <ol start="1.0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 576 | #errors |
| 577 | /ol/@start;syntax error |
| 578 | |
| 579 | #data |
| 580 | <ol start="-1.0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 581 | #errors |
| 582 | /ol/@start;syntax error |
| 583 | |
| 584 | #data |
| 585 | <ol start="+0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 586 | #errors |
| 587 | /ol/@start;syntax error |
| 588 | |
| 589 | #data |
| 590 | <ol start="+1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 591 | #errors |
| 592 | /ol/@start;syntax error |
| 593 | |
| 594 | #data |
| 595 | <ol start="-+1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 596 | #errors |
| 597 | /ol/@start;syntax error |
| 598 | |
| 599 | #data |
| 600 | <ol start="1aaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 601 | #errors |
| 602 | /ol/@start;syntax error |
| 603 | |
| 604 | #data |
| 605 | <ol start="xxxxx" xmlns="http://www.w3.org/1999/xhtml"/> |
| 606 | #errors |
| 607 | /ol/@start;syntax error |
| 608 | |
| 609 | #data |
| 610 | <ol start=" 1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 611 | #errors |
| 612 | /ol/@start;syntax error |
| 613 | |
| 614 | #data |
| 615 | <ol start="1 " xmlns="http://www.w3.org/1999/xhtml"/> |
| 616 | #errors |
| 617 | /ol/@start;syntax error |
| 618 | |
| 619 | #data |
| 620 | <ol start=" 1 " xmlns="http://www.w3.org/1999/xhtml"/> |
| 621 | #errors |
| 622 | /ol/@start;syntax error |
| 623 | |
| 624 | #data |
| 625 | <ol start="_1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 626 | #errors |
| 627 | /ol/@start;syntax error |
| 628 | |
| 629 | #data |
| 630 | <ol start="一" xmlns="http://www.w3.org/1999/xhtml"/> |
| 631 | #errors |
| 632 | /ol/@start;syntax error |
| 633 | |
| 634 | #data |
| 635 | <ol start="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 636 | #errors |
| 637 | /ol/@start;syntax error |
| 638 | |
| 639 | #data |
| 640 | <ol start="−1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 641 | #errors |
| 642 | /ol/@start;syntax error |
| 643 | |
| 644 | #data |
| 645 | <ol xmlns="http://www.w3.org/1999/xhtml"> |
| 646 | <li value=""/> |
| 647 | </ol> |
| 648 | #error |
| 649 | /ol/li/@value;syntax error |
| 650 | |
| 651 | #data |
| 652 | <ol xmlns="http://www.w3.org/1999/xhtml"> |
| 653 | <li value="1"/> |
| 654 | </ol> |
| 655 | #error |
| 656 | |
| 657 | #data |
| 658 | <ol xmlns="http://www.w3.org/1999/xhtml"> |
| 659 | <li value="0"/> |
| 660 | </ol> |
| 661 | #error |
| 662 | |
| 663 | #data |
| 664 | <ol xmlns="http://www.w3.org/1999/xhtml"> |
| 665 | <li value="-1"/> |
| 666 | </ol> |
| 667 | #error |
| 668 | |
| 669 | #data |
| 670 | <ol xmlns="http://www.w3.org/1999/xhtml"> |
| 671 | <li value="+1"/> |
| 672 | </ol> |
| 673 | #error |
| 674 | |
| 675 | #data |
| 676 | <ol xmlns="http://www.w3.org/1999/xhtml"> |
| 677 | <li value="xxx"/> |
| 678 | </ol> |
| 679 | #error |
| 680 | /ol/li/@value;syntax error |
| 681 | |
| 682 | #data |
| 683 | <ul xmlns="http://www.w3.org/1999/xhtml"> |
| 684 | <li value=""/> |
| 685 | </ul> |
| 686 | #error |
| 687 | /ul/li/@value;attribute not supported |
| 688 | /ul/li/@value;syntax error |
| 689 | |
| 690 | #data |
| 691 | <ul xmlns="http://www.w3.org/1999/xhtml"> |
| 692 | <li value="1"/> |
| 693 | </ul> |
| 694 | #error |
| 695 | /ul/li/@value;attribute not supported |
| 696 | |
| 697 | #data |
| 698 | <ul xmlns="http://www.w3.org/1999/xhtml"> |
| 699 | <li value="0"/> |
| 700 | </ul> |
| 701 | #error |
| 702 | /ul/li/@value;attribute not supported |
| 703 | |
| 704 | #data |
| 705 | <ul xmlns="http://www.w3.org/1999/xhtml"> |
| 706 | <li value="-1"/> |
| 707 | </ul> |
| 708 | #error |
| 709 | /ul/li/@value;attribute not supported |
| 710 | |
| 711 | #data |
| 712 | <ul xmlns="http://www.w3.org/1999/xhtml"> |
| 713 | <li value="+1"/> |
| 714 | </ul> |
| 715 | #error |
| 716 | /ul/li/@value;attribute not supported |
| 717 | |
| 718 | #data |
| 719 | <ul xmlns="http://www.w3.org/1999/xhtml"> |
| 720 | <li value="xxx"/> |
| 721 | </ul> |
| 722 | #error |
| 723 | /ul/li/@value;attribute not supported |
| 724 | /ul/li/@value;syntax error |
| 725 | |
| 726 | #data |
| 727 | <li value="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 728 | #error |
| 729 | /li/@value;attribute not supported |
| 730 | /li/@value;syntax error |
| 731 | |
| 732 | #data |
| 733 | <li value="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 734 | #error |
| 735 | /li/@value;attribute not supported |
| 736 | |
| 737 | #data |
| 738 | <li value="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 739 | #error |
| 740 | /li/@value;attribute not supported |
| 741 | |
| 742 | #data |
| 743 | <li value="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 744 | #error |
| 745 | /li/@value;attribute not supported |
| 746 | |
| 747 | #data |
| 748 | <li value="+1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 749 | #error |
| 750 | /li/@value;attribute not supported |
| 751 | |
| 752 | #data |
| 753 | <li value="xxx" xmlns="http://www.w3.org/1999/xhtml"/> |
| 754 | #error |
| 755 | /li/@value;attribute not supported |
| 756 | /li/@value;syntax error |
| 757 | |
| 758 | #data |
| 759 | <dl compact="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 760 | #error |
| 761 | /dl/@compact;attribute not supported |
| 762 | |
| 763 | #data |
| 764 | <q cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 765 | #errors |
| 766 | |
| 767 | #data |
| 768 | <meter value="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 769 | #errors |
| 770 | /meter/@value;syntax error |
| 771 | |
| 772 | #data |
| 773 | <meter value="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 774 | #errors |
| 775 | |
| 776 | #data |
| 777 | <meter value="111" xmlns="http://www.w3.org/1999/xhtml"/> |
| 778 | #errors |
| 779 | |
| 780 | #data |
| 781 | <meter value="0001" xmlns="http://www.w3.org/1999/xhtml"/> |
| 782 | #errors |
| 783 | |
| 784 | #data |
| 785 | <meter value="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 786 | #errors |
| 787 | |
| 788 | #data |
| 789 | <meter value="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 790 | #errors |
| 791 | |
| 792 | #data |
| 793 | <meter value="-1000" xmlns="http://www.w3.org/1999/xhtml"/> |
| 794 | #errors |
| 795 | |
| 796 | #data |
| 797 | <meter value="-0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 798 | #errors |
| 799 | |
| 800 | #data |
| 801 | <meter value="0000" xmlns="http://www.w3.org/1999/xhtml"/> |
| 802 | #errors |
| 803 | |
| 804 | #data |
| 805 | <meter value="0.1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 806 | #errors |
| 807 | |
| 808 | #data |
| 809 | <meter value="1.1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 810 | #errors |
| 811 | |
| 812 | #data |
| 813 | <meter value=".1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 814 | #errors |
| 815 | |
| 816 | #data |
| 817 | <meter value=".0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 818 | #errors |
| 819 | |
| 820 | #data |
| 821 | <meter value="1." xmlns="http://www.w3.org/1999/xhtml"/> |
| 822 | #errors |
| 823 | |
| 824 | #data |
| 825 | <meter value="1.0000" xmlns="http://www.w3.org/1999/xhtml"/> |
| 826 | #errors |
| 827 | |
| 828 | #data |
| 829 | <meter value="123." xmlns="http://www.w3.org/1999/xhtml"/> |
| 830 | #errors |
| 831 | |
| 832 | #data |
| 833 | <meter value="-.1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 834 | #errors |
| 835 | |
| 836 | #data |
| 837 | <meter value="-1." xmlns="http://www.w3.org/1999/xhtml"/> |
| 838 | #errors |
| 839 | |
| 840 | #data |
| 841 | <meter value="1aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 842 | #errors |
| 843 | /meter/@value;syntax error |
| 844 | |
| 845 | #data |
| 846 | <meter value="1
" xmlns="http://www.w3.org/1999/xhtml"/> |
| 847 | #errors |
| 848 | /meter/@value;syntax error |
| 849 | |
| 850 | #data |
| 851 | <meter value="1
" xmlns="http://www.w3.org/1999/xhtml"/> |
| 852 | #errors |
| 853 | /meter/@value;syntax error |
| 854 | |
| 855 | #data |
| 856 | <meter value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 857 | #errors |
| 858 | /meter/@value;syntax error |
| 859 | |
| 860 | #data |
| 861 | <meter value="+1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 862 | #errors |
| 863 | /meter/@value;syntax error |
| 864 | |
| 865 | #data |
| 866 | <meter value="+1.2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 867 | #errors |
| 868 | /meter/@value;syntax error |
| 869 | |
| 870 | #data |
| 871 | <meter value=".-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 872 | #errors |
| 873 | /meter/@value;syntax error |
| 874 | |
| 875 | #data |
| 876 | <meter value="0.-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 877 | #errors |
| 878 | /meter/@value;syntax error |
| 879 | |
| 880 | #data |
| 881 | <meter value="." xmlns="http://www.w3.org/1999/xhtml"/> |
| 882 | #errors |
| 883 | /meter/@value;syntax error |
| 884 | |
| 885 | #data |
| 886 | <meter min="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 887 | #errors |
| 888 | |
| 889 | #data |
| 890 | <meter min="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 891 | #errors |
| 892 | /meter/@min;syntax error |
| 893 | |
| 894 | #data |
| 895 | <meter low="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 896 | #errors |
| 897 | |
| 898 | #data |
| 899 | <meter low="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 900 | #errors |
| 901 | /meter/@low;syntax error |
| 902 | |
| 903 | #data |
| 904 | <meter high="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 905 | #errors |
| 906 | |
| 907 | #data |
| 908 | <meter high="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 909 | #errors |
| 910 | /meter/@high;syntax error |
| 911 | |
| 912 | #data |
| 913 | <meter max="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 914 | #errors |
| 915 | |
| 916 | #data |
| 917 | <meter max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 918 | #errors |
| 919 | /meter/@max;syntax error |
| 920 | |
| 921 | #data |
| 922 | <meter optimum="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 923 | #errors |
| 924 | |
| 925 | #data |
| 926 | <meter optimum="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 927 | #errors |
| 928 | /meter/@optimum;syntax error |
| 929 | |
| 930 | #data |
| 931 | <meter min="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 932 | #errors |
| 933 | |
| 934 | #data |
| 935 | <meter value="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 936 | #errors |
| 937 | |
| 938 | #data |
| 939 | <progress max="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 940 | #errors |
| 941 | |
| 942 | #data |
| 943 | <progress max="0.0001" xmlns="http://www.w3.org/1999/xhtml"/> |
| 944 | #errors |
| 945 | |
| 946 | #data |
| 947 | <progress max="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 948 | #errors |
| 949 | /progress/@max;out of range |
| 950 | |
| 951 | #data |
| 952 | <progress max="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 953 | #errors |
| 954 | /progress/@max;out of range |
| 955 | |
| 956 | #data |
| 957 | <progress max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 958 | #errors |
| 959 | /progress/@max;syntax error |
| 960 | |
| 961 | #data |
| 962 | <progress value="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 963 | #errors |
| 964 | |
| 965 | #data |
| 966 | <progress value="0.0001" xmlns="http://www.w3.org/1999/xhtml"/> |
| 967 | #errors |
| 968 | |
| 969 | #data |
| 970 | <progress value="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 971 | #errors |
| 972 | |
| 973 | #data |
| 974 | <progress value="100" max="2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 975 | #errors |
| 976 | |
| 977 | #data |
| 978 | <progress value="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 979 | #errors |
| 980 | /progress/@value;out of range |
| 981 | |
| 982 | #data |
| 983 | <progress value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 984 | #errors |
| 985 | /progress/@value;syntax error |
| 986 | |
| 987 | #data |
| 988 | <bdo xmlns="http://www.w3.org/1999/xhtml"/> |
| 989 | #errors |
| 990 | /bdo;attribute missing:dir |
| 991 | |
| 992 | #data |
| 993 | <bdo dir="ltr" xmlns="http://www.w3.org/1999/xhtml"/> |
| 994 | #errors |
| 995 | |
| 996 | #data |
| 997 | <bdo dir="rtl" xmlns="http://www.w3.org/1999/xhtml"/> |
| 998 | #errors |
| 999 | |
| 1000 | #data |
| 1001 | <bdo dir="RTL" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1002 | #errors |
| 1003 | |
| 1004 | #data |
| 1005 | <bdo dir="xxx" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1006 | #errors |
| 1007 | /bdo/@dir;invalid enumerated attribute value |
| 1008 | |
| 1009 | #data |
| 1010 | <ins cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1011 | #errors |
| 1012 | |
| 1013 | #data |
| 1014 | <del cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1015 | #errors |
| 1016 | |
| 1017 | #data |
| 1018 | <iframe xmlns="http://www.w3.org/1999/xhtml"/> |
| 1019 | #errors |
| 1020 | |
| 1021 | #data |
| 1022 | <iframe src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1023 | #errors |
| 1024 | |
| 1025 | #data |
| 1026 | <param xmlns="http://www.w3.org/1999/xhtml"/> |
| 1027 | #errors |
| 1028 | /param;attribute missing:name |
| 1029 | /param;attribute missing:value |
| 1030 | |
| 1031 | #data |
| 1032 | <param name="a" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1033 | #errors |
| 1034 | /param;attribute missing:value |
| 1035 | |
| 1036 | #data |
| 1037 | <param value="a" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1038 | #errors |
| 1039 | /param;attribute missing:name |
| 1040 | |
| 1041 | #data |
| 1042 | <param name="a" value="b" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1043 | #errors |
| 1044 | |
| 1045 | #data |
| 1046 | <param name="" value="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1047 | #errors |
| 1048 | |
| 1049 | #data |
| 1050 | <param name="a" value="b" valuetype="text" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1051 | #errors |
| 1052 | /param/@valuetype;attribute not supported |
| 1053 | |
| 1054 | #data |
| 1055 | <video xmlns="http://www.w3.org/1999/xhtml"/> |
| 1056 | #errors |
| 1057 | |
| 1058 | #data |
| 1059 | <video src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1060 | #errors |
| 1061 | |
| 1062 | #data |
| 1063 | <video autoplay="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1064 | #errors |
| 1065 | |
| 1066 | #data |
| 1067 | <video autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1068 | #errors |
| 1069 | |
| 1070 | #data |
| 1071 | <video autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1072 | #errors |
| 1073 | /video/@autoplay;invalid boolean attribute value |
| 1074 | |
| 1075 | #data |
| 1076 | <video controls="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1077 | #errors |
| 1078 | |
| 1079 | #data |
| 1080 | <video controls="controls" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1081 | #errors |
| 1082 | |
| 1083 | #data |
| 1084 | <video controls="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1085 | #errors |
| 1086 | /video/@controls;invalid boolean attribute value |
| 1087 | |
| 1088 | #data |
| 1089 | <audio xmlns="http://www.w3.org/1999/xhtml"/> |
| 1090 | #errors |
| 1091 | |
| 1092 | #data |
| 1093 | <audio src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1094 | #errors |
| 1095 | |
| 1096 | #data |
| 1097 | <audio autoplay="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1098 | #errors |
| 1099 | |
| 1100 | #data |
| 1101 | <audio autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1102 | #errors |
| 1103 | |
| 1104 | #data |
| 1105 | <audio autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1106 | #errors |
| 1107 | /audio/@autoplay;invalid boolean attribute value |
| 1108 | |
| 1109 | #data |
| 1110 | <audio controls="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1111 | #errors |
| 1112 | |
| 1113 | #data |
| 1114 | <audio controls="controls" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1115 | #errors |
| 1116 | |
| 1117 | #data |
| 1118 | <audio controls="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1119 | #errors |
| 1120 | /audio/@controls;invalid boolean attribute value |
| 1121 | |
| 1122 | #data |
| 1123 | <canvas xmlns="http://www.w3.org/1999/xhtml"/> |
| 1124 | #errors |
| 1125 | |
| 1126 | #data |
| 1127 | <canvas width="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1128 | #errors |
| 1129 | /canvas/@width;syntax error |
| 1130 | |
| 1131 | #data |
| 1132 | <canvas width="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1133 | #errors |
| 1134 | |
| 1135 | #data |
| 1136 | <canvas width="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1137 | #errors |
| 1138 | |
| 1139 | #data |
| 1140 | <canvas width="100" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1141 | #errors |
| 1142 | |
| 1143 | #data |
| 1144 | <canvas width="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1145 | #errors |
| 1146 | /canvas/@width;syntax error |
| 1147 | |
| 1148 | #data |
| 1149 | <canvas width="saaa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1150 | #errors |
| 1151 | /canvas/@width;syntax error |
| 1152 | |
| 1153 | #data |
| 1154 | <canvas width="1
" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1155 | #errors |
| 1156 | /canvas/@width;syntax error |
| 1157 | |
| 1158 | #data |
| 1159 | <canvas width="13344aa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1160 | #errors |
| 1161 | /canvas/@width;syntax error |
| 1162 | |
| 1163 | #data |
| 1164 | <canvas height="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1165 | #errors |
| 1166 | /canvas/@height;syntax error |
| 1167 | |
| 1168 | #data |
| 1169 | <canvas height="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1170 | #errors |
| 1171 | |
| 1172 | #data |
| 1173 | <canvas height="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1174 | #errors |
| 1175 | |
| 1176 | #data |
| 1177 | <canvas height="-2" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1178 | #errors |
| 1179 | /canvas/@height;syntax error |
| 1180 | |
| 1181 | #data |
| 1182 | <canvas height="1
" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1183 | #errors |
| 1184 | /canvas/@height;syntax error |
| 1185 | |
| 1186 | #data |
| 1187 | <canvas height="xxx" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1188 | #errors |
| 1189 | /canvas/@height;syntax error |
| 1190 | |
| 1191 | #data |
| 1192 | <canvas width="44" height="14" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1193 | #errors |
| 1194 | |
| 1195 | #data |
| 1196 | <map xmlns="http://www.w3.org/1999/xhtml"/> |
| 1197 | #errors |
| 1198 | |
| 1199 | #data |
| 1200 | <map name="aa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1201 | #errors |
| 1202 | /map/@name;attribute not supported |
| 1203 | |
| 1204 | #data |
| 1205 | <map id="aa" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1206 | #errors |
| 1207 | |
| 1208 | #data |
| 1209 | <table xmlns="http://www.w3.org/1999/xhtml"/> |
| 1210 | #errors |
| 1211 | |
| 1212 | #data |
| 1213 | <table border="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1214 | #errors |
| 1215 | /table/@border;attribute not supported |
| 1216 | |
| 1217 | #data |
| 1218 | <table frame="border" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1219 | #errors |
| 1220 | /table/@frame;attribute not supported |
| 1221 | |
| 1222 | #data |
| 1223 | <table border="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1224 | #errors |
| 1225 | /table/@border;attribute not supported |
| 1226 | |
| 1227 | #data |
| 1228 | <caption align="top" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1229 | #errors |
| 1230 | /caption/@align;attribute not supported |
| 1231 | |
| 1232 | #data |
| 1233 | <col xmlns="http://www.w3.org/1999/xhtml"/> |
| 1234 | #errors |
| 1235 | |
| 1236 | #data |
| 1237 | <col span="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1238 | #errors |
| 1239 | /col/@span;syntax error |
| 1240 | |
| 1241 | #data |
| 1242 | <col span="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1243 | #errors |
| 1244 | /col/@span;out of range |
| 1245 | |
| 1246 | #data |
| 1247 | <col span="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1248 | #errors |
| 1249 | |
| 1250 | #data |
| 1251 | <col span="10" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1252 | #errors |
| 1253 | |
| 1254 | #data |
| 1255 | <col span="-1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1256 | #errors |
| 1257 | /col/@span;syntax error |
| 1258 | |
| 1259 | #data |
| 1260 | <td colspan="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1261 | #errors |
| 1262 | |
| 1263 | #data |
| 1264 | <td colspan="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1265 | #errors |
| 1266 | /td/@colspan;out of range |
| 1267 | |
| 1268 | #data |
| 1269 | <td rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1270 | #errors |
| 1271 | |
| 1272 | #data |
| 1273 | <td rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1274 | #errors |
| 1275 | /td/@rowspan;out of range |
| 1276 | |
| 1277 | #data |
| 1278 | <th colspan="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1279 | #errors |
| 1280 | |
| 1281 | #data |
| 1282 | <th colspan="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1283 | #errors |
| 1284 | /th/@colspan;out of range |
| 1285 | |
| 1286 | #data |
| 1287 | <th rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1288 | #errors |
| 1289 | |
| 1290 | #data |
| 1291 | <th rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1292 | #errors |
| 1293 | /th/@rowspan;out of range |
| 1294 | |
| 1295 | #data |
| 1296 | <th scope="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1297 | #errors |
| 1298 | /th/@scope;invalid enumerated attribute value |
| 1299 | |
| 1300 | #data |
| 1301 | <th scope="row" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1302 | #errors |
| 1303 | |
| 1304 | #data |
| 1305 | <th scope="col" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1306 | #errors |
| 1307 | |
| 1308 | #data |
| 1309 | <th scope="Col" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1310 | #errors |
| 1311 | |
| 1312 | #data |
| 1313 | <th scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1314 | #errors |
| 1315 | |
| 1316 | #data |
| 1317 | <th scope="colgroup" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1318 | #errors |
| 1319 | |
| 1320 | #data |
| 1321 | <td scope="row" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1322 | #errors |
| 1323 | /td/@scope;attribute not supported |
| 1324 | |
| 1325 | #data |
| 1326 | <event-source xmlns="http://www.w3.org/1999/xhtml"/> |
| 1327 | #errors |
| 1328 | |
| 1329 | #data |
| 1330 | <event-source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1331 | #errors |
| 1332 | |
| 1333 | #data |
| 1334 | <details xmlns="http://www.w3.org/1999/xhtml"/> |
| 1335 | #errors |
| 1336 | |
| 1337 | #data |
| 1338 | <details open="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1339 | #errors |
| 1340 | |
| 1341 | #data |
| 1342 | <details open="open" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1343 | #errors |
| 1344 | |
| 1345 | #data |
| 1346 | <details open="OPEN" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1347 | #errors |
| 1348 | /details/@open;invalid boolean attribute value |
| 1349 | |
| 1350 | #data |
| 1351 | <details open="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1352 | #errors |
| 1353 | /details/@open;invalid boolean attribute value |
| 1354 | |
| 1355 | #data |
| 1356 | <datagrid xmlns="http://www.w3.org/1999/xhtml"/> |
| 1357 | #errors |
| 1358 | |
| 1359 | #data |
| 1360 | <datagrid disabled="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1361 | #errors |
| 1362 | |
| 1363 | #data |
| 1364 | <datagrid disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1365 | #errors |
| 1366 | |
| 1367 | #data |
| 1368 | <datagrid disabled="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1369 | #errors |
| 1370 | /datagrid/@disabled;invalid boolean attribute value |
| 1371 | |
| 1372 | #data |
| 1373 | <datagrid multiple="" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1374 | #errors |
| 1375 | |
| 1376 | #data |
| 1377 | <datagrid multiple="multiple" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1378 | #errors |
| 1379 | |
| 1380 | #data |
| 1381 | <datagrid multiple="true" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1382 | #errors |
| 1383 | /datagrid/@multiple;invalid boolean attribute value |
| 1384 | |
| 1385 | #data |
| 1386 | <div align="center" xmlns="http://www.w3.org/1999/xhtml"/> |
| 1387 | #errors |
| 1388 | /div/@align;attribute not supported |
| 1389 |
| [email protected] | ViewVC Help |
| Powered by ViewVC 1.1.24 |