├── .DS_Store ├── .bundle └── config ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html └── header.html ├── _layouts ├── default.html └── page.html ├── accessibility-news-and-business-analysts.md ├── accessibility-news-and-designers.md ├── accessibility-news-and-developers.md ├── accessibility-news-and-product-owners.md ├── accessibility-news-and-project-managers.md ├── accessibility-news-and-testers.md ├── assets ├── .DS_Store ├── css │ └── default.css ├── custom.css └── img │ ├── accessibility-acceptance-criteria │ └── ordered-list-component.png │ ├── accessibility-bugs │ ├── bugs-banner-menu-button.png │ ├── bugs-banner-skip-to-content.png │ ├── bugs-list-of-links.png │ ├── bugs-share-button.png │ ├── bugs-show-more-updates.png │ └── bugs-top-stories.png │ ├── development-approach │ └── our-development-approach-for-accessible-front-end-code-poster.png │ └── screen-reader-ux │ ├── byline.png │ ├── screen-reader-ux-poster.png │ ├── show-more-updates.png │ ├── step-1.png │ ├── step-2.png │ ├── step-3.png │ ├── step-4.png │ ├── step-5-apps.png │ ├── step-5-web.png │ ├── step-6-apps.png │ ├── step-6-web.png │ ├── step-7-apps.png │ ├── step-7-web.png │ ├── step-8-apps.png │ ├── step-8-web.png │ ├── step-9-apps.png │ ├── step-9-web.png │ └── topic-tag.png ├── assistive-technology ├── assistive-technology-testing-in-a-foreign-language.html ├── testing-steps │ ├── claroread-windows.html │ ├── dragon-windows.html │ ├── jaws-windows.html │ ├── nvda-windows.html │ ├── talkback-android.html │ ├── voice-access-android.html │ ├── voice-control-ios.html │ ├── voiceover-ios.html │ ├── voiceover-mac.html │ └── zoomtext-windows.html └── testing.html ├── checklist └── accessibility-swarm.html ├── guides ├── accessibility-acceptance-criteria.html ├── accessibility-bugs.html ├── accessibility-design-review.html ├── accessibility-swarms.html ├── development-approach-for-accessible-front-end-code.html ├── screen-reader-ux-ios-android.html └── screen-reader-ux.html ├── how-to ├── colour-preferences-firefox-mac.html ├── high-contrast-mode-windows.html └── no-css.html ├── index.html └── pdfs ├── .DS_Store ├── our-development-approach-for-accessible-front-end-code-poster.pdf └── screen-reader-ux-steps-poster.pdf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/.DS_Store -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_BUILD__EVENTMACHINE: "--with-cppflags=-I/usr/local/opt/openssl/include" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | .ruby-version 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /accessibility-news-and-business-analysts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/accessibility-news-and-business-analysts.md -------------------------------------------------------------------------------- /accessibility-news-and-designers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/accessibility-news-and-designers.md -------------------------------------------------------------------------------- /accessibility-news-and-developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/accessibility-news-and-developers.md -------------------------------------------------------------------------------- /accessibility-news-and-product-owners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/accessibility-news-and-product-owners.md -------------------------------------------------------------------------------- /accessibility-news-and-project-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/accessibility-news-and-project-managers.md -------------------------------------------------------------------------------- /accessibility-news-and-testers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/accessibility-news-and-testers.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/css/default.css -------------------------------------------------------------------------------- /assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/custom.css -------------------------------------------------------------------------------- /assets/img/accessibility-acceptance-criteria/ordered-list-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-acceptance-criteria/ordered-list-component.png -------------------------------------------------------------------------------- /assets/img/accessibility-bugs/bugs-banner-menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-bugs/bugs-banner-menu-button.png -------------------------------------------------------------------------------- /assets/img/accessibility-bugs/bugs-banner-skip-to-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-bugs/bugs-banner-skip-to-content.png -------------------------------------------------------------------------------- /assets/img/accessibility-bugs/bugs-list-of-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-bugs/bugs-list-of-links.png -------------------------------------------------------------------------------- /assets/img/accessibility-bugs/bugs-share-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-bugs/bugs-share-button.png -------------------------------------------------------------------------------- /assets/img/accessibility-bugs/bugs-show-more-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-bugs/bugs-show-more-updates.png -------------------------------------------------------------------------------- /assets/img/accessibility-bugs/bugs-top-stories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/accessibility-bugs/bugs-top-stories.png -------------------------------------------------------------------------------- /assets/img/development-approach/our-development-approach-for-accessible-front-end-code-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/development-approach/our-development-approach-for-accessible-front-end-code-poster.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/byline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/byline.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/screen-reader-ux-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/screen-reader-ux-poster.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/show-more-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/show-more-updates.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-1.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-2.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-3.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-4.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-5-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-5-apps.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-5-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-5-web.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-6-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-6-apps.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-6-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-6-web.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-7-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-7-apps.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-7-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-7-web.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-8-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-8-apps.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-8-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-8-web.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-9-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-9-apps.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/step-9-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/step-9-web.png -------------------------------------------------------------------------------- /assets/img/screen-reader-ux/topic-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assets/img/screen-reader-ux/topic-tag.png -------------------------------------------------------------------------------- /assistive-technology/assistive-technology-testing-in-a-foreign-language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/assistive-technology-testing-in-a-foreign-language.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/claroread-windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/claroread-windows.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/dragon-windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/dragon-windows.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/jaws-windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/jaws-windows.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/nvda-windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/nvda-windows.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/talkback-android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/talkback-android.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/voice-access-android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/voice-access-android.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/voice-control-ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/voice-control-ios.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/voiceover-ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/voiceover-ios.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/voiceover-mac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/voiceover-mac.html -------------------------------------------------------------------------------- /assistive-technology/testing-steps/zoomtext-windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing-steps/zoomtext-windows.html -------------------------------------------------------------------------------- /assistive-technology/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/assistive-technology/testing.html -------------------------------------------------------------------------------- /checklist/accessibility-swarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/checklist/accessibility-swarm.html -------------------------------------------------------------------------------- /guides/accessibility-acceptance-criteria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/accessibility-acceptance-criteria.html -------------------------------------------------------------------------------- /guides/accessibility-bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/accessibility-bugs.html -------------------------------------------------------------------------------- /guides/accessibility-design-review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/accessibility-design-review.html -------------------------------------------------------------------------------- /guides/accessibility-swarms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/accessibility-swarms.html -------------------------------------------------------------------------------- /guides/development-approach-for-accessible-front-end-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/development-approach-for-accessible-front-end-code.html -------------------------------------------------------------------------------- /guides/screen-reader-ux-ios-android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/screen-reader-ux-ios-android.html -------------------------------------------------------------------------------- /guides/screen-reader-ux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/guides/screen-reader-ux.html -------------------------------------------------------------------------------- /how-to/colour-preferences-firefox-mac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/how-to/colour-preferences-firefox-mac.html -------------------------------------------------------------------------------- /how-to/high-contrast-mode-windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/how-to/high-contrast-mode-windows.html -------------------------------------------------------------------------------- /how-to/no-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/how-to/no-css.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/index.html -------------------------------------------------------------------------------- /pdfs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/pdfs/.DS_Store -------------------------------------------------------------------------------- /pdfs/our-development-approach-for-accessible-front-end-code-poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/pdfs/our-development-approach-for-accessible-front-end-code-poster.pdf -------------------------------------------------------------------------------- /pdfs/screen-reader-ux-steps-poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/accessibility-news-and-you/HEAD/pdfs/screen-reader-ux-steps-poster.pdf --------------------------------------------------------------------------------