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
https://www.w3.org/TR/2020/NOTE-pronunciation-use-cases-20200317/
https://www.w3.org/TR/2020/NOTE-pronunciation-gap-analysis-20200317/
https://www.w3.org/TR/2020/CR-pub-manifest-20200317/
https://www.w3.org/TR/2020/CR-dom-20200317/
https://www.w3.org/TR/2020/CR-audiobooks-20200317/
https://www.w3.org/TR/2020/NOTE-dom41-20200317/
https://www.w3.org/TR/2020/CR-json-ld11-20200316/
https://www.w3.org/TR/2020/WD-pronunciation-explainer-20200310/
https://www.w3.org/TR/2020/CR-css-speech-1-20200310/
https://www.w3.org/TR/2020/WD-pronunciation-gap-analysis-and-use-cases-20200310/
https://www.w3.org/TR/2020/WD-did-core-20200305/
https://www.w3.org/TR/2020/CR-json-ld11-api-20200305/
https://www.w3.org/TR/2020/CR-json-ld11-framing-20200305/
https://www.w3.org/TR/2020/WD-css-conditional-4-20200303/
https://www.w3.org/TR/2020/WD-mediaqueries-5-20200303/
https://www.w3.org/TR/2020/WD-css-color-5-20200303/
https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/
https://www.w3.org/TR/2020/WD-WCAG22-20200227/
https://www.w3.org/TR/2020/WD-selection-api-20200226/
https://www.w3.org/TR/2020/WD-gamepad-20200225/
https://www.w3.org/TR/2020/WD-resource-timing-2-20200218/
https://www.w3.org/TR/2020/WD-html-aria-20200215/
https://www.w3.org/TR/2020/WD-mst-content-hint-20200214/
https://www.w3.org/TR/2020/WD-payment-method-basic-card-20200213/
https://www.w3.org/TR/2020/WD-xaur-20200213/
https://www.w3.org/TR/2020/WD-resize-observer-1-20200211/
https://www.w3.org/TR/2020/WD-css-scroll-anchoring-1-20200211/
https://www.w3.org/TR/2020/REC-trace-context-1-20200206/
https://www.w3.org/TR/2020/SPSD-vocab-dcat-20200204/
https://www.w3.org/TR/2020/REC-vocab-dcat-2-20200204/
https://www.w3.org/TR/2020/WD-push-api-20200204/
https://www.w3.org/TR/2020/PR-wot-architecture-20200130/
https://www.w3.org/TR/2020/WD-personalization-semantics-requirements-1.0-20200130/
https://www.w3.org/TR/2020/NOTE-wot-binding-templates-20200130/
https://www.w3.org/TR/2020/WD-did-use-cases-20200130/
https://www.w3.org/TR/2020/WD-picture-in-picture-20200130/
https://www.w3.org/TR/2020/WD-media-capabilities-20200130/
https://www.w3.org/TR/2020/PR-wot-thing-description-20200130/
https://www.w3.org/TR/2020/WD-mediasession-20200130/
https://www.w3.org/TR/2020/CR-ttml2-20200128/
https://www.w3.org/TR/2020/WD-personalization-semantics-1.0-20200127/
https://www.w3.org/TR/2020/WD-personalization-semantics-content-1.0-20200127/
https://www.w3.org/TR/2020/WD-css-ui-4-20200124/
https://www.w3.org/TR/2020/WD-webrtc-priority-20200123/
https://www.w3.org/TR/2020/WD-screen-orientation-20200122/
https://www.w3.org/TR/2020/WD-navigation-timing-2-20200121/
https://www.w3.org/TR/2020/WD-server-timing-20200120/
https://www.w3.org/TR/2020/WD-vocab-ssn-ext-20200116/
https://www.w3.org/TR/2020/CR-webrtc-stats-20200114/
https://www.w3.org/TR/2020/WD-fetch-metadata-20200110/
https://www.w3.org/TR/2019/WD-wai-aria-practices-1.2-20191218/
https://www.w3.org/TR/2019/WD-core-aam-1.2-20191218/
https://www.w3.org/TR/2019/NOTE-dx-prof-20191218/
https://www.w3.org/TR/2019/WD-wai-aria-1.2-20191218/
https://www.w3.org/TR/2019/WD-web-share-20191217/
https://www.w3.org/TR/2019/WD-html-aam-1.0-20191217/
https://www.w3.org/TR/2019/CR-webrtc-20191213/
https://www.w3.org/TR/2019/CR-accelerometer-20191212/
https://www.w3.org/TR/2019/CR-generic-sensor-20191212/
https://www.w3.org/TR/2019/CR-gyroscope-20191212/
https://www.w3.org/TR/2019/WD-pointerevents3-20191212/
https://www.w3.org/TR/2019/CR-orientation-sensor-20191212/
https://www.w3.org/TR/2019/CR-payment-request-20191212/
https://www.w3.org/TR/2019/REC-css-writing-modes-3-20191210/
https://www.w3.org/TR/2019/WD-appmanifest-20191209/
https://www.w3.org/TR/2019/NOTE-turingtest-20191209/
https://www.w3.org/TR/2019/NOTE-lpf-20191205/
https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/
https://www.w3.org/TR/2019/SPSD-webcgm20-20191205/
https://www.w3.org/TR/2019/REC-wasm-js-api-1-20191205/
https://www.w3.org/TR/2019/SPSD-WebCGM-20191205
https://www.w3.org/TR/2019/REC-wasm-web-api-1-20191205/
https://www.w3.org/TR/2019/WD-css-grid-2-20191203/
https://www.w3.org/TR/2019/WD-ttml-imsc1.2-20191128/
https://www.w3.org/TR/2019/WD-dx-prof-conneg-20191126/
https://www.w3.org/TR/2019/WD-css-nav-1-20191126/
https://www.w3.org/TR/2019/WD-webauthn-2-20191126/
https://www.w3.org/TR/2019/WD-webdriver2-20191124/
https://www.w3.org/TR/2019/SPSD-hr-time-1-20191121/
https://www.w3.org/TR/2019/REC-hr-time-2-20191121/
https://www.w3.org/TR/2019/REC-css-contain-1-20191121/
https://www.w3.org/TR/2019/CR-service-workers-1-20191119/
https://www.w3.org/TR/2019/REC-vc-data-model-20191119/
https://www.w3.org/TR/2019/WD-screen-capture-20191119/
https://www.w3.org/TR/2019/NOTE-trace-context-protocols-registry-20191119/
https://www.w3.org/TR/2019/WD-css-text-3-20191113/
https://www.w3.org/TR/2019/WD-css-text-4-20191113/
https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/
https://www.w3.org/TR/2019/WD-css-contain-2-20191111/
https://www.w3.org/TR/2019/NOTE-wot-security-20191106/
https://www.w3.org/TR/2019/WD-css-color-4-20191105/
https://www.w3.org/TR/2019/REC-act-rules-format-1.0-20191031/
https://www.w3.org/TR/2019/WD-wot-scripting-api-20191028/
https://www.w3.org/TR/2019/WD-css-properties-values-api-1-20191025/
https://www.w3.org/TR/2019/WD-performance-timeline-2-20191024/
https://www.w3.org/TR/2019/WD-webrtc-svc-20191022/
https://www.w3.org/TR/2019/WD-payment-handler-20191021/
https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/
https://www.w3.org/TR/2019/WD-webxr-ar-module-1-20191010/
https://www.w3.org/TR/2019/WD-webxr-gamepads-module-1-20191010/
https://www.w3.org/TR/2019/WD-webxr-20191010/
https://www.w3.org/TR/2019/CR-css-images-3-20191010/
https://www.w3.org/TR/2019/WD-user-timing-3-20190927/
https://www.w3.org/TR/2019/NOTE-vc-imp-guide-20190924/
https://www.w3.org/TR/2019/NOTE-vc-use-cases-20190924/
https://www.w3.org/TR/2019/WD-html-aam-1.0-20190913/
https://www.w3.org/TR/2019/WD-mini-app-white-paper-20190912/
https://www.w3.org/TR/2019/WD-FileAPI-20190911/
https://www.w3.org/TR/2019/NOTE-security-privacy-questionnaire-20190910/
https://www.w3.org/TR/2019/WD-pronunciation-user-scenarios-20190905/
https://www.w3.org/TR/2019/CR-payment-method-id-20190905/
https://www.w3.org/TR/2019/WD-pointerlock-2-20190828/
https://www.w3.org/TR/2019/WD-css-lists-3-20190817/
https://www.w3.org/TR/2019/NOTE-wai-aria-practices-1.1-20190814/
https://www.w3.org/TR/2019/NOTE-pwp-ucr-20190813/
https://www.w3.org/TR/2019/CR-css-text-decor-3-20190813/
https://www.w3.org/TR/2019/NOTE-wpub-20190813/
https://www.w3.org/TR/2019/WD-css-content-3-20190802/
https://www.w3.org/TR/2019/CR-css-writing-modes-4-20190730/
https://www.w3.org/TR/2019/WD-css-tables-3-20190727/
https://www.w3.org/TR/2019/WD-timing-entrytypes-registry-20190723/
https://www.w3.org/TR/2019/WD-coga-usable-20190716/
https://www.w3.org/TR/2019/CR-css-syntax-3-20190716/
https://www.w3.org/TR/2019/CR-css-display-3-20190711/
https://www.w3.org/TR/2019/WD-personalization-semantics-tools-1.0-20190711/
https://www.w3.org/TR/2019/WD-accname-1.2-20190711/
https://www.w3.org/TR/2019/WD-personalization-semantics-help-1.0-20190711/
https://www.w3.org/TR/2019/CR-mediacapture-streams-20190702/
https://www.w3.org/TR/2019/WD-resource-hints-20190702/
https://www.w3.org/TR/2019/CR-preload-20190626/
https://www.w3.org/TR/2019/WD-css-animation-worklet-1-20190625/
https://www.w3.org/TR/2019/WD-string-meta-20190611/
https://www.w3.org/TR/2019/WD-css-overscroll-1-20190606/
https://www.w3.org/TR/2019/CR-css-values-3-20190606/
https://www.w3.org/TR/2019/WD-clipboard-apis-20190605/
https://www.w3.org/TR/2019/WD-intersection-observer-20190531/
https://www.w3.org/TR/2019/WD-input-events-1-20190530/
https://www.w3.org/TR/2019/WD-uievents-20190530/
https://www.w3.org/TR/2019/WD-input-events-2-20190530/
https://www.w3.org/TR/2019/WD-clreq-20190528/
https://www.w3.org/TR/2019/WD-css-color-adjust-1-20190523/
https://www.w3.org/TR/2019/WD-css-sizing-3-20190522/
https://www.w3.org/TR/2019/WD-typography-20190520/
https://www.w3.org/TR/2019/NOTE-media-timed-events-20190516/
https://www.w3.org/TR/2019/NOTE-charmod-resid-20190502/
https://www.w3.org/TR/2019/CR-css-easing-1-20190430/
https://www.w3.org/TR/2019/WD-orientation-event-20190416/
https://www.w3.org/TR/2019/WD-feature-policy-1-20190416/
https://www.w3.org/TR/2019/NOTE-act-rules-aspects-20190416/
https://www.w3.org/TR/2019/NOTE-ttml-profile-registry-20190411/
https://www.w3.org/TR/2019/SPSD-pointerevents1-20190404/
https://www.w3.org/TR/2019/REC-pointerevents2-20190404/
https://www.w3.org/TR/2019/CR-webvtt1-20190404/
https://www.w3.org/TR/2019/NOTE-selectors-nonelement-1-20190402/
https://www.w3.org/TR/2019/NOTE-fingerprinting-guidance-20190328/
https://www.w3.org/TR/2019/NOTE-SVGFilterReqs12-20190328/
https://www.w3.org/TR/2019/NOTE-MediaAccessEvents-20190328/
https://www.w3.org/TR/2019/CR-css-scroll-snap-1-20190319/
https://www.w3.org/TR/2019/WD-magnetometer-20190307/
https://www.w3.org/TR/2019/WD-ambient-light-20190307/
https://www.w3.org/TR/2019/WD-proximity-20190305/
https://www.w3.org/TR/2019/REC-webauthn-1-20190304/
https://www.w3.org/TR/2019/SPSD-user-timing-1-20190226/
https://www.w3.org/TR/2019/REC-user-timing-2-20190226/
https://www.w3.org/TR/2019/WD-css-pseudo-4-20190225/
https://www.w3.org/TR/2019/CR-css-transforms-1-20190214/
https://www.w3.org/TR/2019/NOTE-charmod-norm-20190204/
https://www.w3.org/TR/2019/WD-css-values-4-20190131/
https://www.w3.org/TR/2019/NOTE-css-2018-20190122/
https://www.w3.org/TR/2019/NOTE-tracking-compliance-20190122/
https://www.w3.org/TR/2019/NOTE-tracking-dnt-20190117/
https://www.w3.org/TR/2019/NOTE-dcat-ucr-20190117/
https://www.w3.org/TR/2019/WD-credential-management-1-20190117/
https://www.w3.org/TR/2018/WD-geolocation-sensor-20181219/
https://www.w3.org/TR/2018/WD-css-break-4-20181218/
https://www.w3.org/TR/2018/WD-motion-1-20181218/
https://www.w3.org/TR/2018/REC-accname-1.1-20181218/
https://www.w3.org/TR/2018/WD-css-box-3-20181218/
https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/
https://www.w3.org/TR/2018/WD-coga-gap-analysis-20181211/
https://www.w3.org/TR/2018/WD-webrtc-nv-use-cases-20181211/
https://www.w3.org/TR/2018/WD-css-align-3-20181206/
https://www.w3.org/TR/2018/CR-geometry-1-20181204/
https://www.w3.org/TR/2018/CR-css-break-3-20181204/
https://www.w3.org/TR/2018/WD-selectors-4-20181121/
https://www.w3.org/TR/2018/CR-css-flexbox-1-20181119/
https://www.w3.org/TR/2018/WD-css-shadow-parts-1-20181115/
https://www.w3.org/TR/2018/REC-ttml1-20181108/
https://www.w3.org/TR/2018/REC-ttml-imsc1.1-20181108/
https://www.w3.org/TR/2018/REC-selectors-3-20181106/
https://www.w3.org/TR/2018/WD-html53-20181018/
https://www.w3.org/TR/2018/WD-css-page-3-20181018/
https://www.w3.org/TR/2018/WD-CSP3-20181015/
https://www.w3.org/TR/2018/OBSL-widgets-apis-20181011/
https://www.w3.org/TR/2018/WD-css-transitions-1-20181011/
https://www.w3.org/TR/2018/WD-css-animations-1-20181011/
https://www.w3.org/TR/2018/OBSL-widgets-digsig-20181011/
https://www.w3.org/TR/2018/OBSL-view-mode-20181011/
https://www.w3.org/TR/2018/WD-web-animations-1-20181011/
https://www.w3.org/TR/2018/OBSL-widgets-20181011/
https://www.w3.org/TR/2018/OBSL-widgets-access-20181011/
https://www.w3.org/TR/2018/CR-SVG2-20181004/
https://www.w3.org/TR/2018/REC-graphics-aam-1.0-20181002/
https://www.w3.org/TR/2018/REC-graphics-aria-1.0-20181002/
https://www.w3.org/TR/2018/CR-webrtc-identity-20180927/
https://www.w3.org/TR/2018/WD-using-aria-20180927/
https://www.w3.org/TR/2018/WD-reporting-1-20180925/
https://www.w3.org/TR/2018/WD-network-error-logging-1-20180925/
https://www.w3.org/TR/2018/WD-device-memory-1-20180925/
https://www.w3.org/TR/2018/NOTE-imsc-1.1-reqs-20180925/
https://www.w3.org/TR/2018/WD-css-scrollbars-1-20180925/
https://www.w3.org/TR/2018/REC-css-fonts-3-20180920/
https://www.w3.org/TR/2018/CR-webaudio-20180918/
https://www.w3.org/TR/2018/SPSD-CSS1-20180913/
https://www.w3.org/TR/2018/OBSL-P3P-20180830/
https://www.w3.org/TR/2018/NOTE-P3P10-principles-20180830/
https://www.w3.org/TR/2018/NOTE-p3p-rdfschema-20180830/
https://www.w3.org/TR/2018/NOTE-P3P11-20180830/
https://www.w3.org/TR/2018/CR-css-cascade-3-20180828/
https://www.w3.org/TR/2018/CR-css-cascade-4-20180828/
https://www.w3.org/TR/2018/WD-css-logical-1-20180827/
https://www.w3.org/TR/2018/CR-css-paint-api-1-20180809/
https://www.w3.org/TR/2018/WD-css-inline-3-20180808/
https://www.w3.org/TR/2018/WD-css-overflow-3-20180731/
https://www.w3.org/TR/2018/NOTE-exi-for-json-20180726/
https://www.w3.org/TR/2018/NOTE-web-payments-use-cases-20180719/
https://www.w3.org/TR/2018/NOTE-web-packaging-20180626/
https://www.w3.org/TR/2018/SPSD-ttml-imsc1-20180626/
https://www.w3.org/TR/2018/NOTE-vehicle-information-api-20180626/
https://www.w3.org/TR/2018/REC-css-ui-3-20180621/
https://www.w3.org/TR/2018/REC-css-color-3-20180619/
https://www.w3.org/TR/2018/REC-exi-c14n-20180607/
https://www.w3.org/TR/2018/REC-webdriver1-20180605/
https://www.w3.org/TR/2018/REC-WCAG21-20180605/
https://www.w3.org/TR/2018/WD-svg-aam-1.0-20180510/
https://www.w3.org/TR/2018/NOTE-custom-elements-20180503/
https://www.w3.org/TR/2018/WD-microdata-20180426/
https://www.w3.org/TR/2018/REC-ttml-imsc1.0.1-20180424/
https://www.w3.org/TR/2018/NOTE-matrix-20180412/
https://www.w3.org/TR/2018/WD-css-layout-api-1-20180412/
https://www.w3.org/TR/2018/WD-css-typed-om-1-20180410/
http://www.w3.org/TR/2018/SPSD-xhtml-basic-20180327/
https://www.w3.org/TR/2018/SPSD-html40-20180327/
https://www.w3.org/TR/2018/SPSD-html401-20180327/
http://www.w3.org/TR/2018/SPSD-xhtml11-20180327/
https://www.w3.org/TR/2018/SPSD-html5-20180327/
https://www.w3.org/TR/2018/CR-encoding-20180327/
http://www.w3.org/TR/2018/SPSD-xhtml-modularization-20180327/
http://www.w3.org/TR/2018/SPSD-xhtml-print-20180327/
http://www.w3.org/TR/2018/SPSD-xhtml1-20180327/
https://www.w3.org/TR/2018/SPSD-html32-20180315/
https://www.w3.org/TR/2018/WD-css-text-decor-4-20180313/
https://www.w3.org/TR/2018/NOTE-shadow-dom-20180301/
https://www.w3.org/TR/2018/REC-WOFF2-20180301/
https://www.w3.org/TR/2018/WD-alreq-20180222/
https://www.w3.org/TR/2018/REC-odrl-vocab-20180215/
https://www.w3.org/TR/2018/REC-odrl-model-20180215/
https://www.w3.org/TR/2018/CR-vehicle-information-service-20180213/
https://www.w3.org/TR/2018/REC-html-media-capture-20180201/
https://www.w3.org/TR/2018/REC-IndexedDB-2-20180130/
https://www.w3.org/TR/2018/NOTE-web-packaging-20180130/
https://www.w3.org/TR/2018/REC-activitypub-20180123/
https://www.w3.org/TR/2018/REC-websub-20180123/
https://www.w3.org/TR/2018/NOTE-indieauth-20180123/
https://www.w3.org/TR/2018/NOTE-post-type-discovery-20180118/
https://www.w3.org/TR/2018/NOTE-jf2-20180110/
https://www.w3.org/TR/2018/WD-pwpub-20180104/
https://www.w3.org/TR/2018/WD-wpub-ann-20180104/
https://www.w3.org/TR/2017/NOTE-social-web-protocols-20171225/
https://www.w3.org/TR/2017/CR-wake-lock-20171214/
https://www.w3.org/TR/2017/REC-html52-20171214/
https://www.w3.org/TR/2017/CR-css-grid-1-20171214/
https://www.w3.org/TR/2017/REC-dpub-aam-1.0-20171214/
https://www.w3.org/TR/2017/REC-wai-aria-1.1-20171214/
https://www.w3.org/TR/2017/REC-core-aam-1.1-20171214/
https://www.w3.org/TR/2017/REC-dpub-aria-1.0-20171214/
https://www.w3.org/TR/2017/CR-css-counter-styles-3-20171214/
https://www.w3.org/TR/2017/NOTE-webpayments-http-api-20171212/
https://www.w3.org/TR/2017/WD-payment-method-manifest-20171212/
https://www.w3.org/TR/2017/WD-clear-site-data-20171130/
https://www.w3.org/TR/2017/REC-vocab-ssn-20171019/
https://www.w3.org/TR/2017/REC-owl-time-20171019/
https://www.w3.org/TR/2017/CR-remote-playback-20171019/
https://www.w3.org/TR/2017/PR-page-visibility-2-20171017/
https://www.w3.org/TR/2017/CR-css-backgrounds-3-20171017/
https://www.w3.org/TR/2017/NOTE-vehicle-data-20171012/
https://www.w3.org/TR/2017/PR-requestidlecallback-20171010/
https://www.w3.org/TR/2017/CR-audio-output-20171003/
https://www.w3.org/TR/2017/REC-html51-20171003/
https://www.w3.org/TR/2017/NOTE-qb4st-20170928/
https://www.w3.org/TR/2017/NOTE-eo-qb-20170928/
https://www.w3.org/TR/2017/NOTE-sdw-bp-20170928/
https://www.w3.org/TR/2017/WD-permissions-20170925/
https://www.w3.org/TR/2017/REC-encrypted-media-20170918/
https://www.w3.org/TR/2017/NOTE-png-hdr-pq-20170911/
https://www.w3.org/TR/2017/WD-paint-timing-20170907/
https://www.w3.org/TR/2017/WD-longtasks-1-20170907/
https://www.w3.org/TR/2017/WD-mediacapture-fromelement-20170906/
https://www.w3.org/TR/2017/CR-mediaqueries-4-20170905/
https://www.w3.org/TR/2017/NOTE-motion-sensors-20170830/
https://www.w3.org/TR/2017/NOTE-hr-time-3-20170803/
https://www.w3.org/TR/2017/REC-shacl-20170720/
https://www.w3.org/TR/2017/NOTE-shacl-abstract-syntax-20170720/
https://www.w3.org/TR/2017/NOTE-shacl-ucr-20170720/
https://www.w3.org/TR/2017/NOTE-unicode-xml-20170713/
https://www.w3.org/TR/2017/NOTE-covjson-overview-20170711/
https://www.w3.org/TR/2017/NOTE-geolocation-API-v2-20170706/
https://www.w3.org/TR/2017/WD-mediastream-recording-20170621/
https://www.w3.org/TR/2017/WD-image-capture-20170621/
https://www.w3.org/TR/2017/NOTE-xquery-sx-10-requirements-20170620/
https://www.w3.org/TR/2017/NOTE-xquery-sx-10-use-cases-20170620/
https://www.w3.org/TR/2017/NOTE-findtext-20170620/
https://www.w3.org/TR/2017/WD-css-overflow-4-20170613/
https://www.w3.org/TR/2017/NOTE-shacl-af-20170608/
https://www.w3.org/TR/2017/REC-xslt-30-20170608/
https://www.w3.org/TR/2017/NOTE-shacl-js-20170608/
https://www.w3.org/TR/2017/NOTE-cloud-browser-arch-20170608/
https://www.w3.org/TR/2017/CR-uievents-code-20170601/
https://www.w3.org/TR/2017/CR-uievents-key-20170601/
https://www.w3.org/TR/2017/CR-presentation-api-20170601/
https://www.w3.org/TR/2017/NOTE-geofencing-20170530/
https://www.w3.org/TR/2017/REC-activitystreams-core-20170523/
https://www.w3.org/TR/2017/REC-activitystreams-vocabulary-20170523/
https://www.w3.org/TR/2017/REC-micropub-20170523/
https://www.w3.org/TR/2017/NOTE-tvcontrol-api-20170518/
https://www.w3.org/TR/2017/NOTE-pwp-20170502/
https://www.w3.org/TR/2017/REC-ldn-20170502/
https://www.w3.org/TR/2017/WD-mediacapture-depth-20170418/
https://www.w3.org/TR/2017/CR-beacon-20170413/
https://www.w3.org/TR/2017/WD-css-images-4-20170413/
https://www.w3.org/TR/2017/WD-fill-stroke-3-20170413/
https://www.w3.org/TR/2017/CR-resource-timing-1-20170330/
https://www.w3.org/TR/2017/REC-xqueryx-31-20170321/
https://www.w3.org/TR/2017/REC-xpath-31-20170321/
https://www.w3.org/TR/2017/REC-xslt-xquery-serialization-31-20170321/
https://www.w3.org/TR/2017/REC-xquery-31-20170321/
https://www.w3.org/TR/2017/REC-xpath-datamodel-31-20170321/
https://www.w3.org/TR/2017/REC-xpath-functions-31-20170321/
https://www.w3.org/TR/2017/NOTE-its2req-20170302/
https://www.w3.org/TR/2017/NOTE-mlw-metadata-us-impl-20170302/
https://www.w3.org/TR/2017/WD-css-rhythm-1-20170302/
https://www.w3.org/TR/2017/NOTE-annotation-html-20170223/
https://www.w3.org/TR/2017/REC-annotation-model-20170223/
https://www.w3.org/TR/2017/REC-annotation-protocol-20170223/
https://www.w3.org/TR/2017/NOTE-selectors-states-20170223/
https://www.w3.org/TR/2017/REC-annotation-vocab-20170223/
https://www.w3.org/TR/2017/WD-poe-ucr-20170223/
https://www.w3.org/TR/2017/WD-ilreq-20170220/
https://www.w3.org/TR/2017/NOTE-predefined-counter-styles-20170216/
https://www.w3.org/TR/2017/NOTE-EARL10-Guide-20170202/
https://www.w3.org/TR/2017/NOTE-WAET-20170202/
https://www.w3.org/TR/2017/NOTE-EARL10-Requirements-20170202/
https://www.w3.org/TR/2017/NOTE-Content-in-RDF10-20170202/
https://www.w3.org/TR/2017/NOTE-HTTP-in-RDF10-20170202/
https://www.w3.org/TR/2017/NOTE-EARL10-Schema-20170202/
https://www.w3.org/TR/2017/NOTE-mmi-mc-discovery-20170202/
https://www.w3.org/TR/2017/NOTE-emma20-20170202/
https://www.w3.org/TR/2017/NOTE-Pointers-in-RDF10-20170202/
https://www.w3.org/TR/2017/REC-dwbp-20170131/
https://www.w3.org/TR/2017/NOTE-css-2017-20170131/
https://www.w3.org/TR/2017/REC-WebCryptoAPI-20170126/
https://www.w3.org/TR/2017/CR-referrer-policy-20170126/
https://www.w3.org/TR/2017/NOTE-xquery-update-30-20170124/
https://www.w3.org/TR/2017/NOTE-xquery-update-30-requirements-use-cases-20170124/
https://www.w3.org/TR/2017/REC-webmention-20170112/
https://www.w3.org/TR/2017/NOTE-discovery-api-20170112/
https://www.w3.org/TR/2016/WD-css-round-display-1-20161222/
https://www.w3.org/TR/2016/NOTE-vocab-dqv-20161215/
https://www.w3.org/TR/2016/NOTE-vocab-duv-20161215/
https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/
https://www.w3.org/TR/2016/REC-CSP2-20161215/
https://www.w3.org/TR/2016/NOTE-xquery-31-requirements-20161213/
https://www.w3.org/TR/2016/NOTE-url-1-20161206/
https://www.w3.org/TR/2016/NOTE-streams-api-20161129/
https://www.w3.org/TR/2016/REC-media-source-20161117/
https://www.w3.org/TR/2016/WD-elreq-20161115/
https://www.w3.org/TR/2016/REC-geolocation-API-20161108/
https://www.w3.org/TR/2016/REC-pointerlock-20161027/
https://www.w3.org/TR/2016/NOTE-sdw-ucr-20161025/
https://www.w3.org/TR/2016/REC-vibration-20161018/
https://www.w3.org/TR/2016/NOTE-webpayments-overview-20161013/
https://www.w3.org/TR/2016/NOTE-UNDERSTANDING-WCAG20-20161007/
https://www.w3.org/TR/2016/NOTE-WCAG20-TECHS-20161007/
https://www.w3.org/TR/2016/WD-international-specs-20161007/
https://www.w3.org/TR/2016/NOTE-XMLHttpRequest-20161006/
https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-registry-20161004/
https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-webm-20161004/
https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-isobmff-20161004/
https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-mp2t-20161004/
https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-mpeg-audio-20161004/
https://www.w3.org/TR/2016/NOTE-eme-stream-registry-20160915/
https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160915/
https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160915/
https://www.w3.org/TR/2016/CR-secure-contexts-20160915/
https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160915/
https://www.w3.org/TR/2016/NOTE-eme-initdata-registry-20160915/
https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160915/
https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160915/
https://www.w3.org/TR/2016/WD-webpayments-http-messages-20160915/
https://www.w3.org/TR/2016/NOTE-csp-cookies-20160913/
https://www.w3.org/TR/2016/NOTE-csp-pinning-20160913/
https://www.w3.org/TR/2016/NOTE-epr-20160913/
https://www.w3.org/TR/2016/WD-csp-embedded-enforcement-20160909/
https://www.w3.org/TR/2016/CR-mixed-content-20160802/
http://www.w3.org/TR/2016/NOTE-xinclude-11-20160721/
http://www.w3.org/TR/2016/NOTE-xproc20-steps-20160721/
http://www.w3.org/TR/2016/NOTE-xproc20-20160721/
http://www.w3.org/TR/2016/NOTE-frame-timing-20160720/
http://www.w3.org/TR/2016/WD-wai-aria-practices-20160714/
http://www.w3.org/TR/2016/WD-wai-aria-primer-20160714/
http://www.w3.org/TR/2016/CR-battery-status-20160707/
http://www.w3.org/TR/2016/REC-SRI-20160623/
http://www.w3.org/TR/2016/WD-UISecurity-20160607/
http://www.w3.org/TR/2016/WD-worklets-1-20160607/
http://www.w3.org/TR/2016/NOTE-ime-api-20160524/
http://www.w3.org/TR/2016/NOTE-quota-api-20160523/
http://www.w3.org/TR/2016/WD-css-position-3-20160517/
http://www.w3.org/TR/2016/WD-DOM-Parsing-20160517/
http://www.w3.org/TR/2016/NOTE-dpub-accessibility-20160503/
http://www.w3.org/TR/2016/REC-webstorage-20160419/
http://www.w3.org/TR/2016/WD-CSS22-20160412/
http://www.w3.org/TR/2016/NOTE-webcrypto-key-discovery-20160329/
http://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/
http://www.w3.org/TR/2016/WD-low-vision-needs-20160317/
http://www.w3.org/TR/2016/WD-cssom-1-20160317/
http://www.w3.org/TR/2016/WD-cssom-view-1-20160317/
http://www.w3.org/TR/2016/NOTE-WOFF20ER-20160315/
http://www.w3.org/TR/2016/NOTE-csvw-html-20160225/
http://www.w3.org/TR/2016/NOTE-tabular-data-primer-20160225/
http://www.w3.org/TR/2016/NOTE-csvw-ucr-20160225/
http://www.w3.org/TR/2016/WD-html-imports-20160225/
http://www.w3.org/TR/2016/WD-wcag2-ext-req-20160105/
http://www.w3.org/TR/2015/REC-csv2json-20151217/
http://www.w3.org/TR/2015/REC-csv2rdf-20151217/
http://www.w3.org/TR/2015/REC-tabular-data-model-20151217/
http://www.w3.org/TR/2015/REC-tabular-metadata-20151217/
http://www.w3.org/TR/2015/NOTE-UAAG20-Reference-20151215/
http://www.w3.org/TR/2015/NOTE-UAAG20-20151215/
http://www.w3.org/TR/2015/NOTE-xpath-full-text-30-requirements-use-cases-20151210/
http://www.w3.org/TR/2015/NOTE-media-accessibility-reqs-20151203/
http://www.w3.org/TR/2015/CR-css-variables-1-20151203/
http://www.w3.org/TR/2015/CR-css-will-change-1-20151203/
http://www.w3.org/TR/2015/REC-xpath-full-text-30-20151124/
http://www.w3.org/TR/2015/REC-2dcontext-20151119/
http://www.w3.org/TR/2015/REC-notifications-20151022/
http://www.w3.org/TR/2015/WD-COWL-20151015/
http://www.w3.org/TR/2015/NOTE-css-2015-20151013/
http://www.w3.org/TR/2015/CR-upgrade-insecure-requests-20151008/
http://www.w3.org/TR/2015/NOTE-html-transcript-src-20151001/
http://www.w3.org/TR/2015/NOTE-form-http-extensions-20150929/
http://www.w3.org/TR/2015/NOTE-2dcontext2-20150929/
http://www.w3.org/TR/2015/NOTE-html-aapi-20150929/
http://www.w3.org/TR/2015/NOTE-html-polyglot-20150929/
http://www.w3.org/TR/2015/NOTE-html-json-forms-20150929/
http://www.w3.org/TR/2015/REC-ATAG20-20150924/
http://www.w3.org/TR/2015/WD-workers-20150924/
http://www.w3.org/TR/2015/NOTE-IMPLEMENTING-ATAG20-20150924/
http://www.w3.org/TR/2015/NOTE-animation-timing-20150922/
http://www.w3.org/TR/2015/WD-css-page-floats-3-20150915/
http://www.w3.org/TR/2015/REC-scxml-20150901/
http://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/
http://www.w3.org/TR/2015/NOTE-scxml-dom-iop-20150811/
http://www.w3.org/TR/2015/NOTE-scxml-xpath-dm-20150811/
http://www.w3.org/TR/2015/NOTE-runtime-20150806/
http://www.w3.org/TR/2015/NOTE-ldpatch-20150728/
http://www.w3.org/TR/2015/NOTE-task-scheduler-20150723/
http://www.w3.org/TR/2015/NOTE-tcp-udp-sockets-20150723/
http://www.w3.org/TR/2015/NOTE-xmldsig-core2-20150723/
http://www.w3.org/TR/2015/NOTE-app-uri-20150723/
http://www.w3.org/TR/2015/WD-klreq-20150723/
http://www.w3.org/TR/2015/NOTE-html-bidi-20150721/
http://www.w3.org/TR/2015/NOTE-api-perms-20150714/
http://www.w3.org/TR/2015/WD-svg-paths-20150709/
http://www.w3.org/TR/2015/NOTE-ldp-paging-20150630/
http://www.w3.org/TR/2015/NOTE-nfc-20150616/
http://www.w3.org/TR/2015/NOTE-contacts-manager-api-20150602/
http://www.w3.org/TR/2015/NOTE-messaging-20150602/
http://www.w3.org/TR/2015/NOTE-telephony-20150602/
http://www.w3.org/TR/2015/NOTE-html-alt-techniques-20150521/
http://www.w3.org/TR/2015/REC-webmessaging-20150519/
http://www.w3.org/TR/2015/NOTE-hcls-dataset-20150514/
http://www.w3.org/TR/2015/WD-indie-ui-context-20150430/
http://www.w3.org/TR/2015/WD-indie-ui-events-20150430/
http://www.w3.org/TR/2015/NOTE-ldp-primer-20150423/
http://www.w3.org/TR/2015/WD-ltli-20150423/
http://www.w3.org/TR/2015/WD-svg-markers-20150409/
http://www.w3.org/TR/2015/WD-svg-strokes-20150409/
http://www.w3.org/TR/2015/NOTE-css-template-3-20150326/
http://www.w3.org/TR/2015/NOTE-rdfa-primer-20150317/
http://www.w3.org/TR/2015/REC-html-rdfa-20150317/
http://www.w3.org/TR/2015/NOTE-xhtml-pubid-20150317/
http://www.w3.org/TR/2015/REC-xhtml-rdfa-20150317/
http://www.w3.org/TR/2015/WD-webmidi-20150317/
http://www.w3.org/TR/2015/REC-rdfa-core-20150317/
http://www.w3.org/TR/2015/REC-rdfa-lite-20150317/
http://www.w3.org/TR/2015/REC-html-longdesc-20150226/
http://www.w3.org/TR/2015/WD-mobile-accessibility-mapping-20150226/
http://www.w3.org/TR/2015/REC-ldp-20150226/
http://www.w3.org/TR/2015/NOTE-dwbp-ucr-20150224/
http://www.w3.org/TR/2015/NOTE-CSP1-20150219/
http://www.w3.org/TR/2015/REC-eventsource-20150203/
http://www.w3.org/TR/2015/NOTE-i18n-html-tech-char-20150127/
http://www.w3.org/TR/2015/WD-css3-exclusions-20150115/
http://www.w3.org/TR/2015/WD-coga-user-research-20150115/
http://www.w3.org/TR/2015/CR-compositing-1-20150113/
http://www.w3.org/TR/2015/REC-IndexedDB-20150108/
http://www.w3.org/TR/2015/NOTE-dpub-metadata-20150108/
http://www.w3.org/TR/2014/NOTE-microdata-rdf-20141216/
http://www.w3.org/TR/2014/NOTE-html5-diff-20141209/
http://www.w3.org/TR/2014/NOTE-dpub-annotation-uc-20141204/
http://www.w3.org/TR/2014/NOTE-fullscreen-20141118/
http://www.w3.org/TR/2014/NOTE-resource-priorities-20141023/
http://www.w3.org/TR/2014/NOTE-css3-marquee-20141014/
http://www.w3.org/TR/2014/NOTE-css-tv-20141014/
http://www.w3.org/TR/2014/NOTE-css3-preslev-20141014/
http://www.w3.org/TR/2014/NOTE-becss-20141014/
http://www.w3.org/TR/2014/NOTE-css3-reader-20141014/
http://www.w3.org/TR/2014/NOTE-css-mobile-20141014/
http://www.w3.org/TR/2014/NOTE-css3-hyperlinks-20141014/
http://www.w3.org/TR/2014/WD-css-regions-1-20141009/
http://www.w3.org/TR/2014/NOTE-UMP-20141002/
http://www.w3.org/TR/2014/WD-dpub-latinreq-20140930/
http://www.w3.org/TR/2014/NOTE-xquery-sx-10-20140918/
http://www.w3.org/TR/2014/NOTE-ldp-acr-20140916/
http://www.w3.org/TR/2014/WD-css-line-grid-1-20140916/
http://www.w3.org/TR/2014/REC-exi-profile-20140909/
http://www.w3.org/TR/2014/NOTE-ldp-bp-20140828/
http://www.w3.org/TR/2014/CR-css-masking-1-20140826/
http://www.w3.org/TR/2014/NOTE-html-srcset-20140819/
http://www.w3.org/TR/2014/NOTE-wake-lock-use-cases-20140814/
http://www.w3.org/TR/2014/WD-css-ruby-1-20140805/
http://www.w3.org/TR/2014/NOTE-components-intro-20140724/
http://www.w3.org/TR/2014/NOTE-html-picture-element-20140722/
http://www.w3.org/TR/2014/NOTE-WCAG-EM-20140710/
http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/
http://www.w3.org/TR/2014/NOTE-i18n-html-tech-lang-20140603/
http://www.w3.org/TR/2014/NOTE-i18n-html-tech-bidi-20140603/
http://www.w3.org/TR/2014/REC-emotionml-20140522/
http://www.w3.org/TR/2014/WD-css-font-loading-3-20140522/
http://www.w3.org/TR/2014/NOTE-vcard-rdf-20140522/
http://www.w3.org/TR/2014/WD-css-gcpm-3-20140513/
http://www.w3.org/TR/2014/NOTE-file-system-api-20140424/
http://www.w3.org/TR/2014/NOTE-file-writer-api-20140424/
http://www.w3.org/TR/2014/WD-exi-primer-20140424/
http://www.w3.org/TR/2014/WD-indie-ui-requirements-20140422/
http://www.w3.org/TR/2014/WD-svg-integration-20140417/
http://www.w3.org/TR/2014/REC-xml-entity-names-20140410/
http://www.w3.org/TR/2014/NOTE-netinfo-api-20140410/
http://www.w3.org/TR/2014/REC-MathML3-20140410/
http://www.w3.org/TR/2014/REC-xquery-30-20140408/
http://www.w3.org/TR/2014/NOTE-xquery-30-requirements-20140408/
http://www.w3.org/TR/2014/NOTE-xquery-30-use-cases-20140408/
http://www.w3.org/TR/2014/REC-xpath-datamodel-30-20140408/
http://www.w3.org/TR/2014/REC-xpath-functions-30-20140408/
http://www.w3.org/TR/2014/NOTE-task-models-20140408/
http://www.w3.org/TR/2014/REC-xqueryx-30-20140408/
http://www.w3.org/TR/2014/NOTE-abstract-ui-20140408/
http://www.w3.org/TR/2014/REC-xpath-30-20140408/
http://www.w3.org/TR/2014/REC-xslt-xquery-serialization-30-20140408/
http://www.w3.org/TR/2014/NOTE-netinfo-usecases-20140403/
http://www.w3.org/TR/2014/WD-css-scoping-1-20140403/
http://www.w3.org/TR/2014/NOTE-emotion-voc-20140401/
http://www.w3.org/TR/2014/REC-wai-aria-implementation-20140320/
http://www.w3.org/TR/2014/CR-css-shapes-1-20140320/
http://www.w3.org/TR/2014/REC-wai-aria-20140320/
http://www.w3.org/TR/2014/REC-css-namespaces-3-20140320/
http://www.w3.org/TR/2014/NOTE-html-templates-20140318/
http://www.w3.org/TR/2014/NOTE-ldp-ucr-20140313/
http://www.w3.org/TR/2014/REC-mediaont-api-1.0-20140313/
http://www.w3.org/TR/2014/NOTE-rdf11-new-20140225/
http://www.w3.org/TR/2014/REC-trig-20140225/
http://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/
http://www.w3.org/TR/2014/REC-n-quads-20140225/
http://www.w3.org/TR/2014/NOTE-rdf11-testcases-20140225/
http://www.w3.org/TR/2014/REC-n-triples-20140225/
http://www.w3.org/TR/2014/REC-rdf-schema-20140225/
http://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/
http://www.w3.org/TR/2014/NOTE-rdf11-datasets-20140225/
http://www.w3.org/TR/2014/REC-rdf11-mt-20140225/
http://www.w3.org/TR/2014/REC-turtle-20140225/
http://www.w3.org/TR/2014/WD-capability-urls-20140218/
http://www.w3.org/TR/2014/REC-progress-events-20140211/
http://www.w3.org/TR/2014/REC-exi-20140211/
http://www.w3.org/TR/2014/NOTE-xml-proc-profiles-20140206/
http://www.w3.org/TR/2014/NOTE-html-ruby-extensions-20140204/
http://www.w3.org/TR/2014/REC-cors-20140116/
http://www.w3.org/TR/2014/REC-json-ld-api-20140116/
http://www.w3.org/TR/2014/REC-vocab-data-cube-20140116/
http://www.w3.org/TR/2014/REC-vocab-org-20140116/
http://www.w3.org/TR/2014/REC-json-ld-20140116/
http://www.w3.org/TR/2014/NOTE-contacts-api-20140114/
http://www.w3.org/TR/2014/NOTE-system-info-api-20140114/
http://www.w3.org/TR/2014/NOTE-messaging-api-20140114/
http://www.w3.org/TR/2014/NOTE-calendar-api-20140114/
http://www.w3.org/TR/2014/NOTE-gallery-20140114/
http://www.w3.org/TR/2014/NOTE-webintents-local-services-20140114/
http://www.w3.org/TR/2014/NOTE-ld-bp-20140109/
http://www.w3.org/TR/2014/NOTE-mbui-intro-20140107/
http://www.w3.org/TR/2014/NOTE-mbui-glossary-20140107/
http://www.w3.org/TR/2013/REC-performance-timeline-20131212/
http://www.w3.org/TR/2013/NOTE-respimg-usecases-20131107/
http://www.w3.org/TR/2013/REC-css-style-attr-20131107/
http://www.w3.org/TR/2013/NOTE-rdf-json-20131107/
http://www.w3.org/TR/2013/WD-xproc-v2-req-20131105/
http://www.w3.org/TR/2013/NOTE-touch-events-extensions-20131031/
http://www.w3.org/TR/2013/REC-its20-20131029/
http://www.w3.org/TR/2013/REC-page-visibility-20131029/
http://www.w3.org/TR/2013/NOTE-selectors-api2-20131017/
http://www.w3.org/TR/2013/REC-touch-events-20131010/
http://www.w3.org/TR/2013/NOTE-ruby-use-cases-20131008/
http://www.w3.org/TR/2013/NOTE-webcrypto-usecases-20130910/
http://www.w3.org/TR/2013/NOTE-wcag2ict-20130905/
http://www.w3.org/TR/2013/NOTE-vocab-adms-20130801/
http://www.w3.org/TR/2013/NOTE-vocab-data-cube-use-cases-20130801/
http://www.w3.org/TR/2013/NOTE-vocab-regorg-20130801/
http://www.w3.org/TR/2013/NOTE-ld-glossary-20130627/
http://www.w3.org/TR/2013/WD-emma11-20130627/
http://www.w3.org/TR/2013/NOTE-xml-c14n2-testcases-20130618/
http://www.w3.org/TR/2013/NOTE-widgets-updates-20130606/
http://www.w3.org/TR/2013/WD-urls-in-data-20130604/
http://www.w3.org/TR/2013/NOTE-html-main-element-20130528/
http://www.w3.org/TR/2013/NOTE-html-markup-20130528/
http://www.w3.org/TR/2013/NOTE-html5-author-20130528/
http://www.w3.org/TR/2013/NOTE-web-intents-20130523/
http://www.w3.org/TR/2013/NOTE-WebIDL-Java-20130514/
http://www.w3.org/TR/2013/NOTE-prov-sem-20130430/
http://www.w3.org/TR/2013/NOTE-prov-implementations-20130430/
http://www.w3.org/TR/2013/NOTE-prov-links-20130430/
http://www.w3.org/TR/2013/NOTE-prov-xml-20130430/
http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/
http://www.w3.org/TR/2013/REC-prov-n-20130430/
http://www.w3.org/TR/2013/REC-prov-constraints-20130430/
http://www.w3.org/TR/2013/REC-prov-o-20130430/
http://www.w3.org/TR/2013/NOTE-prov-dc-20130430/
http://www.w3.org/TR/2013/NOTE-prov-overview-20130430/
http://www.w3.org/TR/2013/NOTE-publishing-linking-20130430/
http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/
http://www.w3.org/TR/2013/NOTE-prov-primer-20130430/
http://www.w3.org/TR/2013/REC-prov-dm-20130430/
http://www.w3.org/TR/2013/NOTE-xmlsec-reqs2-20130411/
http://www.w3.org/TR/2013/NOTE-xmlsec-rngschema-20130411/
http://www.w3.org/TR/2013/REC-xmlenc-core1-20130411/
http://www.w3.org/TR/2013/NOTE-xmlenc-core1-explain-20130411/
http://www.w3.org/TR/2013/NOTE-xmlsec-algorithms-20130411/
http://www.w3.org/TR/2013/REC-xmldsig-properties-20130411/
http://www.w3.org/TR/2013/NOTE-xmldsig-bestpractices-20130411/
http://www.w3.org/TR/2013/NOTE-xml-c14n2-20130411/
http://www.w3.org/TR/2013/REC-xmldsig-core1-20130411/
http://www.w3.org/TR/2013/NOTE-xmlsec-generic-hybrid-20130411/
http://www.w3.org/TR/2013/NOTE-xmldsig-core1-explain-20130411/
http://www.w3.org/TR/2013/NOTE-xmlsec-reqs-20130411/
http://www.w3.org/TR/2013/NOTE-xmlenc-transform20-20130411/
http://www.w3.org/TR/2013/NOTE-xmldsig-xpath-20130411/
http://www.w3.org/TR/2013/CR-css3-conditional-20130404/
http://www.w3.org/TR/2013/REC-role-attribute-20130328/
http://www.w3.org/TR/2013/REC-sparql11-update-20130321/
http://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/
http://www.w3.org/TR/2013/REC-sparql11-protocol-20130321/
http://www.w3.org/TR/2013/REC-sparql11-entailment-20130321/
http://www.w3.org/TR/2013/REC-sparql11-query-20130321/
http://www.w3.org/TR/2013/REC-sparql11-federated-query-20130321/
http://www.w3.org/TR/2013/REC-sparql11-results-csv-tsv-20130321/
http://www.w3.org/TR/2013/REC-sparql11-http-rdf-update-20130321/
http://www.w3.org/TR/2013/REC-sparql11-results-json-20130321/
http://www.w3.org/TR/2013/REC-sparql11-service-description-20130321/
http://www.w3.org/TR/2013/REC-sparql11-overview-20130321/
http://www.w3.org/TR/2013/NOTE-css-print-20130314/
http://www.w3.org/TR/2013/REC-selectors-api-20130221/
http://www.w3.org/TR/2013/REC-rif-core-20130205/
http://www.w3.org/TR/2013/REC-rif-prd-20130205/
http://www.w3.org/TR/2013/REC-rif-dtb-20130205/
http://www.w3.org/TR/2013/NOTE-rif-primer-20130205/
http://www.w3.org/TR/2013/REC-rif-fld-20130205/
http://www.w3.org/TR/2013/REC-rif-rdf-owl-20130205/
http://www.w3.org/TR/2013/NOTE-rif-test-20130205/
http://www.w3.org/TR/2013/NOTE-ttml10-sdp-us-20130205/
http://www.w3.org/TR/2013/NOTE-rif-in-rdf-20130205/
http://www.w3.org/TR/2013/NOTE-rif-ucr-20130205/
http://www.w3.org/TR/2013/NOTE-rif-overview-20130205/
http://www.w3.org/TR/2013/NOTE-rif-xml-data-20130205/
http://www.w3.org/TR/2013/REC-rif-bld-20130205/
http://www.w3.org/TR/2013/NOTE-rif-owl-rl-20130205/
http://www.w3.org/TR/2013/NOTE-webaudio-usecases-20130129/
http://www.w3.org/TR/2012/REC-navigation-timing-20121217/
http://www.w3.org/TR/2012/REC-WOFF-20121213/
http://www.w3.org/TR/2012/REC-owl2-direct-semantics-20121211/
http://www.w3.org/TR/2012/REC-owl2-primer-20121211/
http://www.w3.org/TR/2012/REC-rdf-plain-literal-20121211/
http://www.w3.org/TR/2012/NOTE-owl2-dr-linear-20121211/
http://www.w3.org/TR/2012/REC-owl2-profiles-20121211/
http://www.w3.org/TR/2012/NOTE-owl2-manchester-syntax-20121211/
http://www.w3.org/TR/2012/REC-owl2-quick-reference-20121211/
http://www.w3.org/TR/2012/REC-owl2-rdf-based-semantics-20121211/
http://www.w3.org/TR/2012/REC-owl2-mapping-to-rdf-20121211/
http://www.w3.org/TR/2012/REC-owl2-syntax-20121211/
http://www.w3.org/TR/2012/REC-owl2-new-features-20121211/
http://www.w3.org/TR/2012/REC-owl2-xml-serialization-20121211/
http://www.w3.org/TR/2012/REC-owl2-conformance-20121211/
http://www.w3.org/TR/2012/REC-owl2-overview-20121211/
http://www.w3.org/TR/2012/NOTE-xmldsig-core1-interop-20121113/
http://www.w3.org/TR/2012/NOTE-xmlenc-core1-interop-20121113/
http://www.w3.org/TR/2012/WD-fragid-best-practices-20121025/
http://www.w3.org/TR/2012/REC-mmi-arch-20121025/
http://www.w3.org/TR/2012/NOTE-xml-model-20121009/
http://www.w3.org/TR/2012/NOTE-api-design-20121002/
http://www.w3.org/TR/2012/REC-r2rml-20120927/
http://www.w3.org/TR/2012/REC-rdb-direct-mapping-20120927/
http://www.w3.org/TR/2012/REC-media-frags-20120925/
http://www.w3.org/TR/2012/CR-websockets-20120920/
http://www.w3.org/TR/2012/WD-accessibility-metrics-report-20120830/
http://www.w3.org/TR/2012/NOTE-rdb2rdf-implementations-20120814/
http://www.w3.org/TR/2012/NOTE-rdb2rdf-test-cases-20120814/
http://www.w3.org/TR/2012/WD-xforms-xpath-20120807/
http://www.w3.org/TR/2012/WD-xforms20-20120807/
http://www.w3.org/TR/2012/NOTE-mmi-discovery-20120705/
http://www.w3.org/TR/2012/NOTE-rdf-api-20120705/
http://www.w3.org/TR/2012/NOTE-rdfa-api-20120705/
http://www.w3.org/TR/2012/NOTE-rdf-interfaces-20120705/
http://www.w3.org/TR/2012/NOTE-app-privacy-bp-20120703/
http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/
http://www.w3.org/TR/2012/NOTE-streamproc-20120531/
http://www.w3.org/TR/2012/NOTE-from-origin-20120529/
http://www.w3.org/TR/2012/NOTE-xbl-20120524/
http://www.w3.org/TR/2012/NOTE-ws-i18n-20120522/
http://www.w3.org/TR/2012/REC-xmlschema11-1-20120405/
http://www.w3.org/TR/2012/REC-xmlschema11-2-20120405/
http://www.w3.org/TR/2012/WD-vocab-people-20120405/
http://www.w3.org/TR/2012/NOTE-jlreq-20120403/
http://www.w3.org/TR/2012/NOTE-timesheets-20120328/
http://www.w3.org/TR/2012/NOTE-media-capture-api-20120322/
http://www.w3.org/TR/2012/NOTE-widgets-uri-20120313/
http://www.w3.org/TR/2012/NOTE-html-data-guide-20120308/
http://www.w3.org/TR/2012/WD-capture-scenarios-20120306/
http://www.w3.org/TR/2012/REC-soapjms-20120216/
http://www.w3.org/TR/2012/NOTE-xinclude-11-requirements-20120214/
http://www.w3.org/TR/2012/REC-mediaont-10-20120209/
http://www.w3.org/TR/2012/NOTE-hash-in-uri-20120209/
http://www.w3.org/TR/2012/NOTE-html-xml-tf-report-20120209/
http://www.w3.org/TR/2012/NOTE-mmi-interop-20120124/
http://www.w3.org/TR/2012/WD-xslfo20-20120117/
http://www.w3.org/TR/2011/WD-audioproc-20111215/
http://www.w3.org/TR/2011/REC-ws-event-descriptions-20111213/
http://www.w3.org/TR/2011/REC-ws-soap-assertions-20111213/
http://www.w3.org/TR/2011/REC-ws-metadata-exchange-20111213/
http://www.w3.org/TR/2011/REC-ws-eventing-20111213/
http://www.w3.org/TR/2011/REC-ws-transfer-20111213/
http://www.w3.org/TR/2011/REC-ws-fragment-20111213/
http://www.w3.org/TR/2011/REC-ws-enumeration-20111213/
http://www.w3.org/TR/2011/NOTE-hnreq-20111201/
http://www.w3.org/TR/2011/WD-media-frags-recipes-20111201/
http://www.w3.org/TR/2011/NOTE-hcls-orb-20111020/
http://www.w3.org/TR/2011/NOTE-widgets-reqs-20110927/
http://www.w3.org/TR/2011/REC-InkML-20110920/
http://www.w3.org/TR/2011/REC-SVG11-20110816/
http://www.w3.org/TR/2011/REC-ccxml-20110705/
http://www.w3.org/TR/2011/NOTE-timezone-20110705/
http://www.w3.org/TR/2011/NOTE-xsd-precisionDecimal-20110609/
http://www.w3.org/TR/2011/NOTE-xsd-unicode-blocknames-20110609/
http://www.w3.org/TR/2011/REC-CSS2-20110607/
http://www.w3.org/TR/2011/REC-mathml-for-css-20110607/
http://www.w3.org/TR/2011/WD-poi-core-20110512/
http://www.w3.org/TR/2011/NOTE-css-2010-20110512/
http://www.w3.org/TR/2011/NOTE-css-beijing-20110512/
http://www.w3.org/TR/2011/NOTE-DataCache-20110329/
http://www.w3.org/TR/2011/REC-xquery-update-10-20110317/
http://www.w3.org/TR/2011/REC-xpath-full-text-10-20110317/
http://www.w3.org/TR/2011/NOTE-dap-policy-reqs-20110317/
http://www.w3.org/TR/2011/NOTE-void-20110303/
http://www.w3.org/TR/2011/NOTE-mmi-mcbp-20110301/
http://www.w3.org/TR/2011/NOTE-xpath-full-text-10-use-cases-20110125/
http://www.w3.org/TR/2011/NOTE-xproc-template-20110125/
http://www.w3.org/TR/2011/NOTE-xquery-update-10-requirements-20110125/
http://www.w3.org/TR/2011/NOTE-xpath-full-text-10-requirements-20110125/
http://www.w3.org/TR/2011/NOTE-xquery-update-10-use-cases-20110125/
http://www.w3.org/TR/2010/NOTE-curie-20101216/
http://www.w3.org/TR/2010/NOTE-xml-events2-20101216/
http://www.w3.org/TR/2010/NOTE-xhtml2-20101216/
http://www.w3.org/TR/2010/WD-voicexml30-20101216/
http://www.w3.org/TR/2010/NOTE-xframes-20101216/
http://www.w3.org/TR/2010/NOTE-hlink-20101216/
http://www.w3.org/TR/2010/NOTE-xhtml-role-20101216/
http://www.w3.org/TR/2010/NOTE-xhtml-access-20101216/
http://www.w3.org/TR/2010/REC-xquery-semantics-20101214/
http://www.w3.org/TR/2010/REC-xpath-datamodel-20101214/
http://www.w3.org/TR/2010/REC-xpath-functions-20101214/
http://www.w3.org/TR/2010/REC-xqueryx-20101214/
http://www.w3.org/TR/2010/REC-xslt-xquery-serialization-20101214/
http://www.w3.org/TR/2010/REC-mwabp-20101214/
http://www.w3.org/TR/2010/REC-xquery-20101214/
http://www.w3.org/TR/2010/REC-xpath20-20101214/
http://www.w3.org/TR/2010/NOTE-webdatabase-20101118/
http://www.w3.org/TR/2010/REC-xml-stylesheet-20101028/
http://www.w3.org/TR/2010/NOTE-ct-guidelines-20101026/
http://www.w3.org/TR/2010/REC-speech-synthesis11-20100907/
http://www.w3.org/TR/2010/NOTE-WICD-20100819/
http://www.w3.org/TR/2010/NOTE-WICDFull-20100819/
http://www.w3.org/TR/2010/NOTE-WICDMobile-20100819/
http://www.w3.org/TR/2010/NOTE-CDR-20100819/
http://www.w3.org/TR/2010/REC-wsc-ui-20100812/
http://www.w3.org/TR/2010/NOTE-ws-resource-transfer-20100713/
http://www.w3.org/TR/2010/NOTE-DPF-20100629/
http://www.w3.org/TR/2010/NOTE-dap-privacy-reqs-20100629/
http://www.w3.org/TR/2010/NOTE-cselection-xaf-20100629/
http://www.w3.org/TR/2010/NOTE-dcontology-20100629/
http://www.w3.org/TR/2010/NOTE-dial-20100629/
http://www.w3.org/TR/2010/NOTE-cselection-20100629/
http://www.w3.org/TR/2010/NOTE-CCPP-struct-vocab2-20100629/
http://www.w3.org/TR/2010/NOTE-dial-primer-20100629/
http://www.w3.org/TR/2010/NOTE-cselection-primer-20100629/
http://www.w3.org/TR/2010/WD-xslt-21-requirements-20100610/
http://www.w3.org/TR/2010/WD-rdb2rdf-ucr-20100608/
http://www.w3.org/TR/2010/REC-xproc-20100511/
http://www.w3.org/TR/2010/REC-xlink11-20100506/
http://www.w3.org/TR/2010/REC-webcgm21-20100301/
http://www.w3.org/TR/2010/NOTE-xmldsig-simplify-20100204/
http://www.w3.org/TR/2010/NOTE-test-methodology-20100128/
http://www.w3.org/TR/2010/WD-sparql11-property-paths-20100126/
http://www.w3.org/TR/2010/WD-media-annot-reqs-20100121/
http://www.w3.org/TR/2010/CR-xmlschema-ref-20100119/
http://www.w3.org/TR/2009/WD-media-frags-reqs-20091217/
http://www.w3.org/TR/2009/NOTE-emma-usecases-20091215/
http://www.w3.org/TR/2009/REC-xml-names-20091208/
http://www.w3.org/TR/2009/NOTE-mw4d-roadmap-20091208/
http://www.w3.org/TR/2009/REC-PICS-labels-20091124/
http://www.w3.org/TR/2009/REC-PICS-services-20091124/
http://www.w3.org/TR/2009/REC-PICSRules-20091124/
http://www.w3.org/TR/2009/REC-DSig-label-20091124/
http://www.w3.org/TR/2009/NOTE-ct-landscape-20091027/
http://www.w3.org/TR/2009/NOTE-sml-xlink-ref-scheme-20091023/
http://www.w3.org/TR/2009/NOTE-mwbp-guidelines-20091020/
http://www.w3.org/TR/2009/NOTE-hcls-sioc-20091020/
http://www.w3.org/TR/2009/REC-xforms-20091020/
http://www.w3.org/TR/2009/NOTE-hcls-swan-20091020/
http://www.w3.org/TR/2009/NOTE-hcls-swansioc-20091020/
http://www.w3.org/TR/2009/NOTE-dap-api-reqs-20091015/
http://www.w3.org/TR/2009/WD-SVGColor12-20091001/
http://www.w3.org/TR/2009/WD-SVGColorPrimer12-20091001/
http://www.w3.org/TR/2009/NOTE-charreq-20090915/
http://www.w3.org/TR/2009/NOTE-powder-test-20090910/
http://www.w3.org/TR/2009/WD-gov-data-20090908/
http://www.w3.org/TR/2009/REC-powder-dr-20090901/
http://www.w3.org/TR/2009/REC-powder-formal-20090901/
http://www.w3.org/TR/2009/REC-powder-grouping-20090901/
http://www.w3.org/TR/2009/NOTE-powder-primer-20090901/
http://www.w3.org/TR/2009/NOTE-mobileOK-20090825/
http://www.w3.org/TR/2009/NOTE-skos-primer-20090818/
http://www.w3.org/TR/2009/REC-skos-reference-20090818/
http://www.w3.org/TR/2009/NOTE-skos-ucr-20090818/
http://www.w3.org/TR/2009/NOTE-xmlsec-derivedkeys-20090730/
http://www.w3.org/TR/2009/NOTE-mwbp-wcag-20090709/
http://www.w3.org/TR/2009/WD-sparql-features-20090702/
http://www.w3.org/TR/2009/NOTE-sml-epr-ref-scheme-20090630/
http://www.w3.org/TR/2009/WD-SVGParam-20090616/
http://www.w3.org/TR/2009/WD-SVGParamPrimer-20090616/
http://www.w3.org/TR/2009/REC-sml-20090512/
http://www.w3.org/TR/2009/REC-sml-if-20090512/
http://www.w3.org/TR/2009/NOTE-di-testing-20090512/
http://www.w3.org/TR/2009/NOTE-egov-improving-20090512/
http://www.w3.org/TR/2009/NOTE-xmlschema-patterns-20090505/
http://www.w3.org/TR/2009/NOTE-xmlschema-patterns-advanced-20090505/
http://www.w3.org/TR/2009/PER-xslt20-20090421/
http://www.w3.org/TR/2009/NOTE-UWA-personalization-roadmap-20090409/
http://www.w3.org/TR/2009/WD-exi-evaluation-20090407/
http://www.w3.org/TR/2009/WD-SVG-Transforms-20090320/
http://www.w3.org/TR/2009/REC-emma-20090210/
http://www.w3.org/TR/2009/REC-xmlbase-20090128/
http://www.w3.org/TR/2009/NOTE-xhtml-media-types-20090116/
http://www.w3.org/TR/2008/REC-SVGTiny12-20081222/
http://www.w3.org/TR/2008/REC-ElementTraversal-20081222/
http://www.w3.org/TR/2008/WD-XForms-for-HTML-20081219/
http://www.w3.org/TR/2008/REC-WCAG20-20081211/
http://www.w3.org/TR/2008/REC-mobileOK-basic10-tests-20081208/
http://www.w3.org/TR/2008/WD-dd-structures-20081205/
http://www.w3.org/TR/2008/REC-DDR-Simple-API-20081205/
http://www.w3.org/TR/2008/NOTE-cooluris-20081203/
http://www.w3.org/TR/2008/REC-SMIL3-20081201/
http://www.w3.org/TR/2008/REC-xml-20081126/
http://www.w3.org/TR/2008/NOTE-leiri-20081103/
http://www.w3.org/TR/2008/REC-pronunciation-lexicon-20081014/
http://www.w3.org/TR/2008/WD-exi-impacts-20080903/
http://www.w3.org/TR/2008/NOTE-swbp-vocab-pub-20080828/
http://www.w3.org/TR/2008/WD-vxml30reqs-20080808/
http://www.w3.org/TR/2008/REC-mobile-bp-20080729/
http://www.w3.org/TR/2008/NOTE-mmi-auth-20080702/
http://www.w3.org/TR/2008/NOTE-xmldsig2ed-tests-20080610/
http://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/
http://www.w3.org/TR/2008/NOTE-hcls-senselab-20080604/
http://www.w3.org/TR/2008/NOTE-hcls-kb-20080604/
http://www.w3.org/TR/2008/NOTE-offline-webapps-20080530/
http://www.w3.org/TR/2008/WD-wai-age-literature-20080514/
http://www.w3.org/TR/2008/REC-xml-c14n11-20080502/
http://www.w3.org/TR/2008/NOTE-ddr-core-vocabulary-20080414/
http://www.w3.org/TR/2008/WD-widgets-land-20080414/
http://www.w3.org/TR/2008/WD-xslfo20-req-20080326/
http://www.w3.org/TR/2008/NOTE-wsc-usecases-20080306/
http://www.w3.org/TR/2008/NOTE-xml-i18n-bp-20080213/
http://www.w3.org/TR/2008/WD-wai-aria-roadmap-20080204/
http://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/
http://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/
http://www.w3.org/TR/2007/WD-SVGPrintPrimer12-20071221/
http://www.w3.org/TR/2007/WD-SVGPrint12-20071221/
http://www.w3.org/TR/2007/WD-exi-best-practices-20071219/
http://www.w3.org/TR/2007/NOTE-DDR-requirements-20071217/
http://www.w3.org/TR/2007/WD-html-design-principles-20071126/
http://www.w3.org/TR/2007/NOTE-ws-policy-guidelines-20071112/
http://www.w3.org/TR/2007/NOTE-ws-policy-primer-20071112/
http://www.w3.org/TR/2007/NOTE-wsc-threats-20071101/
http://www.w3.org/TR/2007/NOTE-powder-use-cases-20071031/
http://www.w3.org/TR/2007/WD-UAAG20-requirements-20071031/
http://www.w3.org/TR/2007/NOTE-dd-ecosystem-20071031/
http://www.w3.org/TR/2007/NOTE-dd-landscape-20071031/
http://www.w3.org/TR/2007/WD-powder-voc-20070925/
http://www.w3.org/TR/2007/WD-powder-xsd-20070925/
http://www.w3.org/TR/2007/WD-soap12-mtom-policy-20070918/
http://www.w3.org/TR/2007/NOTE-dfaui-20070912/
http://www.w3.org/TR/2007/REC-grddl-tests-20070911/
http://www.w3.org/TR/2007/REC-grddl-20070911/
http://www.w3.org/TR/2007/REC-ws-addr-metadata-20070904/
http://www.w3.org/TR/2007/REC-ws-policy-20070904/
http://www.w3.org/TR/2007/REC-ws-policy-attach-20070904/
http://www.w3.org/TR/2007/REC-sawsdl-20070828/
http://www.w3.org/TR/2007/NOTE-sawsdl-guide-20070828/
http://www.w3.org/TR/2007/WD-exi-measurements-20070725/
http://www.w3.org/TR/2007/NOTE-wsdl11elementidentifiers-20070720/
http://www.w3.org/TR/2007/WD-xmlschema-guide2versioning-20070720/
http://www.w3.org/TR/2007/WD-xbl-primer-20070718/
http://www.w3.org/TR/2007/NOTE-soap12-part3-20070702/
http://www.w3.org/TR/2007/NOTE-grddl-primer-20070628/
http://www.w3.org/TR/2007/NOTE-wsdl20-rdf-20070626/
http://www.w3.org/TR/2007/NOTE-wsdl20-soap11-binding-20070626/
http://www.w3.org/TR/2007/REC-wsdl20-20070626/
http://www.w3.org/TR/2007/NOTE-wsdl20-additional-meps-20070626/
http://www.w3.org/TR/2007/REC-wsdl20-adjuncts-20070626/
http://www.w3.org/TR/2007/REC-wsdl20-primer-20070626/
http://www.w3.org/TR/2007/REC-voicexml21-20070619/
http://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/
http://www.w3.org/TR/2007/WD-ssml11reqs-20070611/
http://www.w3.org/TR/2007/WD-SVGFilterPrimer12-20070501/
http://www.w3.org/TR/2007/WD-SVGFilter12-20070501/
http://www.w3.org/TR/2007/REC-soap12-part0-20070427/
http://www.w3.org/TR/2007/REC-soap12-part1-20070427/
http://www.w3.org/TR/2007/REC-soap12-part2-20070427/
http://www.w3.org/TR/2007/REC-soap12-testcollection-20070427/
http://www.w3.org/TR/2007/NOTE-grddl-scenarios-20070406/
http://www.w3.org/TR/2007/REC-semantic-interpretation-20070405/
http://www.w3.org/TR/2007/REC-its-20070403/
http://www.w3.org/TR/2007/WD-xhtml-rdfa-scenarios-20070330/
http://www.w3.org/TR/2007/NOTE-xquery-use-cases-20070323/
http://www.w3.org/TR/2007/NOTE-xquery-requirements-20070323/
http://www.w3.org/TR/2007/REC-xslt20-20070123/
http://www.w3.org/TR/2006/NOTE-DSig-usage-20061220/
http://www.w3.org/TR/2006/NOTE-C14N-issues-20061220/
http://www.w3.org/TR/2006/REC-xsl11-20061205/
http://www.w3.org/TR/2006/NOTE-backplane-20061116/
http://www.w3.org/TR/2006/REC-xinclude-20061115/
http://www.w3.org/TR/2006/WD-rex-20061013/
http://www.w3.org/TR/2006/NOTE-mmi-suggestions-20060911/
http://www.w3.org/TR/2006/REC-xml11-20060816/
http://www.w3.org/TR/2006/REC-xml-names11-20060816/
http://www.w3.org/TR/2006/WD-SVGTiny12Reqs-20060810/
http://www.w3.org/TR/2006/WD-ws-cdl-10-primer-20060619/
http://www.w3.org/TR/2006/WD-wordnet-rdf-20060619/
http://www.w3.org/TR/2006/WD-itsreq-20060518/
http://www.w3.org/TR/2006/REC-ws-addr-core-20060509/
http://www.w3.org/TR/2006/REC-ws-addr-soap-20060509/
http://www.w3.org/TR/2006/NOTE-ttaf1-req-20060427/
http://www.w3.org/TR/2006/NOTE-wcag2-req-20060425/
http://www.w3.org/TR/2006/NOTE-mmi-dev-feedback-20060414/
http://www.w3.org/TR/2006/NOTE-swbp-n-aryRelations-20060412/
http://www.w3.org/TR/2006/WD-xproc-requirements-20060411/
http://www.w3.org/TR/2006/WD-namespaceState-20060329/
http://www.w3.org/TR/2006/WD-swbp-image-annotation-20060322/
http://www.w3.org/TR/2006/NOTE-soap11-ror-httpbinding-20060321/
http://www.w3.org/TR/2006/NOTE-di-dco-20060320/
http://www.w3.org/TR/2006/NOTE-swbp-xsch-datatypes-20060314/
http://www.w3.org/TR/2006/NOTE-sw-oosd-primer-20060309/
http://www.w3.org/TR/2006/NOTE-rdftm-survey-20060210/
http://www.w3.org/TR/2006/NOTE-rex-reqs-20060202/
http://www.w3.org/TR/2006/NOTE-arabic-math-20060131/
http://www.w3.org/TR/2005/NOTE-mobile-bp-scope-20051220/
http://www.w3.org/TR/2005/NOTE-xkms-pgp-20051219/
http://www.w3.org/TR/2005/WD-CDFReqs-20051219/
http://www.w3.org/TR/2005/NOTE-CDRReqs-20051219/
http://www.w3.org/TR/2005/REC-SMIL2-20051213/
http://www.w3.org/TR/2005/NOTE-xkms-wsdl-20051118/
http://www.w3.org/TR/2005/CR-ws-cdl-10-20051109/
http://www.w3.org/TR/2005/WD-sprot11-20051024/
http://www.w3.org/TR/2005/NOTE-rdfcal-20050929/
http://www.w3.org/TR/2005/NOTE-test-metadata-20050914/
http://www.w3.org/TR/2005/REC-xml-id-20050909/
http://www.w3.org/TR/2005/NOTE-qa-handbook-20050906/
http://www.w3.org/TR/2005/NOTE-spec-variability-20050831/
http://www.w3.org/TR/2005/NOTE-wsdl20-altschemalangs-20050817/
http://www.w3.org/TR/2005/REC-qaframe-spec-20050817/
http://www.w3.org/TR/2005/WD-sXBL-20050815/
http://www.w3.org/TR/2005/REC-xkms2-20050628/
http://www.w3.org/TR/2005/REC-xkms2-bindings-20050628/
http://www.w3.org/TR/2005/WD-xpath20req-20050603/
http://www.w3.org/TR/2005/NOTE-ssml-sayas-20050526/
http://www.w3.org/TR/2005/NOTE-swbp-specified-values-20050517/
http://www.w3.org/TR/2005/WD-swbp-thesaurus-pubguide-20050517/
http://www.w3.org/TR/2005/NOTE-xml11schema10-20050511/
http://www.w3.org/TR/2005/NOTE-xml-media-types-20050504/
http://www.w3.org/TR/2005/WD-SVG12-20050413/
http://www.w3.org/TR/2005/NOTE-swbp-classes-as-values-20050405/
http://www.w3.org/TR/2005/WD-xquery-xpath-parsing-20050404/
http://www.w3.org/TR/2005/NOTE-xbc-properties-20050331/
http://www.w3.org/TR/2005/NOTE-xbc-use-cases-20050331/
http://www.w3.org/TR/2005/NOTE-xbc-characterization-20050331/
http://www.w3.org/TR/2005/NOTE-xbc-measurement-20050331/
http://www.w3.org/TR/2005/WD-rdf-dawg-uc-20050325/
http://www.w3.org/TR/2005/REC-charmod-20050215/
http://www.w3.org/TR/2005/NOTE-xlink10-ext-20050127/
http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/
http://www.w3.org/TR/2005/REC-xop10-20050125/
http://www.w3.org/TR/2005/REC-soap12-rep-20050125/
http://www.w3.org/TR/2005/WD-di-gloss-20050118/
http://www.w3.org/TR/2004/REC-webarch-20041215/
http://www.w3.org/TR/2004/NOTE-ws-i18n-req-20041116/
http://www.w3.org/TR/2004/WD-lexicon-reqs-20041029/
http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/
http://www.w3.org/TR/2004/REC-xmlschema-0-20041028/
http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/
http://www.w3.org/TR/2004/REC-speech-synthesis-20040907/
http://www.w3.org/TR/2004/NOTE-xforms-11-req-20040831/
http://www.w3.org/TR/2004/WD-qaframe-test-20040820/
http://www.w3.org/TR/2004/NOTE-ws-i18n-scenarios-20040730/
http://www.w3.org/TR/2004/NOTE-soap12-af-20040608/
http://www.w3.org/TR/2004/NOTE-xopinc-FAQ-20040608/
http://www.w3.org/TR/2004/WD-soap12-os-ucr-20040608/
http://www.w3.org/TR/2004/NOTE-modality-interface-20040510/
http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/
http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/
http://www.w3.org/TR/2004/NOTE-proc-model-req-20040405/
http://www.w3.org/TR/2004/WD-ws-chor-model-20040324/
http://www.w3.org/TR/2004/REC-speech-grammar-20040316/
http://www.w3.org/TR/2004/REC-voicexml20-20040316/
http://www.w3.org/TR/2004/WD-ws-chor-reqs-20040311/
http://www.w3.org/TR/2004/NOTE-DOM-Level-3-Views-20040226/
http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226/
http://www.w3.org/TR/2004/NOTE-DOM-Requirements-20040226/
http://www.w3.org/TR/2004/NOTE-di-atdi-20040218/
http://www.w3.org/TR/2004/NOTE-wslc-20040211/
http://www.w3.org/TR/2004/NOTE-wsa-reqs-20040211/
http://www.w3.org/TR/2004/NOTE-ws-gloss-20040211/
http://www.w3.org/TR/2004/NOTE-ws-arch-20040211/
http://www.w3.org/TR/2004/NOTE-ws-arch-scenarios-20040211/
http://www.w3.org/TR/2004/REC-rdf-mt-20040210/
http://www.w3.org/TR/2004/REC-owl-ref-20040210/
http://www.w3.org/TR/2004/REC-owl-semantics-20040210/
http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/
http://www.w3.org/TR/2004/REC-rdf-primer-20040210/
http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/
http://www.w3.org/TR/2004/REC-owl-test-20040210/
http://www.w3.org/TR/2004/REC-webont-req-20040210/
http://www.w3.org/TR/2004/REC-owl-features-20040210/
http://www.w3.org/TR/2004/REC-owl-guide-20040210/
http://www.w3.org/TR/2004/REC-xml-infoset-20040204/
http://www.w3.org/TR/2004/REC-DOM-Level-3-Val-20040127/
http://www.w3.org/TR/2004/NOTE-owl-parsing-20040121/
http://www.w3.org/TR/2004/REC-CCPP-struct-vocab-20040115/
http://www.w3.org/TR/2003/WD-xsl11-req-20031217/
http://www.w3.org/TR/2003/NOTE-mathml-types-20031110/
http://www.w3.org/TR/2003/NOTE-mathml-units-20031110/
http://www.w3.org/TR/2003/REC-PNG-20031110/
http://www.w3.org/TR/2003/NOTE-mathml-bvar-20031110/
http://www.w3.org/TR/2003/REC-MathML2-20031021/
http://www.w3.org/TR/2003/REC-xml-events-20031014/
http://www.w3.org/TR/2003/CR-xforms-basic-20031014/
http://www.w3.org/TR/2003/NOTE-lbase-20031010/
http://www.w3.org/TR/2003/NOTE-soap12-n11n-20031008/
http://www.w3.org/TR/2003/NOTE-xml-fragid-20030912/
http://www.w3.org/TR/2003/NOTE-di-princ-20030901/
http://www.w3.org/TR/2003/NOTE-acdi-20030901/
http://www.w3.org/TR/2003/WD-xml-id-req-20030806/
http://www.w3.org/TR/2003/NOTE-xmlp-scenarios-20030730/
http://www.w3.org/TR/2003/NOTE-xmlp-reqs-20030728/
http://www.w3.org/TR/2003/NOTE-owl-xmlsyntax-20030611/
http://www.w3.org/TR/2003/WD-cpc-req-20030510/
http://www.w3.org/TR/2003/NOTE-mmi-framework-20030506/
http://www.w3.org/TR/2003/NOTE-xkms2-req-20030505
http://www.w3.org/TR/2003/WD-i18n-guide-framework-20030417/
http://www.w3.org/TR/2003/REC-xptr-element-20030325/
http://www.w3.org/TR/2003/REC-xptr-framework-20030325/
http://www.w3.org/TR/2003/REC-xptr-xmlns-20030325/
http://www.w3.org/TR/2003/WD-xmlp-am-20030220/
http://www.w3.org/TR/2003/WD-SVGPrintReqs-20030218/
http://www.w3.org/TR/2003/WD-wcag2-tech-req-20030207/
http://www.w3.org/TR/2003/NOTE-inkreqs-20030122/
http://www.w3.org/TR/2003/WD-xmlschema-11-req-20030121/
http://www.w3.org/TR/2003/REC-SVGMobile-20030114/
http://www.w3.org/TR/2003/NOTE-EMMAreqs-20030113/
http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/
http://www.w3.org/TR/2003/NOTE-mmi-reqs-20030108/
http://www.w3.org/TR/2002/WD-xptr-xpointer-20021219/
http://www.w3.org/TR/2002/REC-UAAG10-20021217/
http://www.w3.org/TR/2002/NOTE-UAAG10-TECHS-20021217/
http://www.w3.org/TR/2002/REC-xmlenc-decrypt-20021210
http://www.w3.org/TR/2002/NOTE-mmi-use-cases-20021204/
http://www.w3.org/TR/2002/NOTE-qaframe-ops-extech-20021202/
http://www.w3.org/TR/2002/REC-xmldsig-filter2-20021108/
http://www.w3.org/TR/2002/NOTE-ATAG10-TECHS-20021029/
http://www.w3.org/TR/2002/WD-ws-desc-reqs-20021028/
http://www.w3.org/TR/2002/WD-xag-20021003
http://www.w3.org/TR/2002/NOTE-xhtml1-schema-20020902/
http://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/
http://www.w3.org/TR/2002/WD-vbi-reqs-20020808/
http://www.w3.org/TR/2002/NOTE-DOM-Level-3-AS-20020725/
http://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/
http://www.w3.org/TR/2002/NOTE-soap12-email-20020703
http://www.w3.org/TR/2002/WD-ws-desc-usecases-20020604/
http://www.w3.org/TR/2002/WD-SVG2Reqs-20020422/
http://www.w3.org/TR/2002/WD-P3P-preferences-20020415/
http://www.w3.org/TR/2002/WD-xml-names11-req-20020403/
http://www.w3.org/TR/2002/WD-xkms2-xbulk-20020318/
http://www.w3.org/TR/2002/NOTE-xml-encryption-req-20020304
http://www.w3.org/TR/2002/NOTE-p3pdeployment-20020211
http://www.w3.org/TR/2002/NOTE-XHTMLplusSMIL-20020131/
http://www.w3.org/TR/2001/WD-ATAG-wombat-20011221/
http://www.w3.org/TR/2001/WD-CCPP-trust-20011220/
http://www.w3.org/TR/2001/NOTE-CCPP-COORDINATION-20011220/
http://www.w3.org/TR/2001/NOTE-CX-20011211
http://www.w3.org/TR/2001/REC-xsl-20011015/
http://www.w3.org/TR/2001/WD-xmlschema-formal-20010925/
http://www.w3.org/TR/2001/WD-xml-blueberry-req-20010921
http://www.w3.org/TR/2001/NOTE-uri-clarification-20010921/
http://www.w3.org/TR/2001/REC-smil-animation-20010904/
http://www.w3.org/TR/2001/WD-xslt11-20010824/
http://www.w3.org/TR/2001/WD-SVGMobileReqs-20010803
http://www.w3.org/TR/2001/REC-xlink-20010627/
http://www.w3.org/TR/2001/NOTE-xml-link-style-20010605/
http://www.w3.org/TR/2001/REC-ruby-20010531/
http://www.w3.org/TR/2001/WD-call-control-reqs-20010413/
http://www.w3.org/TR/2001/NOTE-xml-infoset-rdfs-20010406
http://www.w3.org/TR/2001/WD-xhtml-forms-req-20010404
http://www.w3.org/TR/2001/REC-xml-c14n-20010315
http://www.w3.org/TR/2001/WD-xslt20req-20010214
http://www.w3.org/TR/2001/CR-xml-fragment-20010212
http://www.w3.org/TR/2001/WD-ngram-spec-20010103/
http://www.w3.org/TR/2000/WD-voice-intro-20001204/
http://www.w3.org/TR/2000/WD-nl-spec-20001120/
http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/
http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/
http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/
http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/
http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/
http://www.w3.org/TR/2000/NOTE-xhtml-roadmap-20001108/
http://www.w3.org/TR/2000/NOTE-WCAG10-CORE-TECHS-20001106/
http://www.w3.org/TR/2000/NOTE-WCAG10-CSS-TECHS-20001106/
http://www.w3.org/TR/2000/NOTE-WCAG10-HTML-TECHS-20001106/
http://www.w3.org/TR/2000/NOTE-WCAG10-TECHS-20001106/
http://www.w3.org/TR/2000/NOTE-xlink2rdf-20000929/
http://www.w3.org/TR/2000/WD-xslt11req-20000825
http://www.w3.org/TR/2000/WD-CCPP-ta-20000721/
http://www.w3.org/TR/2000/WD-CCPP-ra-20000721/
http://www.w3.org/TR/2000/WD-multimodal-reqs-20000710
http://www.w3.org/TR/2000/WD-reusable-dialog-reqs-20000426
http://www.w3.org/TR/2000/WD-AERT-20000426
http://www.w3.org/TR/2000/WD-smil-boston-dom-20000225/
http://www.w3.org/TR/2000/REC-ATAG10-20000203/
http://www.w3.org/TR/2000/NOTE-EC-related-activities-20000107
http://www.w3.org/TR/2000/WD-xhtml-building-20000105/
http://www.w3.org/TR/1999/WD-voice-nlu-reqs-19991223/
http://www.w3.org/TR/1999/WD-voice-tts-reqs-19991223/
http://www.w3.org/TR/1999/WD-voice-architecture-19991223/
http://www.w3.org/TR/1999/WD-voice-dialog-reqs-19991223/
http://www.w3.org/TR/1999/WD-voice-grammar-reqs-19991223/
http://www.w3.org/TR/1999/REC-xslt-19991116
http://www.w3.org/TR/1999/REC-xpath-19991116/
http://www.w3.org/TR/1999/NOTE-TVWeb-URI-Requirements-19991021
http://www.w3.org/TR/1999/WD-xmldsig-requirements-19991014
http://www.w3.org/TR/1999/NOTE-schema-arch-19991007
http://www.w3.org/TR/1999/WD-xhtml-prof-req-19990906/
http://www.w3.org/TR/1999/WD-positioning-19990902
http://www.w3.org/TR/1999/WD-acss-19990902
http://www.w3.org/TR/1999/WD-print-19990902
http://www.w3.org/TR/1999/WD-Micropayment-Markup-19990825/
http://www.w3.org/1999/07/NOTE-CCPP-19990727/
http://www.w3.org/1999/07/REC-MathML-19990707/
http://www.w3.org/TR/1999/NOTE-xml-canonical-req-19990605
http://www.w3.org/1999/05/WCA-terms/01
http://www.w3.org/TR/1999/WAI-WEBCONTENT-19990505/
http://www.w3.org/TR/1999/NOTE-WCA-19990319/
http://www.w3.org/TR/1999/NOTE-html40-mobile-19990315/
http://www.w3.org/TR/1999/NOTE-xptr-infoset-liaison-19990224
http://www.w3.org/TR/1999/NOTE-xlink-req-19990224/
http://www.w3.org/TR/1999/NOTE-xptr-req-19990224
http://www.w3.org/TR/1999/NOTE-SYMM-modules-19990223
http://www.w3.org/TR/1999/NOTE-xml-infoset-req-19990218
http://www.w3.org/TR/1999/NOTE-xml-schema-req-19990215
http://www.w3.org/TR/1998/NOTE-CSS-potential-19981210
http://www.w3.org/TR/1998/NOTE-XML-FRAG-REQ-19981123
http://www.w3.org/TR/1998/WD-SVGReq-19981029
http://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/
http://www.w3.org/TR/1998/WD-HTTP-NG-architecture-19980710/
http://www.w3.org/TR/1998/WD-mux-19980710
http://www.w3.org/TR/1998/WD-HTTP-NG-interfaces-19980710/
http://www.w3.org/TR/1998/NOTE-HTTP-NG-testbed-19980710/
http://www.w3.org/TR/1998/WD-HTTP-NG-wire-19980710/
http://www.w3.org/TR/1998/REC-smil-19980615/
http://www.w3.org/TR/1998/NOTE-xh-19980511
http://www.w3.org/TR/1998/WD-XSLReq-19980511
http://www.w3.org/TR/1998/WD-HTTP-NG-goals-19980327
http://www.w3.org/TR/1998/NOTE-P3P10-Protocols-19980324
http://www.w3.org/TR/1998/NOTE-html-lan-19980313
http://www.w3.org/TR/1998/NOTE-xlink-principles-19980303
http://www.w3.org/TR/1998/NOTE-voice-0128
http://www.w3.org/TR/NOTE-sgml-xml-971215
http://www.w3.org/TR/WD-http-pep-971121
http://www.w3.org/TR/WD-P3P-arch-971022
http://www.w3.org/TR/WD-P3P-grammar-971014
http://www.w3.org/TR/NOTE-cgm-970618
http://www.w3.org/TR/WD-DSIG-label-arch-970610
http://www.w3.org/TR/WD-jepi-uppflow-970106
http://www.w3.org/TR/NOTE-imagemap
http://www.w3.org/Search/9605-Indexing-Workshop/ReportOutcomes/S6Group2
http://www.w3.org/TR/WD-ilu-requestor-960307