1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
|
<?xml version="1.0" encoding="UTF-8"?>
<testsuite
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:html="http://www.w3.org/1999/xhtml"
xml:lang="en"
>
<collection id="valid">
<dc:title>Valid Documents</dc:title>
<collection id="doctypes">
<dc:title>Document types support</dc:title>
<html:p>
Below is a list of sample documents for a number of document types the validator is supposed to be supporting.
The first validate link will attempt validation with the current instance, for test purposes. The v.w.o instance
can be taken as reference/comparison.
</html:p>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html20.html</uri>
<dc:title>HTML 2.0 Document Type support test</dc:title>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 2.0 sample document.</html:p>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html20-strict.html</uri>
<dc:title>HTML 2.0 Document Type support test</dc:title>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 2.0 Strict sample document.</html:p>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html40-strict.html</uri>
<dc:title>HTML 4.0 Document Type support test</dc:title>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 4.0 Strict sample document.</html:p>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html40-transitional.html</uri>
<dc:title>HTML 4.0 Transitional Document Type support test</dc:title>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 4.0 Transitional sample document.</html:p>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html40-frameset.html</uri>
<dc:title>HTML 4.0 Frameset Document Type support test</dc:title>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 4.0 Frameset sample document.</html:p>
</test>
<test>
<dc:title>HTML 4.01 Strict Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html401-strict.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 4.01 Strict sample document.</html:p>
</test>
<test>
<uri>http://www.w3.org/TR/1999/PR-html40-19990824/</uri>
<dc:title>HTML 4.01 Transitional Document Type support test</dc:title>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 4.01 Transitional sample document - (from the HTML 4.01 PR)</html:p>
</test>
<test>
<dc:title>HTML 4.01 Transitional (w/ iframe) Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/2329-html401-transitional_iframe.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid HTML 4.01 Transitional sample document. - with iframe element
(test for <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=2329">Bug 2329</a>)</html:p>
</test>
<test>
<dc:title>HTML5 support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html5-ok.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>HTML5 sample document.</html:p>
</test>
<test>
<dc:title>ISO-HTML Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/iso-html.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid ISO-HTML (aka ISO/IEC 15445:2000) sample document.</html:p>
</test>
<test>
<dc:title>XHTML 1.0 Strict Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-strict.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML 1.0 Strict sample document</html:p>
</test>
<test>
<dc:title>XHTML 1.0 Strict Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-strict-minimal.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML 1.0 Strict (from XHTML Spec) sample document.</html:p>
</test>
<test>
<dc:title>XHTML Basic 1.0 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-basic10.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML Basic 1.0 sample document.</html:p>
</test>
<test>
<dc:title>XHTML Basic 1.1 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-basic11.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML Basic 1.1 sample document.</html:p>
</test>
<test>
<dc:title>XHTML Basic 1.1 (revised) Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml11-basic-w3c.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>W3C home page as XHTML 1.1 Basic. Should be valid but may not validate with the old REC versions of the DTD (would not like the class and style attributes)</html:p>
</test>
<test>
<dc:title>XHTML MP 1.2 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-mp-1_2.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>XHTML MP 1.2</html:p>
</test>
<test>
<dc:title>XHTML 1.1 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml11-minimal.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>XHTML 1.1</html:p>
</test>
<test>
<dc:title>XHTML+MathML2 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-mathml2-fpi.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML/MathML2 sample document (with FPI)</html:p>
</test>
<test>
<dc:title>MathML 2.0 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/mathml2.mml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid MathML 2.0 minimal test document</html:p>
</test>
<test>
<dc:title>XHTML 1.1 (as application/xhtml+xml) Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/application-xhtml_xml.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML 1.1 sample document, served as application/xhtml+xml</html:p>
</test>
<test>
<dc:title>SMIL 1.0 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/smil10-minimal.smi</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SMIL 1.0 minimal document</html:p>
</test>
<test>
<dc:title>SMIL 2.0 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/smil20.smi</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SMIL 2.0 sample document.</html:p>
</test>
<test>
<dc:title>SMIL 2.1 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/SMIL21.smil</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SMIL 2.1 sample document.</html:p>
</test>
<test>
<dc:title>SMIL 2.1 Mobile Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/SMIL21_Mobile.smil</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SMIL 2.1 Mobile sample document.</html:p>
</test>
<test>
<dc:title>XHTML + MathML + SVG Document Type support test</dc:title>
<uri>http://www.w3.org/TR/XHTMLplusMathMLplusSVG/sample.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML + MathML + SVG sample document (from the 9 August 2002 WD)</html:p>
</test>
<test>
<dc:title>XHTML Print 1.0 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-print_1_0.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML-Print sample document.</html:p>
</test>
<test>
<dc:title>SVG 1.0 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/REC-SVG-1_0-minimal.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.0 Rec. minimal document</html:p>
</test>
<test>
<dc:title>SVG 1.1 Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/svg11.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.1 Rec. minimal document</html:p>
</test>
<test>
<dc:title>SVG 1.1 Tiny Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/svg_tiny_1_1.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG Tiny 1.1 sample document.</html:p>
</test>
<test>
<dc:title>XHTML + RDFa Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml_rdfa.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid XHTML + RDFa sample document.</html:p>
</test>
</collection>
<collection id="valid_notcat">
<dc:title>Document types outside the main catalogue</dc:title>
<html:p>
Below is a number of other types of documents that the validator
does not have in its "hardcoded" catalogue,
but should support anyway. All these documents should validate,
without "pretty print" for the document type.
</html:p>
<test>
<dc:title>HTML4.0 plus blink (Custom DTD) Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/sgml_customdtd.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>HTML4.0 plus blink ("Custom" SGML DTD)</html:p>
</test>
<test>
<dc:title>RDDL (with FPI) Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/rddl_fpi.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>RDDL (with FPI)</html:p>
</test>
<test>
<dc:title>RDDL (SI only) Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/rddl_si.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>RDDL (no FPI)</html:p>
</test>
<test>
<dc:title>MusicXML Document Type support test</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/5031-root_dash.xml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>sample MusicXML, a non-catalogued XML based document type. (also test for <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=5031" title="Bug 5031 - Doctype detection fails if root element includes non "word" character">Bug 5031</a>)</html:p>
</test>
</collection>
<collection id="valid_doctypeless">
<dc:title>Valid Doctypeless Documents</dc:title>
<html:p>Some document types (SVG) do not require the presence of the DOCTYPE declaration, although a DTD can be used to validate. The validator can however determine the version to validate against by preparsing the root element and the presence of version, baseProfile attributes.</html:p>
<test>
<dc:title>(control) test for validation of SVG 1.0 with Doctype</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-10-doctype.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.0, using a DOCTYPE</html:p>
</test>
<test>
<dc:title>Test for validation of Doctype-less SVG 1.0</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-10-doctypeless.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.0, but no declared DOCTYPE. Version attribute present for auto-detection</html:p>
</test>
<test>
<dc:title>(control) test for validation of SVG 1.1 with Doctype</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-11-doctype.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.1, using a DOCTYPE</html:p>
</test>
<test>
<dc:title>Test for validation of Doctype-less SVG 1.1</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-11-doctypeless.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.1, no declared DOCTYPE. Version attribute present for auto-detection.</html:p>
</test>
<test>
<dc:title>(control) test for validation of SVG 1.1 Basic with Doctype</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-basic-11-doctype.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG Basic 1.1, using a DOCTYPE (test currently fails because of issues in the DTD)</html:p>
</test>
<test>
<dc:title>Test for validation of Doctype-less SVG 1.1 Basic</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-basic-11-doctypeless.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG Basic 1.1, no declared DOCTYPE. Version and baseProfile attributes present for auto-detection. (test currently fails because of issues in the DTD)</html:p>
</test>
<test>
<dc:title>(control) test for validation of SVG 1.1 Tiny with Doctype</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-tiny-11-doctype.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG Tiny 1.1, using a DOCTYPE</html:p>
</test>
<test>
<dc:title>Test for validation of Doctype-less SVG 1.1 Tiny</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-tiny-11-doctypeless.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG Tiny 1.1, no declared DOCTYPE. Version and baseProfile attributes present for auto-detection.</html:p>
</test>
<test>
<dc:title>Test for validation of SVG 1.1 without a version attribute, but with a DOCTYPE</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-noversion-doctype.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.1, using a DOCTYPE. No version attribute (optional). Should use info given by doctype.</html:p>
</test>
<test>
<dc:title>Test for validation of SVG 1.0 without a version attribute, but with a DOCTYPE</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-noversion-doctype2.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Valid SVG 1.0, using a DOCTYPE. No version attribute (optional). Should use info given by doctype.</html:p>
</test>
<test>
<dc:title>Test for validation of SVG with neither a version attribute nor DOCTYPE</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-noversion-doctypeless.svg</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>SVG with neither DOCTYPE nor version attribute. The validator may use a default.</html:p>
</test>
</collection>
<collection id="valid_warn">
<dc:title>Valid Documents, with Warnings</dc:title>
<test>
<dc:title>Test document with reference to a non-existing ID</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/2342-opensp_type_X.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>Reference to a non-existing ID
(opensp message type X, See <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=2342">bug 2342</a>).</html:p>
</test>
<test>
<dc:title>Test for warnings about non-SGML character(s)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/nonSGML-chars.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>Non-SGML Chars</html:p>
</test>
<test>
<dc:title>Test for warning about ampersand as data (in SGML)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/ampersand-as-data_html401.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>HTML 4.01 Document with Ampersand as data <br />
(OK in SGML, not XML :see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=798">Bug798: Ampersand as data in XHTML</a>)</html:p>
</test>
<test>
<dc:title>Test for warning in case of ambiguous parse mode</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/texthtml_unknownparsemode.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>document served as <code>text/html</code>, using a custom DTD and for which parse mode is impossible to determine via generic heuristics (triggers warning W06)</html:p>
</test>
<test>
<dc:title>Test of warning in case of FPI/SI doctype mismatch (XHTML1)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4848-xhtml1-strict_FPI-SI-mismatch.xhtml</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>FPI/SI doctype declaration mismatch (system Id refers to a 404)</html:p>
</test>
<test>
<dc:title>Test of warning in case of FPI/SI doctype mismatch (HTML4)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4848-html40-transitional_FPI-SI-mismatch.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>FPI/SI doctype declaration mismatch (html 4 doc with system Id refers to xhtml)</html:p>
</test>
<test>
<dc:title>Test of warning in case of FPI case mismatch in doctype</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html401_doctypecase.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>FPI/SI doctype declaration mismatch (system Id is OK but FPI has wrong case)</html:p>
</test>
<test>
<dc:title>Test of warning for the usage of shorttag constructs</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/shorttags.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>sample HTML 4 document using the (valid, but problematic) shorttags features</html:p>
</test>
<test>
<dc:title>Test for warning output from HTML5 parser</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html5-warning.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>sample HTML5 document using a construct that should pass checking, with a warning output.</html:p>
</test>
</collection>
<collection id="appc">
<dc:title>Valid XHTML 1.0 documents not conforming to HTML compatibility Guidelines</dc:title>
<html:p>The XHTML 1.0 spec states: <q cite="http://www.w3.org/TR/xhtml1/#media">XHTML Documents which follow the guidelines set forth in Appendix C, "HTML Compatibility Guidelines" may be labeled with the Internet Media Type "text/html" [RFC2854], as they are compatible with most HTML browsers. </q>. It's really unclear as to whether this is a real conformance issue, but regardless there is demand for sending at least warnings when a text/html XHTML 1.0 document does not follow these guidelines.</html:p>
<test>
<dc:title>Test of warning for non-HTML compatible XHTML document (C1)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-appc-xmldecl.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>C1: XML Declaration</html:p>
</test>
<test>
<dc:title>Test of warning for non-HTML compatible XHTML document (C2)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-appc-empty.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>C2: empty elements and minimized form</html:p>
</test>
<test>
<dc:title>Test of warning for non-HTML compatible XHTML document (C3)</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-appc-emptycontent.html</uri>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>C3: Element Minimization and Empty Element Content</html:p>
</test>
</collection>
<collection id="wrong_mime">
<dc:title>Valid Documents served with a wrong media type</dc:title>
<test>
<dc:title>Test of warning for HTML 4.01 served with wrong media type</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html401-strict.xhtml</uri>
<expect>
<Validity>Fail</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>HTML 4.01 Strict served with an XHTML mime type. This should fail validation
since the media type forces the XML parsing mode</html:p>
</test>
<test>
<dc:title>Test of warning for SVG served with wrong media type</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/REC-SVG-1_0-minimal.html</uri>
<expect>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>SVG 1.0 Rec. minimal document served as text/html. This may pass validation with a warning
as text/html will not trigger an unambiguous parsing mode, and doctype will prevail.
(is that wrong?)</html:p>
</test>
<test>
<dc:title>Test of warning for MathML served with wrong media type</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/mathml2.html</uri>
<expect>
<NumWarnings>yes</NumWarnings>
</expect>
<html:p>MathML 2.0 as text/html This may pass validation with a warning
as text/html will not trigger an unambiguous parsing mode, and doctype will prevail.
(is that wrong?)</html:p>
</test>
</collection>
<collection id="valid_bugfix">
<dc:title>Bug Regression Tests: Valid documents</dc:title>
<test>
<dc:title>Regression test: non-unix newlines</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml_mathml_svg_newlines.xhtml</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>XHTML+Math+SVG document with non-unix newlines,
(See <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=3992">Bug 3992: non-unix newlines confuse the parser</a>)</html:p>
</test>
<test>
<dc:title>Regression test: named entitles on a line with colons and numbers</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4892-entity.html</uri>
<expect>
<Validity>Pass</Validity>
</expect>
<html:p>XHTML with named entities on a line with colons and numbers, caused bogus error report in validator 0.8.0
(See <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=4892" title="Bug 4892 - parsing of XML WF-errors too loose, confuses content with error data">Bug 4892</a>)</html:p>
</test>
</collection>
</collection>
<collection id="invalid">
<dc:title>Invalid Documents</dc:title>
<collection id="invalid_misc">
<dc:title>Miscellaneous invalid docs</dc:title>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-bogus-element.html</uri>
<html:p>XHTML1, bogus element (foo element not in DTD)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-bogus-attribute.html</uri>
<html:p>XHTML1, bogus attribute</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4412-fuzzymatch.xhtml</uri>
<html:p>Testing fuzzy matching: typos in attribute and element, and wrong-cased attribute and element. </html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html5-precise-error.html</uri>
<html:p>HTML5 document with tokenizer error (precise locator)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html5-range-error.html</uri>
<html:p>HTML5 document with Tree builder (range locator)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html5-error-explanation.html</uri>
<html:p>HTML5 document with bogus attribute (should have an error explanation)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/uppercase_element.xhtml</uri>
<html:p>XHTML1, bogus element (uppercase A element not in DTD), tends to cascade errors about each attribute</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://www.w3.org/2001/01/xml-latin1.html</uri>
<html:p>us-ascii xhtml document with a latin1 character</html:p>
<expect>
<Validity>Abort</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/error_pls_warning.html</uri>
<html:p>Invalid document (img without alt, invalid <a href="http://www.w3.org/TR/html401/struct/objects.html#adef-alt">per</a>).
<br />
Also has non-sgml character (testing for warning output)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/no-newlines.html</uri>
<html:p>invalid frames document (noframes in forbidden location). Also test for absence of newlines</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/2329-html401-strict_iframe.html</uri>
<html:p>HTML 4.01 Strict - with iframe element (test for <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=2329">Bug 2329</a>)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-blank-1st-line.html</uri>
<html:p>XHTML1, blank first line (<a href="http://lists.w3.org/Archives/Public/www-validator/2000JanMar/0144.html">should be marked as invalid</a>)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/ampersand-as-data.html</uri>
<html:p>Bug <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=798">798: Ampersand as data in XHTML</a> (OK in SGML, not XML)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/bogus-xmlpi.xhtml</uri>
<html:p>XHTML with bogus XML Decl, served as application/xhtml+xml (missing final "?")</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/bogus-xmlpi.html</uri>
<html:p>XHTML with bogus XML Decl, served as text/html (missing final "?")</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/bogus-fpi.html</uri>
<html:p>bogus FPI #1: lowercase "doctype".</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/smil20-profile-doctype.smi</uri>
<html:p>SMIL 2.0 with bogus xmlns and missing space between attributes</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/errors_sorting.smi</uri>
<html:p>SMIL 2.0 with bogus xmlns, xml ill-formedness and bogus elements (used to test sorting of errors)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/2689-attribute-no-space.xhtml</uri>
<html:p>XHTML 1.0 missing space between attributes (<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=2689" title="Bug 2689 - documents with no whitespace between attributes validate">Bug 2689</a>)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
</collection>
<collection id="invalid_nodoctype">
<dc:title>Missing Doctype</dc:title>
<html:p>See also <a href="well-formed">Docs that should be Well Formed</a> for examples of doctype-less but well-formed XML documents.</html:p>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-missing-doctype-and-xmlns.html</uri>
<html:p>XHTML, no DOCTYPE, no xmlns (thus invalid)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-missing-doctype-has-xmlns.html</uri>
<html:p>XHTML, no DOCTYPE, has xmlns (served as application/xhtml+xml)</html:p>
<expect>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-missing-doctype-has-xmlns.xhtml</uri>
<html:p>XHTML, no DOCTYPE, has xmlns (served as application/xhtml+xml)</html:p>
<expect>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xml-nodoctype-notwf.xml</uri>
<html:p>XML, no DOCTYPE, not well-formed (marked as "invalid XML" - FIXME should be reworded)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/sgml-nodoctype-syntaxok.html</uri>
<html:p>SGML-ish document without html root. Served as text/html. No DOCTYPE. Correct SGML syntax. Would pass as well-formed XML if it were XML...</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/sgml-nodoctype-syntaxnotok.html</uri>
<html:p>SGML-ish document without html root. Served as text/html. No DOCTYPE. Bogus SGML syntax.</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
</collection>
<collection id="nonconform">
<dc:title>DTD-Valid but not conformant</dc:title>
<html:p>For those, we will need to change the message, or hordes of SGML zombies will come down upon us ;)...</html:p>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-strict-missing-xmlns.html</uri>
<html:p>XHTML 1.0 Strict missing xmlns attribute (valid)</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
</collection>
<collection id="invalid_bug">
<dc:title>Documents that have an invalid/unknown FPI, which should get public/system identifier mismatch warnings (W26)</dc:title>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/bogus-fpi2.html</uri>
<html:p>bogus FPI #2: HTML 4.01 "Strict"</html:p>
<expect>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/bogus-fpi3.html</uri>
<html:p>bogus FPI #3: XHTML 1.1 "Strict"</html:p>
<expect>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
</collection>
</collection>
<collection id="well-formed">
<dc:title>Docs that should be Well Formed</dc:title>
<html:p>well formed but no doctype. The validator could mark them as well formed, but not mention validity?</html:p>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xml-nodoctype-wf.xml</uri>
<html:p>Basic XML document, well formed. No doctype. Currently checked only for xmlwf. Passes.</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://impressive.net/people/gerald/2000/10/18/test-staroffice-doc.xml</uri>
<html:p>XML output from OpenOffice 5.2
("Build/Tag number OpenOffice605"), many namespaces. Currently checked only for xmlwf. Passes.</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4476-svg_nodoctype.svg</uri>
<html:p>Very minimal SVG document, no document type. Currently checked only for xmlwf. Passes.</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-missing-doctype-and-xmlns.xhtml</uri>
<html:p>XHTML document without doctype, served as XML. Fallback to XHTML 1.0, and invalid.</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
</collection>
<collection id="encoding">
<dc:title>Document Encoding Tests</dc:title>
<collection id="encodings">
<dc:title>Various Encodings</dc:title>
<test>
<uri>http://www.w3.org/Press/1998/XSL-WD.html.ja</uri>
<html:p>iso-2022-jp encoded document</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://www.vir.si/</uri>
<html:p>windows-1250 encoded document (Slovenian)</html:p>
<expect>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-windows-1250.xhtml</uri>
<html:p>Another windows-1250 encoded document (Valid XHTML)</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://www.w3.org/TR/ruby</uri>
<html:p>utf-8 encoded document</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/plane20-char.xml</uri>
<html:p>XML file with a "Plane 20" character (bogus).</html:p>
<expect>
<Validity>Fail</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/charset_mismatch-http_xmldec.xhtml.utf8</uri>
<html:p>Charset mismatch: HTTP Content-Type and XML Declaration (sends warning, proceed with HTTP and pass)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/charset_mismatch-http_meta.html.utf8</uri>
<html:p>Charset mismatch: HTTP Content-Type and meta http-equiv (sends warning, proceed with HTTP and pass)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4520-iso88591-meta.html</uri>
<html:p>iso-8859-1 HTML document with charset declared in meta,
(test for <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=4520">Bug 4520</a> - charset override)</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4520-iso88591-no_meta.html</uri>
<html:p>iso-8859-1 HTML document with charset not declared in meta (nor in HTTP),
(test for <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=4520">Bug 4520</a> - charset override). This test should PASS when running with charset override set to latin-1 but ABORT if no override/fallback given</html:p>
<expect>
<Validity>Abort</Validity>
</expect>
</test>
<test>
<dc:title>case-sensitivity of charset parameter in meta</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/4917-meta_charset_case.html</uri>
<html:p>This is a test for
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=4917">Bug 4917</a>. If HTML::Encoding is a sufficiently recent version, the test should PASS validation. Otherwise, it would FAIL with an encoding detection error.</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
</collection>
</collection>
<collection id="errors">
<dc:title>Error conditions & strange cases</dc:title>
<test>
<uri>http://www.oasis-open.org/committees/xmltest/xmlconf-19990712.xml</uri>
<html:p>DOCTYPE with a relative URI for the system identifier. Should probably pass if the sgml parser was given the base URI(?)</html:p>
<expect>
<Validity>Pass</Validity>
</expect>
</test>
</collection>
<collection id="output_test">
<dc:title>Test for specific output</dc:title>
<collection id="output_preparse">
<dc:title>Output of preparse warnings</dc:title>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/textxml_nocharset.xml</uri>
<html:p>text/xml, no charset (W01)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/texthtml_nocharset.html</uri>
<html:p>text/html, no charset, fbc set (W02)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html401-strict.html</uri>
<html:p>charset override (W03)</html:p>
<expect>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/texthtml_nocharset.html</uri>
<html:p>text/html, no charset, override set (W04)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/texthtml_nocharset.html</uri>
<html:p>text/html, no charset (W04)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-missing-doctype-and-xmlns.html</uri>
<html:p>XHTML, no DOCTYPE, if overriden, should output W05.</html:p>
<expect>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/sgml_customdtd.html</uri>
<html:p>HTML4.0 plus blink ("Custom" SGML DTD), parse mode fallback to SGML (W06)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html401-strict.xhtml</uri>
<html:p>HTML 4.01 Strict served with an XHTML mime type. Parse mode conflict (W07) </html:p>
<expect>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-missing-doctype-and-xmlns.html</uri>
<html:p>XHTML, no DOCTYPE, no xmlns (thus invalid). (W09).</html:p>
<expect>
<Validity>Fail</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/sgml-nodoctype-syntaxnotok.html</uri>
SGML-ish document with root element != html. Served as text/html. No DOCTYPE. (W09nohtml)
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xml-nodoctype-notwf.xml</uri>
<html:p>XML, no DOCTYPE, not well-formed (W09xml)</html:p>
<expect>
<Validity>Fail</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test><html:p>W10 needs test case</html:p></test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-strict.html</uri>
<html:p>XHTML. If using doctype override to HTML401, namespace will trigger (W11) </html:p>
<expect>
</expect>
</test>
<test>
<dc:title>Test for xmlns in HTML content</dc:title>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/W11-ht401-namespace.html</uri>
<html:p>HTML 4.01 with xmlns attribute on root element.
Should trigger a validation error (it does)
and preparse warning W11 (it doesn't!)</html:p>
<expect>
<Validity>Fail</Validity>
<NumErrors>yes</NumErrors>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/html401-strict.html</uri>
<html:p>HTML 4.01 Strict, validated with HTML 4.01 Transitional override (W13)</html:p>
<expect>
</expect>
</test>
<test><html:p>w14 needs a test case</html:p></test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/texthtml_nodoctype.html.utf8</uri>
<html:p>No doctype, override given, fallback fbd is off (W15)</html:p>
<expect>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/texthtml_nodoctype.html.utf8</uri>
<html:p>No doctype, fallback given (W16)</html:p>
<expect>
</expect>
</test>
<test>W17 needs a test case. is it a DUP of W04 now?</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/charset_mismatch-http_xmldec.xhtml.utf8</uri>
<html:p>charset mismatch HTTP / XML decl (W18)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>1</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/charset_mismatch-http_meta.html.utf8</uri>
<html:p>charset mismatch HTTP / Meta (W19)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>1</NumWarnings>
</expect>
</test>
<test>W20 needs a test case. probably rare.</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml-utf8-bom.xhtml</uri>
<html:p>UTF-8 document, with BOM (W21)</html:p>
</test>
<test>W22 (bad encoding alias) needs test case</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/mathml2.html</uri>
<html:p>MathML 2.0 as text/html (W23)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>yes</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/197-iso88591_alias.html</uri>
<html:p>supported, but rare, charset (W24)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>1</NumWarnings>
</expect>
</test>
<test>
<uri>http://qa-dev.w3.org/wmvs/HEAD/dev/tests/3663-svg-noversion-doctypeless.svg</uri>
<html:p>SVG with neither DOCTYPE nor version attribute (OK in SVG). (W25)</html:p>
<expect>
<Validity>Pass</Validity>
<NumWarnings>1</NumWarnings>
</expect>
</test>
</collection>
</collection>
</testsuite>
|