AODA Accessibility Audit for Hypothesis (embedded within Canvas)

Size: px
Start display at page:

Download "AODA Accessibility Audit for Hypothesis (embedded within Canvas)"

Transcription

1 AODA Accessibility Audit for Hypothesis (embedded within Canvas) Prepared by WebSavvy Inclusive Design Research Centre, OCAD University 2 nd Floor, 205 Richmond St. West, Toronto, ON, M5V 1V3 Tel: (416) #3957 Fax: (416) Reviewed by: Lisa Liskovoi May 14, 2018

2 Table of Contents Introduction 3 Content Reviewed 3 Summary of Accessibility Issues 4 WCAG 2.0 Criteria Checklist with Recommendations 5 Principle 1: Perceivable 5 Principle 2: Operable 13 Principle 3: Understandable 16 Principle 4: Robust 18 Technical Information 20 2

3 Introduction This accessibility audit reviews Hypothesis functionality for compliance with the Web Content Accessibility Guidelines (WCAG 2.0) A and AA criteria. The issues described in this report are organized under WCAG s four leading principles of accessibility regarding web content. These principles can be described as: 1. Perceivable - A site must provide text alternatives for non-text content, alternatives for timebased media, layout alternatives for related or sequential content, and generally make sure all content is easy to see and hear. 2. Operable - A site must provide keyboard access, enough time to read and use content, orientation, clear navigation, and organized content. A site must also operate safely without flashing. 3. Understandable - Content must be readable, consistent, and predictable. Instructions must be clear and helpful. 4. Robust - Content must be compatible with a variety of user agents and assistive technologies. Individual criteria successes and failures are described in detail in the WCAG 2.0 Chart included, with the most important issues explained in the Summary of Accessibility Issues section below. Tools used for this review, as well as sites useful for implementing the recommended improvements, are listed in the Technical Information section. Content Reviewed This general accessibility review looks at Hypothesis functionality on the following sample page, embedded within Canvas: 3

4 Summary of Accessibility Issues The conclusion of this review is that the Hypothesis annotation functionality does not conform with WCAG 2.0 at Level A or Level AA. The accessibility issues identified through this audit are described in the following sections with the relevant WCAG 2.0 criteria number cited in parentheses. Recommendations for each issue are located in the Comments of the WCAG 2.0 Criteria Checklist with Recommendations. Some accessibility issues include: Missing, incorrect or insufficient markup for tabs, show/hide toggles, radio buttons, etc. (1.3.1, 4.1.2) Colour alone is used to identify annotated and highlighted content (1.4.1) In some case text does not have sufficient contrast with the background (1.4.3) Some functionality is not accessible with a keyboard (2.1.1) Users are not able to extend of disable time limits before being logged out (2.2.1) Keyboard focus is not always visible (2.4.7) Validation errors that could interfere with the functioning of assistive technologies are present in the markup (4.1.1) 4

5 WCAG 2.0 Criteria Checklist with Recommendations The following checklist evaluates each A and AA criterion with a Pass or Fail grade. In cases where a Pass is given but further accessibility or usability improvements are recommended, a Minimum Pass evaluation is given with additional suggestions. Note: Items with a grey background signify AAA criteria and are not evaluated in this audit. Although they go beyond AA compliance, developers should attempt to conform with these AAA guidelines wherever possible. Principle 1: Perceivable Level Evaluation Comments Images have proper text alternatives : Non-text Content A Pass For logos, identify the image as a logo, i.e. Hypothesis logo rather than just Hypothesis : Audioonly and Videoonly (Prerecorded) 1.2.2: Captions (Prerecorded) 1.2.3: Audio Description or Full Text Alternative A N/A No audio-only or video-only content observed. A N/A No audio-visual content observed. A N/A No audio-visual content observed.

6 1.2.4: Captions (Live) Level Evaluation Comments AA N/A Not an AODA requirement : Audio Description Sign Language Extended Audio Description Media Alternative Audioonly (Live) AA N/A Not an AODA requirement. Iframe titles Add a title attribute to describe the Hypothesis iframe. For more on iframe accessibility, see: : Info and Relationships A Fail Show/Hide Content Toggles Add ARIA to describe the behaviour of show/hide content toggle buttons. To these buttons add the aria-expanded attribute to reflect the state of the content, and aria-controls= id of collapsible content div. See button with data target example: alpha.getbootstrap.com/components/collapse/ E.g. sidebar content toggle 6

7 Level Evaluation Comments Radio buttons For custom radio buttons, add ARIA markup to clarify functionality to the user. Add role= radio to each option, and an aria-checked attribute that reflects the state of the radio option (true/false). Associate the options with their labels (Newest, Oldest, Location) using the aria-labelledby attribute. Enclose the options in an element and give it a role= radiogroup. Add an aria-label to the group, in this case Sort by or similar. E.g. radio buttons in sort options. Pop up elements Indicate that an element has an interactive pop up element using the aria-haspopup property. The value of aria-haspop should match the role (menu, listbox, tree, grid or dialog). Add ariaexpanded attribute to indicate the state of the content. E.g. posting options for comments. Tabs All tabpanel functionality should be marked up with ARIA to describe the purpose and interaction of the tab elements. Add role= tablist to the tab <ul> and role= tab to individual <li>s. On the tab content divs, add role= tabpanel and aria-labeledby=id of its tab. Set aria-selected= true for selected tabs, 7

8 Level Evaluation Comments and aria-hidden= true for hidden tab panels. For an example, see: E.g. tabs in the side panel. Aria-labels Add aria-labels for inputs and elements that require context that is not evident to non-visual users. E.g. the search button is missing a label. E.g. tags. Without visual information, these links are difficult to identify as tags and may be be confusing to non-visual users. 8

9 Level Evaluation Comments Input errors Programmatically associate errors with the inputs they describe using the aria-describedby attribute. E.g. error messages for login inputs are not read out to AT users because they are not associated with their inputs (screen reader output shown) : Meaningful Sequence A Pass The reading order of content is meaningful : Sensory Characteristics A Pass Instructions do not rely upon visual characteristics or sounds. (e.g. Click the square icon to or The beep indicates ) 1.4.1: Use of Color A Fail Colour alone is used to identify content that is annotated. Consider providing an additional indicator, such as an outline, underline or bolded text. Alternatively, allow users to control the presentation of annotation, including providing different colour options, outlines, etc : Audio Control A N/A Did not observe any audio that plays automaticlly. 9

10 Level Evaluation Comments 1.4.3: Contrast (Minimum) AA Fail 10

11 Level Evaluation Comments Users should be able to increase the size of text to 200% without loss of content or functionality and without requiring horizontal scrolling : Resize text AA Minimum Pass Content resizes well, however when increased to 200%, it obscures the article content as well as the show/hide toggle. This is likely to make the sidebar difficult to interact with for users who require magnification. 11

12 Level Evaluation Comments 1.4.5: Images of Text 1.4.6: Contrast (Enhanced) 1.4.7: Low or no Background Audio 1.4.8: Visual Presentation 1.4.9: Images of Text (No Exception) AA Pass No images of text observed. 12

13 Principle 2: Operable Level Evaluation Comments Some functionality is not accessible with a keyboard. Elements that are not accessible with a keyboard are also not operable with screen readers. E.g. annotation and highlight buttons are not accessible with a keyboard. E.g. share and profile options are not accessible with a keyboard : Keyboard A Fail E.g. the update button is not accessible with a keyboard. E.g. formatting options are not accessible with a keyboard. E.g. close button in the Share dialog : No Keyboard Trap A Pass No keyboard traps observed. 13

14 2.1.3 Keyboard (No Exception) Level Evaluation Comments For login sessions that expire in less than 20 hours, users require the ability to disable, adjust, or extend the time limit before it is encountered. Before expiry, warn the user and give at least 20 seconds to extend the time limit with a simple action (for example, "press the space bar"), with the user being allowed to extend the time limit at least ten times. For example, Google Hangouts provides an Are you still there? feature to meet this requirement: 2.2.1: Timing Adjustable A Fail 2.2.2: Pause, Stop, Hide A Pass No moving, blinking or scrolling content observed : No Timing 2.2.4: Interruptions AAA AAA Not an AODA requirement. Not an AODA requirement : Reauthenticating AAA Not an AODA requirement. 14

15 2.3.1: Three Flashes or Below Threshold Level Evaluation A Pass No flashing content observed. Comments 2.3.2: Three Flashes AAA Not an AODA requirement : Bypass Blocks 2.4.2: Page Titled A N/A Repeated navigation is minimal. A N/A Only applicable for web pages : Focus Order A Pass The focus order of elements is logical : Link Purpose (In Context) A Pass Purpose of links is clear : Multiple Ways AA N/A Although this criterion applies to entire websites, it is possible to find content through both navigation (annotation categories), and a search function : Headings and Labels AA Pass The text of headings and labels is clear and descriptive : Focus Visible AA Fail In some cases keyboard focus is not visible. 15

16 Level Evaluation E.g. account options and annotation tabs. Comments 2.4.8: Location AAA Not an AODA requirement : Link Purpose (Link Only) : Section Headings AAA AAA Not an AODA requirement. Not an AODA requirement. Principle 3: Understandable 3.1.1: Language of Page Level Evaluation A N/A Only applicable to web pages. Comments Only English content observed in plugin : Language of Parts AA N/A Note: For annotations that are in a language different than the main page language, language should be defined programmatically using the lang attribute in order to ensure proper interpretation by ATs. Consider using language detection or allowing the user to set the language : Unusual Words 16

17 3.1.4: Abbreviations Level Evaluation Comments 3.1.5: Reading Level 3.1.6: Pronunciation 3.2.1: On Focus A Pass No significant changes were observed when an element receives focus : On Input A Pass No significant changes were observed when an input or control is used : Consistent Navigation 3.2.4: Consistent Identification AA N/A Only applicable to multi-page websites. AA Pass Components that serve the same function are identified consistently : Change on Request 3.3.1: Error Identification A Pass Error messages are provided : Labels or Instructions A Pass Labels and instructions are provided. 17

18 Level Evaluation Comments 3.3.3: Error Suggestion AA Pass Error details given. See for more on associating error messages with the corresponding inputs : Error Prevention (Legal, Financial, Data) AA N/A No legal, financial or sensitive data required from users : Help 3.3.6: Error Prevention (All) Principle 4: Robust Level Evaluation Comments In content implemented using markup languages, elements must have complete start and end tags, be nested according to their specifications, not contain duplicate attributes, and have unique IDs, except where the specifications allow these features. These types of errors can interfere with the operation of assistive technologies : Parsing A Fail Parsing Errors Parsing errors present (93 errors and warnings), including: missing required attributes invalid nesting of elements In general, ensure valid code by checking pages with the W3C Nu Validator ( The raw results show all of the source code validity issues, but to Pass this criterion only a sub-set of these issues must be fixed. This subset can be filtered 18

19 Level Evaluation Comments using a special bookmarklet found at: parsing-error-bookmarklet/ 4.1.2: Name, Role, Value A Fail Add ARIA to hide/show toggles, tabs, pop-up elements, etc.. See for details. 19

20 Technical Information Accessibility of a website is measured against criteria taken from the Web Content Accessibility Guidelines (WCAG) 2.0 ( In conducting this review, the following tools were used: Firefox 59 Safari 11 Chrome 66 NVDA screen reader VoiceOver screen reader WebAIM Wave Toolbar Nu HTML checker TPG Color Contrast Analyzer These tools were used to generally assess site elements and markup and were not exhaustive in terms of operating system and browser testing. In order to address issues identified in this review, we recommend additionally consulting How to Meet WCAG 2.0: A customizable quick reference to Web Content Accessibility Guidelines 2.0 requirements (success criteria) and techniques (

Blackboard Collaborate WCAG 2.0 Support Statement August 2016

Blackboard Collaborate WCAG 2.0 Support Statement August 2016 Blackboard Collaborate WCAG 2.0 Support Statement August 2016 Overview The following Support Statement provides an evaluation of accessibility support levels for Blackboard s Collaborate (Ultra) based

More information

Web Content Accessibility Guidelines 2.0 Checklist

Web Content Accessibility Guidelines 2.0 Checklist ProQuest Ebook Central Web Content Accessibility Guidelines 2.0 Checklist Last updated March 28, 2017 by HT Sun, Senior Product Manager, ht.sun@proquest.com Principle 1: Perceivable information and user

More information

VPAT Web Content Accessibility Guidelines 2.0 level AA

VPAT Web Content Accessibility Guidelines 2.0 level AA VPAT Web Content Accessibility Guidelines 2.0 level AA It is strongly recommended Technical Staff who are trained in Accessibility complete this form. The comments portion must be filled in to further

More information

Typhon Group Website WCAG 2.0 Support Statement

Typhon Group Website WCAG 2.0 Support Statement Typhon Group Website WCAG 2.0 Support Statement Date of WCAG testing: 4/5/2016 Name of Product: Typhon Group Student Tracking Systems (web application) Contact Info: Aviva Bowman, aviva@typhongroup.com,

More information

Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance

Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance Name of Product: SIRS Knowledge Source (Includes SIRS Issues Researcher, SIRS Government Reporter, and SIRS Renaissance) Product

More information

WCAG 2.0 A and AA Requirements

WCAG 2.0 A and AA Requirements WCAG 2.0 A and AA Requirements Name of Product Engineering Village URL https://www.engineeringvillage.com/search/quick.url Date Last Updated 28 November, 2018 Completed by Document Description Contact

More information

Web Content Accessibility Guidelines 2.0 level AA Checklist

Web Content Accessibility Guidelines 2.0 level AA Checklist Web Content Accessibility Guidelines 2.0 level AA Checklist Date: April, 2016 Name of Product: SoftChalk Create 10 (both desktop and cloud web-launch versions) Contact for more information: email: help@softchalk.com

More information

Web Content Accessibility Guidelines 2.0 Checklist

Web Content Accessibility Guidelines 2.0 Checklist Web Content Accessibility Guidelines 2.0 Checklist Principle 1: Perceivable information and user interface components must be presentable to users in ways they can perceive. 1 Standard Description Apply

More information

How to Meet WCAG 2.0 AA Level

How to Meet WCAG 2.0 AA Level How to Meet WCAG 2.0 AA Level Source: https://www.w3.org/wai/wcag20/quickref/?currentsidebar=%23col_customize&showtechniques= 124&levels=aaa&technologies=css%2Cwai-aria%2Cjs%2Cserver%2Csmil%2Cpdf%2Cflash%2Csl

More information

Salesforce Lightning Experience

Salesforce Lightning Experience Salesforce Lightning Experience Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) July 2016 This Voluntary Product Accessibility Template, or VPAT,

More information

WCAG 2 Compliance Report

WCAG 2 Compliance Report WCAG 2 Compliance Report Evaluation Details Product Name/Version: CaptionSync Smart Player, version 4.5.0 Vendor Name: Automatic Sync Technologies, LLC Report Date: September 22, 2017 Evaluator(s) (name/affiliation):

More information

WCAG 2.0 Checklist. Perceivable Web content is made available to the senses - sight, hearing, and/or touch. Recommendations

WCAG 2.0 Checklist. Perceivable Web content is made available to the senses - sight, hearing, and/or touch. Recommendations WCAG 2.0 Checklist Perceivable Web content is made available to the senses - sight, hearing, and/or touch Guideline 1.1 Text Alternatives: Provide text alternatives for any non-text content Success Criteria

More information

VPAT Web Content Accessibility Guidelines 2.0 level AA

VPAT Web Content Accessibility Guidelines 2.0 level AA The requested VPAT applies to the responder s website to be offered under the Contract. For products offered, VPATS are only to be provided upon request by the participating entity. It is strongly recommended

More information

Salesforce1 - ios App (Phone)

Salesforce1 - ios App (Phone) Salesforce1 - ios App (Phone) Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) This Voluntary Product Accessibility Template, or VPAT, is a tool that

More information

Service Cloud Lightning

Service Cloud Lightning Service Cloud Lightning Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) February 2017 This Voluntary Product Accessibility Template, or VPAT, is

More information

Macmillan Learning iclicker Reef Accessibility Conformance Report

Macmillan Learning iclicker Reef Accessibility Conformance Report Macmillan Learning iclicker Reef Accessibility Report VPAT Version 2.0 November 2017 Name of Product/Version: iclicker Reef Product Description: iclicker Reef Student Web Application Date: 11/30/17 Contact

More information

Science. Voluntary Product Accessibility Template: Web Content Accessibility Guidelines 2.0 Level AA

Science. Voluntary Product Accessibility Template: Web Content Accessibility Guidelines 2.0 Level AA Voluntary Product Accessibility Template: Web Content Accessibility Guidelines 2.0 Level AA Contact for more Information: accessibility@aaas.org. Date Revision # Summary of Changes October 2016 Original

More information

Salesforce Lightning Experience Analytics (Dashboard and Reports)

Salesforce Lightning Experience Analytics (Dashboard and Reports) (Dashboard and Reports) Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) April 2017 This Voluntary Product Accessibility Template, or VPAT, is a tool

More information

Blackboard Learn with the Ultra Experience WCAG 2.0 Support Statement November 2016

Blackboard Learn with the Ultra Experience WCAG 2.0 Support Statement November 2016 Blackboard Learn with the Ultra Experience WCAG 2.0 Support Statement November 2016 Blackboard November 2016 Page 1 of 24 Overview The following Support Statement provides an evaluation of accessibility

More information

YuJa Enterprise Video Platform WCAG 2.0 Checklist

YuJa Enterprise Video Platform WCAG 2.0 Checklist Platform Accessibility YuJa Enterprise Video Platform WCAG 2.0 Checklist Updated: December 15, 2017 Introduction YuJa Corporation strives to create an equal and consistent media experience for all individuals.

More information

Desire2Learn Learning Repository Web Content Accessibility Guidelines (WCAG 2.0) Checklist October 2013 Contents

Desire2Learn Learning Repository Web Content Accessibility Guidelines (WCAG 2.0) Checklist October 2013 Contents Desire2Learn Learning Repository Web Content Accessibility Guidelines (WCAG 2.0) Checklist October 2013 Contents Introduction Key accessibility features Keyboard-only navigation Screen magnification, zooming

More information

Web Content Accessibility Guidelines (WCAG) 2.0

Web Content Accessibility Guidelines (WCAG) 2.0 Web Content Accessibility Guidelines (WCAG) 2.0 This is YouSeeU s response to the Web Content Accessibility Guidelines (WCAG) 2.0 -- https://www.w3.org/tr/wcag20/. In this document, YouSeeU has provided

More information

Salesforce Lightning Dialer

Salesforce Lightning Dialer Salesforce Lightning Dialer Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) October 2017 This Voluntary Product Accessibility Template, or VPAT,

More information

Salesforce Lightning Service Console

Salesforce Lightning Service Console Salesforce Lightning Service Console Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) November 2017 This Voluntary Product Accessibility Template,

More information

Product Accessibility Conformance Report

Product Accessibility Conformance Report Product Accessibility Conformance Report Name of Product / Version Number: Contact for more information: Gillian Neff / gillian.neff @clarivate.com Clarivate Analytics remains dedicated to developing software

More information

Salesforce Service Cloud Snap-Ins for Web

Salesforce Service Cloud Snap-Ins for Web Salesforce Service Cloud Snap-Ins for Web Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) November 2017 This Voluntary Product Accessibility Template,

More information

Product Accessibility Conformance Report

Product Accessibility Conformance Report Product Accessibility Conformance Report Name of Product / Version Number: * 5.27 * is the global name given to the software platform that incorporates the products: TM Core Collection, Biological Abstracts,

More information

Turning Technologies Accessibility Conformance Report

Turning Technologies Accessibility Conformance Report Turning Technologies Accessibility Conformance Report VPAT Version 2.1 July 2018 Name of Product/Version: TurningPoint desktop Product Description: TurningPoint is an easy-to-use assessment solution that

More information

2. Zoom Video Webinar runs on Windows, macos, Linux, Chrome OS, ios, Android, and

2. Zoom Video Webinar runs on Windows, macos, Linux, Chrome OS, ios, Android, and Date: August 24, 2018 Name of Product: Zoom Product Web Page Contact for more Information: access@zoom.us Zoom's video communications product suite runs on mobile, desktop, and conference room systems.

More information

CERPS AODA/WCAG 2.0 Support Statement September 2016

CERPS AODA/WCAG 2.0 Support Statement September 2016 CERPS AODA/WCAG 2.0 Support Statement September 2016 Overview CERPS online e-training products are sourced from Stillwater Consulting Limited. In an ongoing effort to meet AODA Compliance requirements,

More information

Sales Cloud Lightning

Sales Cloud Lightning Sales Cloud Lightning Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) December 2017 This Voluntary Product Accessibility Template, or VPAT, is a

More information

295 Interlocken Blvd #100 Broomfield, CO

295 Interlocken Blvd #100 Broomfield, CO 8/25/2017 295 Interlocken Blvd #100 Broomfield, CO 80021 866-524-3444 Memorandum Re: Accessibility of public-facing school nutrition websites provided by Nutrislice in light of WCAG 2.0, ADA, and Section

More information

ProQuest Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018

ProQuest Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018 ProQuest Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018 Name of Product/Version: ProQuest Platform / December 2018 release Product Description: The ProQuest platform

More information

AA WCAG 2.0 Web Accessibility Compliance. Nate Reusser. LinkedIn: linkedin.com/in/natereusser

AA WCAG 2.0 Web Accessibility Compliance. Nate Reusser. LinkedIn: linkedin.com/in/natereusser AA WCAG 2.0 Web Accessibility Compliance Nate Reusser Twitter: @NateReusser LinkedIn: linkedin.com/in/natereusser COMPLIANCE LEVELS A AA AAA Minimal Impact Minimal Effect Happy Medium Co-Relates 100% with

More information

Agilix Buzz Accessibility Statement ( )

Agilix Buzz Accessibility Statement ( ) Agilix Buzz Accessibility Statement (08 30 2016) Voluntary Product Accessibility Template (VPAT) Software Applications and Operating Systems (Section 1194.21) Web based intranet and Internet information

More information

Moodlerooms WCAG 2.0 Support Statement September 2017

Moodlerooms WCAG 2.0 Support Statement September 2017 Moodlerooms WCAG 2.0 Support Statement September 2017 Washington, D.C. Office 1600 Spring Hill Road, Suite 400 Vienna, VA 22182 Silicon Valley Office 114 Sansome Street, Suite 950 San Francisco, CA 94104

More information

Accessibility Conformance Report

Accessibility Conformance Report Accessibility Conformance Report VPAT Version 2.0 October 2017 Name of Product/Version: IQWST IDE (Interactive Digital Ed.) Product Description: Online, interactive notebook and assessment system to be

More information

Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance

Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance , distributed by ProQuest Web Content Accessibility Guidelines (WCAG) 2.0 Statement of Compliance Name of product: Product website: Date: March 19, 2017 Contact: WCAG website:, distributed by ProQuest

More information

Guideline 1.2 Time-based Media: Provide alternatives for time-based media Success Criteria Recommendations Met

Guideline 1.2 Time-based Media: Provide alternatives for time-based media Success Criteria Recommendations Met Perceivable Web content is made available to the senses - sight, hearing, and/or touch Guideline 1.1 Text Alternatives: Provide text alternatives for any non-text content 1.1.1 Nontext Content All images,

More information

Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice

Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice July 19, 2016 This Voluntary Product Accessibility Template, or VPAT, is a tool that administrators and decision-makers

More information

Web Content Accessibility Template

Web Content Accessibility Template Web Content Accessibility Template The purpose of this template is to assist contracting officials and other buyers in making preliminary assessments regarding the availability of web products and services

More information

How Accessible is Your Website?

How Accessible is Your Website? How ccessible is Your Website? ccording to the most recent U.S. census, more than 56 million people in the United States are living with a disability. s an organization that serves citizens, it s essential

More information

Accessibility Statement COGBOOKS LEARNER WEB APPLICATION. COGBOOKS LIMITED Registered Office 5th Floor, 125 Princes Street, Edinburgh, EH2 4AD

Accessibility Statement COGBOOKS LEARNER WEB APPLICATION. COGBOOKS LIMITED Registered Office 5th Floor, 125 Princes Street, Edinburgh, EH2 4AD Accessibility Statement COGBOOKS LEARNER WEB APPLICATION COGBOOKS LIMITED Registered Office 5th Floor, 125 Princes Street, Edinburgh, EH2 4AD Welcome to CogBooks! We want everyone who uses CogBooks Adaptive

More information

Shadow Health WCAG 2.0 Accessibility Conformance Report

Shadow Health WCAG 2.0 Accessibility Conformance Report Preface Shadow Health WCAG 2.0 Accessibility Conformance Date of Publication: 8/1/2018 Products Covered: Description of : Comments: Contact Information: This report covers the following products, listed

More information

Handshake Accessibility Overview

Handshake Accessibility Overview Handshake Accessibility Overview Handshake takes accessibility seriously. This document provides an overview of our commitment to making Handshake accessible to every user. Handshake takes the following

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco WebEx Web App Meeting Center v3.7 Product Description: Cisco WebEx Web App is the browser-based version of WebEx Meeting

More information

Fulcrum Accessibility Conformance Report

Fulcrum Accessibility Conformance Report Fulcrum Accessibility Report VPAT Version 2.1 August 2018 Name of Product/Version: Fulcrum v2.17.1 Date: August 2018 Contact information: fulcrum-info@umich.edu Evaluation Methods Used: NVDA with Mozilla

More information

Voluntary Product Accessibility Template (VPAT ) About This Document

Voluntary Product Accessibility Template (VPAT ) About This Document CSU Library Vendors Voluntary Product Accessibility Template (VPAT ) Version 2.0 Beta 2 Voluntary Product Accessibility Template (VPAT )... 1 About This Document... 1 Essential Requirements and Best practices

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) Date: August 5, 2015 Product Name: WCONLINE Product Version Number on August 5, 2015: 5.5.7.10 Vendor Company Name: Twenty Six Design LLC. Vendor Contact

More information

Ex Libris Accessibility Conformance Report

Ex Libris Accessibility Conformance Report Name of Product/Version: Ex Libris Primo / February 2018 release Ex Libris Accessibility Conformance Report Level A and AA VPAT Version 2.0 Product Description: Ex Libris Primo provides a fast, comprehensive,

More information

Poll Everywhere Accessibility Conformance Report

Poll Everywhere Accessibility Conformance Report Poll Everywhere Accessibility Conformance Report VPAT Version 2.1 March 2018 Name of Product/Version: Poll Everywhere Product Description: Poll Everywhere is a web-based audience response system, that

More information

Apple Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT )

Apple Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) Apple Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) Name of Product: s 4.0 for ios Product Description: A word processor application for iphone, ipad, and ipod

More information

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Gale Kids InfoBits Date: January 2018 VPAT Version 2.0 Beta 2 Contact information: Accessibility@Cengage.com

More information

FAO Web Content Accessibility Guidelines

FAO Web Content Accessibility Guidelines FO Web Content ccessibility Guidelines FO s ccessibility Guidelines have been derived from the W3C s Web Content ccessibility Guidelines (WCG), version 2.0, which have become an established standard for

More information

Accessibility Conformance Report (ACR) Evolve. Ted Gies. Digital Accessibility Team

Accessibility Conformance Report (ACR) Evolve. Ted Gies. Digital Accessibility Team Accessibility Conformance Report (ACR) Evolve Ted Gies Digital Accessibility Team accessibility@elsevier.com 4 May 2018 2 Table of Contents Page Description 2 Table of Contents 3 Version History 4 Evolve

More information

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Marketplace Simulations Date: September 20, 2017 Contact information:

More information

TechReady.io Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

TechReady.io Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 TechReady.io Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 VPAT Version 2 Name of Product/Version: TechReady.io 1.2 Product Description: Website for assessing

More information

ArchivesSpace Accessibility Conformance Report International Edition

ArchivesSpace Accessibility Conformance Report International Edition ArchivesSpace Accessibility Conformance Report International Edition VPAT Version 2.2 July 2018 Name of Product/Version: ArchivesSpace v2.5.1 Product Description: ArchivesSpace is an archival information

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco Firepower Device Manager v6.2.3 Product Description: Firepower Device Manager is a web-based local manager. Users

More information

Project Cost Compliance with ADA and Web Content Accessibility Guidelines (WCAG 2..0) by Ethan Beberness

Project Cost Compliance with ADA and Web Content Accessibility Guidelines (WCAG 2..0) by Ethan Beberness Project Cost Compliance with ADA and Web Content Accessibility Guidelines (WCAG 2..0) by Ethan Beberness Summary: The Americans with Disabilities Act encourages self-regulation of accessibility standards,

More information

Voluntary Product Accessibility Template (VPAT ) About This Document

Voluntary Product Accessibility Template (VPAT ) About This Document Voluntary Product Accessibility Template (VPAT ) Version 2.1 March 2018 Voluntary Product Accessibility Template (VPAT )... 1 About This Document... 1 PlatformQ Education Accessibility Conformance Report...

More information

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Gale Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Gale Infotrac including VPAT Version 2.0 Beta 2 Academic OneFile, Educator's Reference

More information

Teradactyl LLC Accessibility Conformance Report VPAT Version 2.2 July 2018

Teradactyl LLC Accessibility Conformance Report VPAT Version 2.2 July 2018 Teradactyl LLC Accessibility Conformance Report VPAT Version 2.2 July 2018 Name of Product/Version: True incremental Backup System Pterostor Edition Product Description: Backup Software Date: Created August

More information

Voluntary Product Accessibility Template (VPAT ) WCAG Edition. About This Document. Version 2.2 July 2018

Voluntary Product Accessibility Template (VPAT ) WCAG Edition. About This Document. Version 2.2 July 2018 This document is broken into two main sections: Voluntary Product Accessibility Template (VPAT ) WCAG Edition Version 2.2 July 2018 About This Document...1 Essential Requirements and Best Practices for

More information

What is ADA Website Compliance?

What is ADA Website Compliance? What is ADA Website Compliance? More than 54 million Americans are disabled, and almost 10 percent of the online population has a disability. The Americans with Disabilities Act (ADA) was introduced in

More information

Wasabi Hot Cloud Storage Accessibility Conformance Report Revised Section 508 Edition

Wasabi Hot Cloud Storage Accessibility Conformance Report Revised Section 508 Edition Wasabi Hot Cloud Storage Accessibility Conformance Report Edition VPAT Version 2.2 July 2018 Name of Product/Version: Wasabi Hot Cloud Storage Product Description: Wasabi Hot Cloud Storage is an object

More information

Cisco Accessibility Conformance Report VPAT Version 2.1

Cisco Accessibility Conformance Report VPAT Version 2.1 Cisco Accessibility Conformance Report VPAT Version 2.1 Name of Product/Version: Cisco Webex Events v4.3 Product Description: Cisco Webex Events is the browser-based version of Webex Events. The application

More information

Date: December 21, 2017 Name of Product: Cisco WebEx Web App Meeting Center v3.4 Contact for more information:

Date: December 21, 2017 Name of Product: Cisco WebEx Web App Meeting Center v3.4 Contact for more information: Date: December 21, 2017 Name of Product: Cisco WebEx Web App Meeting Center v3.4 Contact for more information: accessibility@cisco.com The following testing was done on a Windows 10 with Freedom Scientific

More information

Kaltura Accessibility Conformance Report

Kaltura Accessibility Conformance Report Kaltura Accessibility Report Name of Product/Version: VPAT Version 2.1 Kaltura MediaSpace and Kaltura Application Framework (KAF) 5.69.x released February 12, 2018 Kaltura Video Editing Tools 2.22.1 released

More information

Voluntary Product Accessibility Template (VPAT ) About This Document

Voluntary Product Accessibility Template (VPAT ) About This Document Voluntary Product Accessibility Template (VPAT ) Version 2.1 March 2018 Voluntary Product Accessibility Template (VPAT )... 1 About This Document... 1 PlatformQ Education Accessibility Conformance Report...

More information

Omeka Accessibility Conformance Report

Omeka Accessibility Conformance Report Omeka Accessibility Conformance Report VPAT Version 2.0 October 2017 Name of Product/Version: Omeka S version 1.1 Product Description: Omeka S is a web publishing platform designed for cultural heritage

More information

Accessible Website. Understanding and Implementing WCAG 2.0 Accessibility. Achieving compliance through Certification. Website Quality Certification

Accessible Website. Understanding and Implementing WCAG 2.0 Accessibility. Achieving compliance through Certification. Website Quality Certification Accessible Website Understanding and Implementing WCAG 2.0 Accessibility Achieving compliance through Certification Website Quality Certification Contents Executive summary 1. Introduction 2. WCAG versions:

More information

Accessibility Checklist for elearning

Accessibility Checklist for elearning Accessibility Checklist for elearning Course tested: Developer: Date: High-level Checklist The high-level checklist below is used to summarize the accessibility status of an entire elearning module. Details

More information

Web Accessibility Requirements

Web Accessibility Requirements Web Accessibility Requirements Provide your company s policy or commitment statement regarding electronic accessibility. Compliance with All Federal, State and Local Regulations YuJa Corporation believes

More information

Waterloo Drupal User Group

Waterloo Drupal User Group Waterloo Drupal User Group 2010-12- 16 Definition Legislation Guidelines and standards Resources and tools Tips Drupal Web accessibility Means that people with disabilities can use the Web (i.e., perceive,

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco WebEx Cloud Connected Audio (CCA) Portal version 5.3 Product Description: Cisco WebEx Cloud Connected Audio is an

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco WebEx Administration WBS 32.12 Product Description: Cisco WebEx Administration enables organization administrators

More information

Qualtrics Accessibility Conformance Report

Qualtrics Accessibility Conformance Report Qualtrics Accessibility Conformance Report VPAT Version 2.1 March 2018 Name of Product/Version: Qualtrics Survey Engine Product Description: Web application that collects respondent s responses to survey

More information

All contents are Copyright Cisco Systems, Inc. All rights reserved.

All contents are Copyright Cisco Systems, Inc. All rights reserved. Date: November 1, 2017 Name of Product: Cisco Service Provider Network Automation Center (SP-NAC) v1.0 Contact for more information: accessibility@cisco.com The following testing was done on a Windows

More information

A Step-by-Step Guide to Creating More Accessible Surveys

A Step-by-Step Guide to Creating More Accessible Surveys A Step-by-Step Guide to Creating More Accessible Surveys In order to be considered accessible, surveys and forms must be designed to assist hearing- or sight-impaired users. If you re planning on sharing

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: BroadCloud Rialto Enterprise Portal (Admin portal) version 22.2 Product Description: Date: May 3, 2018 Contact Information:

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco Virtual Managed Services (VMS) version 3.3 Product Description: Cisco Virtual Managed Services (VMS) is an open software

More information

Web Accessibility Checklist

Web Accessibility Checklist Web Accessibility Checklist = Web Content Accessibility Guidelines published by the World Wide Web Consortium (W3C) 508 = Section 508 of the Rehabilitation Act = Both CATE and Moodle take care of the rule

More information

High-level accessibility review BTAA (Ebsco ebooks - final version)

High-level accessibility review BTAA (Ebsco ebooks - final version) High-level accessibility review BTAA (Ebsco ebooks - final version) Primary Point of Contact Denis Boudreau Principal Web Accessibility Consultant Deque Systems, Inc. Web: www.deque.com Email: mailto:denis.boudreau@deque.com

More information

NetApp Accessibility Conformance Report

NetApp Accessibility Conformance Report October 9, 2018 NetApp Accessibility Conformance Report VPAT Version 2.1 NetApp Inc. 1395 Crossman Ave Sunnyvale CA 94089 Accessibility Partners, LLC 514 Hillsboro Drive Silver Spring, MD 20902 www.accessibilitypartners.com

More information

Date: March 15, 2017 Name of Product: Cisco Umbrella version Dashboard 2 Contact for more information:

Date: March 15, 2017 Name of Product: Cisco Umbrella version Dashboard 2 Contact for more information: Date: March 15, 2017 Name of Product: Cisco Umbrella version Dashboard 2 Contact for more information: accessibility@cisco.com The following testing was done on a Windows 10 with Freedom Scientific s JAWs

More information

Date: September 5, 2017 Name of Product: Cisco WebEx Product (web) Pages WBS32.3 Contact for more information:

Date: September 5, 2017 Name of Product: Cisco WebEx Product (web) Pages WBS32.3 Contact for more information: Date: September 5, 2017 Name of Product: Cisco WebEx Product (web) Pages WBS32.3 Contact for more information: accessibility@cisco.com The following testing was done on a Windows 10 with Freedom Scientific

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco WebEx Product Web Pages WBS32.11 Product Description: This is Cisco's WebEx product web pages for Meeting center,

More information

Satisfy Recommendation. Pass. Pass. Pass. Pass. Pass. Pass. Pass

Satisfy Recommendation. Pass. Pass. Pass. Pass. Pass. Pass. Pass ID Recommendations Satisfy Recommendation Note 1 Perceivable - Web content is made available to the senses sight, hearing, and/or touch 1.1 Text Alternatives - Provide text alternatives for any non text

More information

Ally Accessibility Checklist

Ally Accessibility Checklist Ally Accessibility Checklist PDF The PDF is malformed The PDF is encrypted The PDF is scanned o WCAG 2.0-1.4.5 Images of text The PDF is untagged o WCAG 2.0-1.3.2 Meaningful Sequence The PDF does not have

More information

2. Zoom Video Webinar runs on Windows, macos, Linux, Chrome OS, ios, Android, and

2. Zoom Video Webinar runs on Windows, macos, Linux, Chrome OS, ios, Android, and Date: August 24, 2018 Name of Product: Zoom Extensions for browsers v1.4 (Google Chrome and Mozilla Firefox) Contact for more Information: access@zoom.us Zoom's video communications product suite runs

More information

Date: April 3, 2017 Name of Product: Cisco Prime Infrastructure v3.1 Contact for more information:

Date: April 3, 2017 Name of Product: Cisco Prime Infrastructure v3.1 Contact for more information: Date: April 3, 2017 Name of Product: Cisco Prime Infrastructure v3.1 Contact for more information: accessibility@cisco.com The following testing was done on a Windows 7 with Freedom Scientific s JAWs screen

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: Cisco AnyConnect Secure Mobility Client version 4.6 Product Description: Cisco AnyConnect simplifies secure endpoint access

More information

Cisco Accessibility Conformance Report VPAT Version 2.1

Cisco Accessibility Conformance Report VPAT Version 2.1 Cisco Accessibility Conformance Report VPAT Version 2.1 Name of Product/Version: Cisco Social Miner v12.0 Product Description: Cisco Social Miner is a social media customer care solution that can help

More information

The OWASP Foundation. Compliance driven vulnerabilities The effect of a quality aspect on software security. BeNeLux OWASP Day 2009

The OWASP Foundation. Compliance driven vulnerabilities The effect of a quality aspect on software security. BeNeLux OWASP Day 2009 Compliance driven vulnerabilities The effect of a quality aspect on software security Colin Watson Watson Hall Ltd colin.watson(at)owasp.org BeNeLux OWASP Day 2009 Copyright The OWASP Foundation Permission

More information

Voluntary Product Accessibility Template (VPAT ) Revised Section 508 Edition. About This Document. Version 2.2 July 2018

Voluntary Product Accessibility Template (VPAT ) Revised Section 508 Edition. About This Document. Version 2.2 July 2018 Voluntary Product Accessibility Template (VPAT ) Edition Version 2.2 July 2018 About This Document...1 Essential Requirements and Best Practices for Information & Communications Technology (ICT) Vendors...3

More information

While you re waiting, you can set up your computer by installing these programs

While you re waiting, you can set up your computer by installing these programs Windows Chrome While you re waiting, you can set up your computer by installing these programs WAVE extension NVDA (screen reader) nvda-project.org/ webaim.org/articles/nvda/ NVDA works best with Firefox

More information

Cisco Accessibility Conformance Report VPAT Version 2.0

Cisco Accessibility Conformance Report VPAT Version 2.0 Cisco Accessibility Conformance Report VPAT Version 2.0 Name of Product/Version: UC-One Communicator for Mac v22.1 Product Description: UC-One Communicator for Desktop is a native Windows and Mac client

More information

Web Accessibility Recognition Scheme. Technical Workshop

Web Accessibility Recognition Scheme. Technical Workshop Web Accessibility Recognition Scheme Technical Workshop Website Stream Judging Criteria 2 Website Stream Silver Award Meet 13 judging criteria for website to provide basic accessibility features W01. Provide

More information

The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.

The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. Web Accessibility The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. Tim Berners-Lee, W3C Director and inventor of the World Wide Web 20% of

More information