├── .gitattributes ├── .github └── workflows │ └── auto-publish.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── acknowledgements ├── ag-wg-active.html ├── archive │ ├── ag-wg-active-2020.html │ ├── funders-2020.html │ ├── key-contributors-2021.html │ ├── research-partners-2020.html │ └── silver-active-2020.html ├── funders.html ├── key-contributors.html ├── research-partners.html └── silver-active.html ├── assets ├── css │ └── main.css └── logos │ ├── W3C-CG-logo.png │ ├── ag.png │ └── read.me ├── examples └── outcome-implementation-procedures │ ├── example1.html │ ├── example2.html │ ├── example3.html │ └── example4.html ├── explainer ├── guidelines.css ├── guidelines.js ├── index.html └── respec-config.js ├── functional-needs └── index.html ├── guidelines ├── guidelines.css ├── guidelines.js ├── img │ ├── category.svg │ ├── error.svg │ ├── guideline.svg │ ├── how-to.png │ ├── how-to.svg │ ├── json.svg │ ├── method.png │ ├── method.svg │ ├── outcome.svg │ ├── rating.svg │ ├── silver-sticker.svg │ ├── structure-core.png │ ├── structure-core.svg │ ├── structure-scoring.png │ ├── structure-scoring.svg │ └── summary.svg ├── index.html ├── respec-config.js ├── template │ └── guideline-template.html └── wcag3.js ├── how-tos ├── README.md ├── captions │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ └── resources.html ├── changes-of-natural-language │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ ├── resources.html │ └── write.html ├── clear-words │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ └── resources.html ├── error-prevention │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ └── resources.html ├── structured-content │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ └── resources.html ├── template │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ └── resources.html └── text-alternatives │ ├── design.html │ ├── develop.html │ ├── examples.html │ ├── get-started.html │ ├── index.html │ ├── plan.html │ └── resources.html ├── index.html ├── methods ├── audio-metadata │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── caption-reflow │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── clear-words │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── decorative-images │ ├── background.html │ ├── examples.html │ ├── glossary.html │ ├── index.html │ ├── introduction.html │ └── tests.html ├── functional-images │ ├── description.html │ ├── examples.html │ ├── img │ │ ├── SubmitButton.fw.png │ │ ├── W3ClinkedLogo.png │ │ ├── W3CwithLinkpng.png │ │ ├── buttonBar.png │ │ ├── co.gif │ │ ├── opensInNewWindow.png │ │ ├── pip.gif │ │ ├── preview.png │ │ ├── print-f32e9bb4.png │ │ ├── print.png │ │ ├── searchButton.png │ │ ├── searchIcon.png │ │ ├── searchbutton-6b82a8b1.png │ │ └── w3c-796023c4.png │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── headings-in-html │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── images-of-text │ ├── description.html │ ├── examples.html │ ├── img │ │ ├── bad-top-text-d37f250b.png │ │ ├── drop_o.jpg │ │ ├── euro.png │ │ ├── fancyO.png │ │ ├── gethappy.png │ │ ├── newsletter.gif │ │ ├── repeat1-90c4c517.png │ │ ├── thebigsale.png │ │ └── wai-75196dbb.png │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── informative-images │ ├── description.html │ ├── examples.html │ ├── img │ │ ├── cap.png │ │ ├── dog.png │ │ ├── family.png │ │ ├── fax.png │ │ ├── html5logo.png │ │ ├── network.png │ │ ├── pdfdocument.png │ │ ├── phone.png │ │ ├── piechart.png │ │ └── worddocument.png │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── instruction-for-completing-task │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── instructions-available-at-input │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── relevant-headings │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── required-inputs-indicated │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── template │ ├── background.html │ ├── examples.html │ ├── glossary.html │ ├── index.html │ ├── introduction.html │ └── tests.html ├── text-alternative-editable │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── text-equiv │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html └── visually-distinct │ ├── description.html │ ├── examples.html │ ├── index.html │ ├── intro.html │ ├── resources.html │ └── tests.html ├── outcomes ├── common-clear-words.html ├── conveys-hierarchy-with-semantic-structure.html ├── conveys-information-about-the-sound.html ├── headings-organize-content.html ├── input-instructions-provided.html ├── template.html ├── text-alternative-available-UCG.html ├── text-alternative-available.html ├── translates-speech-and-non-speech-audio.html └── uses-visually-distinct-headings.html ├── prototypes ├── ConformancePrototype │ ├── conformance-diagram.png │ ├── index.html │ ├── readme.md │ └── respec-config.js ├── EdDraftPrototype │ ├── conformance-diagram.png │ └── index.html ├── FlavorPrototype │ ├── .gitignore │ ├── 1-1-1 │ │ ├── aria.html │ │ ├── index.html │ │ ├── pdf.html │ │ ├── silverlight.html │ │ └── staticWeb.html │ ├── 1-1-2 │ │ ├── index.html │ │ └── silverlight.html │ ├── 2-1-2 │ │ ├── index.html │ │ ├── pdf.html │ │ ├── silverlight.html │ │ └── staticWeb.html │ ├── _includes │ │ ├── foot.html │ │ ├── guideline_head.html │ │ ├── head.html │ │ ├── sc_foot.html │ │ └── sc_head.html │ ├── _layouts │ │ ├── default.html │ │ ├── guideline.html │ │ └── successCriteria.html │ ├── assets │ │ └── css │ │ │ ├── components.css │ │ │ ├── flavor-colors.css │ │ │ └── master.css │ ├── componentExamples.html │ ├── home.html │ ├── index.html │ ├── readme.md │ └── site │ │ ├── 1-1-1 │ │ ├── aria.html │ │ ├── index.html │ │ ├── pdf.html │ │ ├── silverlight.html │ │ └── staticWeb.html │ │ ├── 1-1-2 │ │ ├── index.html │ │ └── silverlight.html │ │ ├── 2-1-2 │ │ ├── index.html │ │ ├── pdf.html │ │ ├── silverlight.html │ │ └── staticWeb.html │ │ ├── assets │ │ └── css │ │ │ ├── components.css │ │ │ ├── flavor-colors.css │ │ │ └── master.css │ │ ├── componentExamples.html │ │ ├── home.html │ │ ├── index.html │ │ └── readme.md ├── PlainLanguage │ ├── .gitignore │ ├── 1-3-3 │ │ ├── alt1.html │ │ ├── alt2.html │ │ └── index.html │ ├── 2-2-2 │ │ ├── alt1.html │ │ ├── alt2.html │ │ └── index.html │ ├── 2-4-10 │ │ ├── alt1.html │ │ ├── alt2.html │ │ ├── alt3.html │ │ ├── alt4.html │ │ └── index.html │ ├── 4-1-2 │ │ ├── alt1.html │ │ ├── alt2.html │ │ └── index.html │ ├── _includes │ │ ├── foot.html │ │ ├── guideline_head.html │ │ ├── head.html │ │ ├── sc_foot.html │ │ └── sc_head.html │ ├── _layouts │ │ ├── default.html │ │ ├── guideline.html │ │ └── successCriteria.html │ ├── _site │ │ ├── 1-3-3 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ └── index.html │ │ ├── 2-2-2 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ └── index.html │ │ ├── 2-4-10 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ ├── alt3.html │ │ │ ├── alt4.html │ │ │ └── index.html │ │ ├── 4-1-2 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ └── index.html │ │ ├── assets │ │ │ └── css │ │ │ │ ├── components.css │ │ │ │ ├── flavor-colors.css │ │ │ │ └── master.css │ │ ├── componentExamples.html │ │ ├── home.html │ │ ├── index.html │ │ ├── readme.md │ │ └── site │ │ │ ├── 1-3-3 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ └── index.html │ │ │ ├── 2-2-2 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ └── index.html │ │ │ ├── 2-4-10 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ ├── alt3.html │ │ │ ├── alt4.html │ │ │ └── index.html │ │ │ ├── 4-1-2 │ │ │ ├── alt1.html │ │ │ ├── alt2.html │ │ │ └── index.html │ │ │ ├── assets │ │ │ └── css │ │ │ │ ├── components.css │ │ │ │ ├── flavor-colors.css │ │ │ │ └── master.css │ │ │ ├── componentExamples.html │ │ │ ├── home.html │ │ │ ├── index.html │ │ │ └── readme.md │ ├── assets │ │ └── css │ │ │ ├── components.css │ │ │ ├── flavor-colors.css │ │ │ └── master.css │ ├── componentExamples.html │ ├── home.html │ ├── index.html │ ├── readme.md │ └── site │ │ ├── 1-3-3 │ │ ├── alt1.html │ │ ├── alt2.html │ │ └── index.html │ │ ├── 2-2-2 │ │ ├── alt1.html │ │ ├── alt2.html │ │ └── index.html │ │ ├── 2-4-10 │ │ ├── alt1.html │ │ ├── alt2.html │ │ ├── alt3.html │ │ ├── alt4.html │ │ └── index.html │ │ ├── 4-1-2 │ │ ├── alt1.html │ │ ├── alt2.html │ │ └── index.html │ │ ├── assets │ │ └── css │ │ │ ├── components.css │ │ │ ├── flavor-colors.css │ │ │ └── master.css │ │ ├── componentExamples.html │ │ ├── home.html │ │ ├── index.html │ │ └── readme.md ├── PlainLanguage2 │ ├── ClearWords.html │ ├── SectionHeading.html │ ├── index.html │ ├── magicsauce.js │ ├── readme.md │ ├── style.css │ ├── template.html │ ├── visualContrast.html │ └── warning.css ├── TestingDummyExamples │ ├── disclosure-login │ │ └── inaccessible │ │ │ └── index.html │ ├── global-styles │ │ ├── components.css │ │ ├── styles.css │ │ ├── typography.css │ │ ├── utilities.css │ │ └── variables.css │ ├── images │ │ └── login-path │ │ │ └── grand-memory-button.png │ ├── index.html │ └── login-separate-pages │ │ ├── contact-us.html │ │ ├── forgot-password.html │ │ ├── index.html │ │ ├── registration-form.html │ │ ├── styles │ │ ├── layouts.css │ │ ├── login-form.css │ │ └── styles.css │ │ └── success.html ├── index.html ├── prototype_template_readme.md └── readme.md ├── requirements ├── index.html └── respec-config.js ├── subgroups └── xr │ ├── captioning │ ├── functional-outcomes.html │ ├── index.html │ ├── user-requirements.html │ ├── what-is-captioning.html │ └── xr-captioning-user-needs.html │ ├── index.html │ ├── minutes.html │ └── xr-fpwd-info.html ├── use-cases ├── index.html ├── respec-config.js └── use-cases-breakdown.html └── w3c.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/README.md -------------------------------------------------------------------------------- /acknowledgements/ag-wg-active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/ag-wg-active.html -------------------------------------------------------------------------------- /acknowledgements/archive/ag-wg-active-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/archive/ag-wg-active-2020.html -------------------------------------------------------------------------------- /acknowledgements/archive/funders-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/archive/funders-2020.html -------------------------------------------------------------------------------- /acknowledgements/archive/key-contributors-2021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/archive/key-contributors-2021.html -------------------------------------------------------------------------------- /acknowledgements/archive/research-partners-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/archive/research-partners-2020.html -------------------------------------------------------------------------------- /acknowledgements/archive/silver-active-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/archive/silver-active-2020.html -------------------------------------------------------------------------------- /acknowledgements/funders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/funders.html -------------------------------------------------------------------------------- /acknowledgements/key-contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/key-contributors.html -------------------------------------------------------------------------------- /acknowledgements/research-partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/research-partners.html -------------------------------------------------------------------------------- /acknowledgements/silver-active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/acknowledgements/silver-active.html -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/logos/W3C-CG-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/assets/logos/W3C-CG-logo.png -------------------------------------------------------------------------------- /assets/logos/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/assets/logos/ag.png -------------------------------------------------------------------------------- /assets/logos/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/assets/logos/read.me -------------------------------------------------------------------------------- /examples/outcome-implementation-procedures/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/examples/outcome-implementation-procedures/example1.html -------------------------------------------------------------------------------- /examples/outcome-implementation-procedures/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/examples/outcome-implementation-procedures/example2.html -------------------------------------------------------------------------------- /examples/outcome-implementation-procedures/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/examples/outcome-implementation-procedures/example3.html -------------------------------------------------------------------------------- /examples/outcome-implementation-procedures/example4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/examples/outcome-implementation-procedures/example4.html -------------------------------------------------------------------------------- /explainer/guidelines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/explainer/guidelines.css -------------------------------------------------------------------------------- /explainer/guidelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/explainer/guidelines.js -------------------------------------------------------------------------------- /explainer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/explainer/index.html -------------------------------------------------------------------------------- /explainer/respec-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/explainer/respec-config.js -------------------------------------------------------------------------------- /functional-needs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/functional-needs/index.html -------------------------------------------------------------------------------- /guidelines/guidelines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/guidelines.css -------------------------------------------------------------------------------- /guidelines/guidelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/guidelines.js -------------------------------------------------------------------------------- /guidelines/img/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/category.svg -------------------------------------------------------------------------------- /guidelines/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/error.svg -------------------------------------------------------------------------------- /guidelines/img/guideline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/guideline.svg -------------------------------------------------------------------------------- /guidelines/img/how-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/how-to.png -------------------------------------------------------------------------------- /guidelines/img/how-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/how-to.svg -------------------------------------------------------------------------------- /guidelines/img/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/json.svg -------------------------------------------------------------------------------- /guidelines/img/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/method.png -------------------------------------------------------------------------------- /guidelines/img/method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/method.svg -------------------------------------------------------------------------------- /guidelines/img/outcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/outcome.svg -------------------------------------------------------------------------------- /guidelines/img/rating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/rating.svg -------------------------------------------------------------------------------- /guidelines/img/silver-sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/silver-sticker.svg -------------------------------------------------------------------------------- /guidelines/img/structure-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/structure-core.png -------------------------------------------------------------------------------- /guidelines/img/structure-core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/structure-core.svg -------------------------------------------------------------------------------- /guidelines/img/structure-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/structure-scoring.png -------------------------------------------------------------------------------- /guidelines/img/structure-scoring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/structure-scoring.svg -------------------------------------------------------------------------------- /guidelines/img/summary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/img/summary.svg -------------------------------------------------------------------------------- /guidelines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/index.html -------------------------------------------------------------------------------- /guidelines/respec-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/respec-config.js -------------------------------------------------------------------------------- /guidelines/template/guideline-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/template/guideline-template.html -------------------------------------------------------------------------------- /guidelines/wcag3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/guidelines/wcag3.js -------------------------------------------------------------------------------- /how-tos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/README.md -------------------------------------------------------------------------------- /how-tos/captions/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/design.html -------------------------------------------------------------------------------- /how-tos/captions/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/develop.html -------------------------------------------------------------------------------- /how-tos/captions/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/examples.html -------------------------------------------------------------------------------- /how-tos/captions/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/get-started.html -------------------------------------------------------------------------------- /how-tos/captions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/index.html -------------------------------------------------------------------------------- /how-tos/captions/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/plan.html -------------------------------------------------------------------------------- /how-tos/captions/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/captions/resources.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/design.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/develop.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/examples.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/get-started.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/index.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/plan.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/resources.html -------------------------------------------------------------------------------- /how-tos/changes-of-natural-language/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/changes-of-natural-language/write.html -------------------------------------------------------------------------------- /how-tos/clear-words/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/design.html -------------------------------------------------------------------------------- /how-tos/clear-words/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/develop.html -------------------------------------------------------------------------------- /how-tos/clear-words/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/examples.html -------------------------------------------------------------------------------- /how-tos/clear-words/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/get-started.html -------------------------------------------------------------------------------- /how-tos/clear-words/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/index.html -------------------------------------------------------------------------------- /how-tos/clear-words/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/plan.html -------------------------------------------------------------------------------- /how-tos/clear-words/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/clear-words/resources.html -------------------------------------------------------------------------------- /how-tos/error-prevention/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/design.html -------------------------------------------------------------------------------- /how-tos/error-prevention/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/develop.html -------------------------------------------------------------------------------- /how-tos/error-prevention/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/examples.html -------------------------------------------------------------------------------- /how-tos/error-prevention/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/get-started.html -------------------------------------------------------------------------------- /how-tos/error-prevention/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/index.html -------------------------------------------------------------------------------- /how-tos/error-prevention/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/plan.html -------------------------------------------------------------------------------- /how-tos/error-prevention/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/error-prevention/resources.html -------------------------------------------------------------------------------- /how-tos/structured-content/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/design.html -------------------------------------------------------------------------------- /how-tos/structured-content/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/develop.html -------------------------------------------------------------------------------- /how-tos/structured-content/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/examples.html -------------------------------------------------------------------------------- /how-tos/structured-content/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/get-started.html -------------------------------------------------------------------------------- /how-tos/structured-content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/index.html -------------------------------------------------------------------------------- /how-tos/structured-content/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/plan.html -------------------------------------------------------------------------------- /how-tos/structured-content/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/structured-content/resources.html -------------------------------------------------------------------------------- /how-tos/template/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/design.html -------------------------------------------------------------------------------- /how-tos/template/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/develop.html -------------------------------------------------------------------------------- /how-tos/template/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/examples.html -------------------------------------------------------------------------------- /how-tos/template/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/get-started.html -------------------------------------------------------------------------------- /how-tos/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/index.html -------------------------------------------------------------------------------- /how-tos/template/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/plan.html -------------------------------------------------------------------------------- /how-tos/template/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/template/resources.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/design.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/develop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/develop.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/examples.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/get-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/get-started.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/index.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/plan.html -------------------------------------------------------------------------------- /how-tos/text-alternatives/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/how-tos/text-alternatives/resources.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/index.html -------------------------------------------------------------------------------- /methods/audio-metadata/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/audio-metadata/description.html -------------------------------------------------------------------------------- /methods/audio-metadata/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/audio-metadata/examples.html -------------------------------------------------------------------------------- /methods/audio-metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/audio-metadata/index.html -------------------------------------------------------------------------------- /methods/audio-metadata/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/audio-metadata/intro.html -------------------------------------------------------------------------------- /methods/audio-metadata/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/audio-metadata/resources.html -------------------------------------------------------------------------------- /methods/audio-metadata/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/audio-metadata/tests.html -------------------------------------------------------------------------------- /methods/caption-reflow/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/caption-reflow/description.html -------------------------------------------------------------------------------- /methods/caption-reflow/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/caption-reflow/examples.html -------------------------------------------------------------------------------- /methods/caption-reflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/caption-reflow/index.html -------------------------------------------------------------------------------- /methods/caption-reflow/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/caption-reflow/intro.html -------------------------------------------------------------------------------- /methods/caption-reflow/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/caption-reflow/resources.html -------------------------------------------------------------------------------- /methods/caption-reflow/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/caption-reflow/tests.html -------------------------------------------------------------------------------- /methods/clear-words/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/clear-words/description.html -------------------------------------------------------------------------------- /methods/clear-words/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/clear-words/examples.html -------------------------------------------------------------------------------- /methods/clear-words/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/clear-words/index.html -------------------------------------------------------------------------------- /methods/clear-words/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/clear-words/intro.html -------------------------------------------------------------------------------- /methods/clear-words/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/clear-words/resources.html -------------------------------------------------------------------------------- /methods/clear-words/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/clear-words/tests.html -------------------------------------------------------------------------------- /methods/decorative-images/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/decorative-images/background.html -------------------------------------------------------------------------------- /methods/decorative-images/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/decorative-images/examples.html -------------------------------------------------------------------------------- /methods/decorative-images/glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/decorative-images/glossary.html -------------------------------------------------------------------------------- /methods/decorative-images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/decorative-images/index.html -------------------------------------------------------------------------------- /methods/decorative-images/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/decorative-images/introduction.html -------------------------------------------------------------------------------- /methods/decorative-images/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/decorative-images/tests.html -------------------------------------------------------------------------------- /methods/functional-images/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/description.html -------------------------------------------------------------------------------- /methods/functional-images/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/examples.html -------------------------------------------------------------------------------- /methods/functional-images/img/SubmitButton.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/SubmitButton.fw.png -------------------------------------------------------------------------------- /methods/functional-images/img/W3ClinkedLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/W3ClinkedLogo.png -------------------------------------------------------------------------------- /methods/functional-images/img/W3CwithLinkpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/W3CwithLinkpng.png -------------------------------------------------------------------------------- /methods/functional-images/img/buttonBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/buttonBar.png -------------------------------------------------------------------------------- /methods/functional-images/img/co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/co.gif -------------------------------------------------------------------------------- /methods/functional-images/img/opensInNewWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/opensInNewWindow.png -------------------------------------------------------------------------------- /methods/functional-images/img/pip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/pip.gif -------------------------------------------------------------------------------- /methods/functional-images/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/preview.png -------------------------------------------------------------------------------- /methods/functional-images/img/print-f32e9bb4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/print-f32e9bb4.png -------------------------------------------------------------------------------- /methods/functional-images/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/print.png -------------------------------------------------------------------------------- /methods/functional-images/img/searchButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/searchButton.png -------------------------------------------------------------------------------- /methods/functional-images/img/searchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/searchIcon.png -------------------------------------------------------------------------------- /methods/functional-images/img/searchbutton-6b82a8b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/searchbutton-6b82a8b1.png -------------------------------------------------------------------------------- /methods/functional-images/img/w3c-796023c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/img/w3c-796023c4.png -------------------------------------------------------------------------------- /methods/functional-images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/index.html -------------------------------------------------------------------------------- /methods/functional-images/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/intro.html -------------------------------------------------------------------------------- /methods/functional-images/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/resources.html -------------------------------------------------------------------------------- /methods/functional-images/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/functional-images/tests.html -------------------------------------------------------------------------------- /methods/headings-in-html/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/headings-in-html/description.html -------------------------------------------------------------------------------- /methods/headings-in-html/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/headings-in-html/examples.html -------------------------------------------------------------------------------- /methods/headings-in-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/headings-in-html/index.html -------------------------------------------------------------------------------- /methods/headings-in-html/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/headings-in-html/intro.html -------------------------------------------------------------------------------- /methods/headings-in-html/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/headings-in-html/resources.html -------------------------------------------------------------------------------- /methods/headings-in-html/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/headings-in-html/tests.html -------------------------------------------------------------------------------- /methods/images-of-text/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/description.html -------------------------------------------------------------------------------- /methods/images-of-text/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/examples.html -------------------------------------------------------------------------------- /methods/images-of-text/img/bad-top-text-d37f250b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/bad-top-text-d37f250b.png -------------------------------------------------------------------------------- /methods/images-of-text/img/drop_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/drop_o.jpg -------------------------------------------------------------------------------- /methods/images-of-text/img/euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/euro.png -------------------------------------------------------------------------------- /methods/images-of-text/img/fancyO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/fancyO.png -------------------------------------------------------------------------------- /methods/images-of-text/img/gethappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/gethappy.png -------------------------------------------------------------------------------- /methods/images-of-text/img/newsletter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/newsletter.gif -------------------------------------------------------------------------------- /methods/images-of-text/img/repeat1-90c4c517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/repeat1-90c4c517.png -------------------------------------------------------------------------------- /methods/images-of-text/img/thebigsale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/thebigsale.png -------------------------------------------------------------------------------- /methods/images-of-text/img/wai-75196dbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/img/wai-75196dbb.png -------------------------------------------------------------------------------- /methods/images-of-text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/index.html -------------------------------------------------------------------------------- /methods/images-of-text/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/intro.html -------------------------------------------------------------------------------- /methods/images-of-text/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/resources.html -------------------------------------------------------------------------------- /methods/images-of-text/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/images-of-text/tests.html -------------------------------------------------------------------------------- /methods/informative-images/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/description.html -------------------------------------------------------------------------------- /methods/informative-images/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/examples.html -------------------------------------------------------------------------------- /methods/informative-images/img/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/cap.png -------------------------------------------------------------------------------- /methods/informative-images/img/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/dog.png -------------------------------------------------------------------------------- /methods/informative-images/img/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/family.png -------------------------------------------------------------------------------- /methods/informative-images/img/fax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/fax.png -------------------------------------------------------------------------------- /methods/informative-images/img/html5logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/html5logo.png -------------------------------------------------------------------------------- /methods/informative-images/img/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/network.png -------------------------------------------------------------------------------- /methods/informative-images/img/pdfdocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/pdfdocument.png -------------------------------------------------------------------------------- /methods/informative-images/img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/phone.png -------------------------------------------------------------------------------- /methods/informative-images/img/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/piechart.png -------------------------------------------------------------------------------- /methods/informative-images/img/worddocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/img/worddocument.png -------------------------------------------------------------------------------- /methods/informative-images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/index.html -------------------------------------------------------------------------------- /methods/informative-images/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/intro.html -------------------------------------------------------------------------------- /methods/informative-images/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/resources.html -------------------------------------------------------------------------------- /methods/informative-images/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/informative-images/tests.html -------------------------------------------------------------------------------- /methods/instruction-for-completing-task/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instruction-for-completing-task/description.html -------------------------------------------------------------------------------- /methods/instruction-for-completing-task/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instruction-for-completing-task/examples.html -------------------------------------------------------------------------------- /methods/instruction-for-completing-task/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instruction-for-completing-task/index.html -------------------------------------------------------------------------------- /methods/instruction-for-completing-task/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instruction-for-completing-task/intro.html -------------------------------------------------------------------------------- /methods/instruction-for-completing-task/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instruction-for-completing-task/resources.html -------------------------------------------------------------------------------- /methods/instruction-for-completing-task/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instruction-for-completing-task/tests.html -------------------------------------------------------------------------------- /methods/instructions-available-at-input/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instructions-available-at-input/description.html -------------------------------------------------------------------------------- /methods/instructions-available-at-input/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instructions-available-at-input/examples.html -------------------------------------------------------------------------------- /methods/instructions-available-at-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instructions-available-at-input/index.html -------------------------------------------------------------------------------- /methods/instructions-available-at-input/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instructions-available-at-input/intro.html -------------------------------------------------------------------------------- /methods/instructions-available-at-input/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instructions-available-at-input/resources.html -------------------------------------------------------------------------------- /methods/instructions-available-at-input/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/instructions-available-at-input/tests.html -------------------------------------------------------------------------------- /methods/relevant-headings/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/relevant-headings/description.html -------------------------------------------------------------------------------- /methods/relevant-headings/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/relevant-headings/examples.html -------------------------------------------------------------------------------- /methods/relevant-headings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/relevant-headings/index.html -------------------------------------------------------------------------------- /methods/relevant-headings/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/relevant-headings/intro.html -------------------------------------------------------------------------------- /methods/relevant-headings/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/relevant-headings/resources.html -------------------------------------------------------------------------------- /methods/relevant-headings/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/relevant-headings/tests.html -------------------------------------------------------------------------------- /methods/required-inputs-indicated/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/required-inputs-indicated/description.html -------------------------------------------------------------------------------- /methods/required-inputs-indicated/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/required-inputs-indicated/examples.html -------------------------------------------------------------------------------- /methods/required-inputs-indicated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/required-inputs-indicated/index.html -------------------------------------------------------------------------------- /methods/required-inputs-indicated/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/required-inputs-indicated/intro.html -------------------------------------------------------------------------------- /methods/required-inputs-indicated/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/required-inputs-indicated/resources.html -------------------------------------------------------------------------------- /methods/required-inputs-indicated/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/required-inputs-indicated/tests.html -------------------------------------------------------------------------------- /methods/template/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/template/background.html -------------------------------------------------------------------------------- /methods/template/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/template/examples.html -------------------------------------------------------------------------------- /methods/template/glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/template/glossary.html -------------------------------------------------------------------------------- /methods/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/template/index.html -------------------------------------------------------------------------------- /methods/template/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/template/introduction.html -------------------------------------------------------------------------------- /methods/template/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/template/tests.html -------------------------------------------------------------------------------- /methods/text-alternative-editable/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-alternative-editable/description.html -------------------------------------------------------------------------------- /methods/text-alternative-editable/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-alternative-editable/examples.html -------------------------------------------------------------------------------- /methods/text-alternative-editable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-alternative-editable/index.html -------------------------------------------------------------------------------- /methods/text-alternative-editable/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-alternative-editable/intro.html -------------------------------------------------------------------------------- /methods/text-alternative-editable/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-alternative-editable/resources.html -------------------------------------------------------------------------------- /methods/text-alternative-editable/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-alternative-editable/tests.html -------------------------------------------------------------------------------- /methods/text-equiv/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-equiv/description.html -------------------------------------------------------------------------------- /methods/text-equiv/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-equiv/examples.html -------------------------------------------------------------------------------- /methods/text-equiv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-equiv/index.html -------------------------------------------------------------------------------- /methods/text-equiv/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-equiv/intro.html -------------------------------------------------------------------------------- /methods/text-equiv/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-equiv/resources.html -------------------------------------------------------------------------------- /methods/text-equiv/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/text-equiv/tests.html -------------------------------------------------------------------------------- /methods/visually-distinct/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/visually-distinct/description.html -------------------------------------------------------------------------------- /methods/visually-distinct/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/visually-distinct/examples.html -------------------------------------------------------------------------------- /methods/visually-distinct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/visually-distinct/index.html -------------------------------------------------------------------------------- /methods/visually-distinct/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/visually-distinct/intro.html -------------------------------------------------------------------------------- /methods/visually-distinct/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/visually-distinct/resources.html -------------------------------------------------------------------------------- /methods/visually-distinct/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/methods/visually-distinct/tests.html -------------------------------------------------------------------------------- /outcomes/common-clear-words.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/common-clear-words.html -------------------------------------------------------------------------------- /outcomes/conveys-hierarchy-with-semantic-structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/conveys-hierarchy-with-semantic-structure.html -------------------------------------------------------------------------------- /outcomes/conveys-information-about-the-sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/conveys-information-about-the-sound.html -------------------------------------------------------------------------------- /outcomes/headings-organize-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/headings-organize-content.html -------------------------------------------------------------------------------- /outcomes/input-instructions-provided.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/input-instructions-provided.html -------------------------------------------------------------------------------- /outcomes/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/template.html -------------------------------------------------------------------------------- /outcomes/text-alternative-available-UCG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/text-alternative-available-UCG.html -------------------------------------------------------------------------------- /outcomes/text-alternative-available.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/text-alternative-available.html -------------------------------------------------------------------------------- /outcomes/translates-speech-and-non-speech-audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/translates-speech-and-non-speech-audio.html -------------------------------------------------------------------------------- /outcomes/uses-visually-distinct-headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/outcomes/uses-visually-distinct-headings.html -------------------------------------------------------------------------------- /prototypes/ConformancePrototype/conformance-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/ConformancePrototype/conformance-diagram.png -------------------------------------------------------------------------------- /prototypes/ConformancePrototype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/ConformancePrototype/index.html -------------------------------------------------------------------------------- /prototypes/ConformancePrototype/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/ConformancePrototype/readme.md -------------------------------------------------------------------------------- /prototypes/ConformancePrototype/respec-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/ConformancePrototype/respec-config.js -------------------------------------------------------------------------------- /prototypes/EdDraftPrototype/conformance-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/EdDraftPrototype/conformance-diagram.png -------------------------------------------------------------------------------- /prototypes/EdDraftPrototype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/EdDraftPrototype/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/.gitignore -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-1/aria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-1/aria.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-1/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-1/pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-1/pdf.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-1/silverlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-1/silverlight.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-1/staticWeb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-1/staticWeb.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-2/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/1-1-2/silverlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/1-1-2/silverlight.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/2-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/2-1-2/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/2-1-2/pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/2-1-2/pdf.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/2-1-2/silverlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/2-1-2/silverlight.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/2-1-2/staticWeb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/2-1-2/staticWeb.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_includes/foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_includes/guideline_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_includes/guideline_head.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_includes/head.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_includes/sc_foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_includes/sc_foot.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_includes/sc_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_includes/sc_head.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_layouts/default.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_layouts/guideline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_layouts/guideline.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/_layouts/successCriteria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/_layouts/successCriteria.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/assets/css/components.css -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/assets/css/flavor-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/assets/css/flavor-colors.css -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/assets/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/assets/css/master.css -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/componentExamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/componentExamples.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/home.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/readme.md -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-1/aria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-1/aria.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-1/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-1/pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-1/pdf.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-1/silverlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-1/silverlight.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-1/staticWeb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-1/staticWeb.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-2/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/1-1-2/silverlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/1-1-2/silverlight.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/2-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/2-1-2/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/2-1-2/pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/2-1-2/pdf.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/2-1-2/silverlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/2-1-2/silverlight.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/2-1-2/staticWeb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/2-1-2/staticWeb.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/assets/css/components.css -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/assets/css/flavor-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/assets/css/flavor-colors.css -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/assets/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/assets/css/master.css -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/componentExamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/componentExamples.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/home.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/index.html -------------------------------------------------------------------------------- /prototypes/FlavorPrototype/site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/FlavorPrototype/site/readme.md -------------------------------------------------------------------------------- /prototypes/PlainLanguage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/.gitignore -------------------------------------------------------------------------------- /prototypes/PlainLanguage/1-3-3/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/1-3-3/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/1-3-3/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/1-3-3/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/1-3-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/1-3-3/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-2-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-2-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-2-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-2-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-2-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-2-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-4-10/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-4-10/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-4-10/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-4-10/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-4-10/alt3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-4-10/alt3.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-4-10/alt4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-4-10/alt4.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/2-4-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/2-4-10/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/4-1-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/4-1-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/4-1-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/4-1-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/4-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/4-1-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_includes/foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_includes/guideline_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_includes/guideline_head.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_includes/head.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_includes/sc_foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_includes/sc_foot.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_includes/sc_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_includes/sc_head.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_layouts/default.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_layouts/guideline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_layouts/guideline.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_layouts/successCriteria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_layouts/successCriteria.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/1-3-3/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/1-3-3/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/1-3-3/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/1-3-3/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/1-3-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/1-3-3/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-2-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-2-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-2-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-2-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-2-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-2-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-4-10/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-4-10/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-4-10/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-4-10/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-4-10/alt3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-4-10/alt3.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-4-10/alt4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-4-10/alt4.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/2-4-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/2-4-10/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/4-1-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/4-1-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/4-1-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/4-1-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/4-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/4-1-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/assets/css/components.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/assets/css/flavor-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/assets/css/flavor-colors.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/assets/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/assets/css/master.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/componentExamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/componentExamples.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/home.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/readme.md -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/1-3-3/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/1-3-3/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/1-3-3/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/1-3-3/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/1-3-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/1-3-3/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-2-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-2-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-2-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-2-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-2-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-2-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-4-10/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-4-10/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-4-10/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-4-10/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-4-10/alt3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-4-10/alt3.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-4-10/alt4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-4-10/alt4.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/2-4-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/2-4-10/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/4-1-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/4-1-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/4-1-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/4-1-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/4-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/4-1-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/assets/css/components.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/assets/css/flavor-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/assets/css/flavor-colors.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/assets/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/assets/css/master.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/componentExamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/componentExamples.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/home.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/_site/site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/_site/site/readme.md -------------------------------------------------------------------------------- /prototypes/PlainLanguage/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/assets/css/components.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/assets/css/flavor-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/assets/css/flavor-colors.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/assets/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/assets/css/master.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/componentExamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/componentExamples.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/home.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/readme.md -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/1-3-3/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/1-3-3/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/1-3-3/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/1-3-3/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/1-3-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/1-3-3/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-2-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-2-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-2-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-2-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-2-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-2-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-4-10/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-4-10/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-4-10/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-4-10/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-4-10/alt3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-4-10/alt3.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-4-10/alt4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-4-10/alt4.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/2-4-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/2-4-10/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/4-1-2/alt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/4-1-2/alt1.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/4-1-2/alt2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/4-1-2/alt2.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/4-1-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/4-1-2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/assets/css/components.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/assets/css/flavor-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/assets/css/flavor-colors.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/assets/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/assets/css/master.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/componentExamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/componentExamples.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/home.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage/site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage/site/readme.md -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/ClearWords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/ClearWords.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/SectionHeading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/SectionHeading.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/index.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/magicsauce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/magicsauce.js -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/readme.md -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/style.css -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/template.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/visualContrast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/visualContrast.html -------------------------------------------------------------------------------- /prototypes/PlainLanguage2/warning.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/PlainLanguage2/warning.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/disclosure-login/inaccessible/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/disclosure-login/inaccessible/index.html -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/global-styles/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/global-styles/components.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/global-styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/global-styles/styles.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/global-styles/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/global-styles/typography.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/global-styles/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/global-styles/utilities.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/global-styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/global-styles/variables.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/images/login-path/grand-memory-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/images/login-path/grand-memory-button.png -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/index.html -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/contact-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/contact-us.html -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/forgot-password.html -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/index.html -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/registration-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/registration-form.html -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/styles/layouts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/styles/layouts.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/styles/login-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/styles/login-form.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/styles/styles.css -------------------------------------------------------------------------------- /prototypes/TestingDummyExamples/login-separate-pages/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/TestingDummyExamples/login-separate-pages/success.html -------------------------------------------------------------------------------- /prototypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/index.html -------------------------------------------------------------------------------- /prototypes/prototype_template_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/prototype_template_readme.md -------------------------------------------------------------------------------- /prototypes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/prototypes/readme.md -------------------------------------------------------------------------------- /requirements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/requirements/index.html -------------------------------------------------------------------------------- /requirements/respec-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/requirements/respec-config.js -------------------------------------------------------------------------------- /subgroups/xr/captioning/functional-outcomes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/captioning/functional-outcomes.html -------------------------------------------------------------------------------- /subgroups/xr/captioning/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/captioning/index.html -------------------------------------------------------------------------------- /subgroups/xr/captioning/user-requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/captioning/user-requirements.html -------------------------------------------------------------------------------- /subgroups/xr/captioning/what-is-captioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/captioning/what-is-captioning.html -------------------------------------------------------------------------------- /subgroups/xr/captioning/xr-captioning-user-needs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/captioning/xr-captioning-user-needs.html -------------------------------------------------------------------------------- /subgroups/xr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/index.html -------------------------------------------------------------------------------- /subgroups/xr/minutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/minutes.html -------------------------------------------------------------------------------- /subgroups/xr/xr-fpwd-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/subgroups/xr/xr-fpwd-info.html -------------------------------------------------------------------------------- /use-cases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/use-cases/index.html -------------------------------------------------------------------------------- /use-cases/respec-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/use-cases/respec-config.js -------------------------------------------------------------------------------- /use-cases/use-cases-breakdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/use-cases/use-cases-breakdown.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/silver/HEAD/w3c.json --------------------------------------------------------------------------------