Screen Readers, ARIA & HTML5

Similar documents
Accessible Design. Raj Lal. Nokia Inc.

Accessibility Crash Course for Web Developers. Dan Lewis Clemson University

REVEL Screen Reader Accessibility Documentation for Students

Accessible Web Mapping Apps. Kelly Hutchins Tao Zhang

My name is Elizabeth Simister and I am the current product accessibility manager at Blackboard. I got my start in accessibility in 2004 in what is

Accessibility. Content Management

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

WCAG 2.0 A and AA Requirements

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

AT Access to Flash and PDF

High-level accessibility review BTAA

Study on Web Accessibility to help develop Assistive Technology for Visually Challenged People

Learn Classic Voluntary Product Accessibility Template September 2017

Accessibility Building Accessible Apps. Klara Schmitt

Installing Firefox on Mac

Through a different lens. Sarah Pulis, Head of Accessibility Services

Accessibility Evaluation Tools

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

Quick and Practical Web Accessibility Testing for First Impressions

Turning Technologies Accessibility Conformance Report

HTML5 MOCK TEST HTML5 MOCK TEST I

Introduction to ARIA and HTML5. Jared Smith & Jonathan Whiting webaim.org

Browser Cookie Settings

Web Accessibility Evaluation Methodologies and Tools

Web Accessibility Evaluation Methodologies and Tools. Jared Smith & Jonathan Whiting webaim.org

Dojo: An Accessible JavaScript Toolkit

CSS for Page Layout Robert K. Moniot 1

Online Testing System

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

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

Connecticut Test Delivery System

Online Testing System

Learn Saas with the Ultra Experience Voluntary Product Accessibility Template August 2017

AODA Accessibility Audit for Hypothesis (embedded within Canvas)

Braille Requirements and Testing Manual

WebAIM's Screen Reader, Motor, Low Vision, and Web Accessibility Practitioner Surveys. Jared webaim.org

SecureTransport Version May Web Client User Guide

WAI-ARIA Best Practices 콘텐츠연합플랫폼클라이언트개발부지성봉

Online Testing System

BROWSERS OPTIMIZATION

Online Testing System

HTML Organizing Page Content

ICSP Section 508 System Catalog Meeting. Wednesday, February 29, 2012

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

Online Testing System

Braille Requirements and Testing Manual

Browser Checklist. Objective. Content. 1) Zurich recommended browser

Sample Accessibility Evaluation Report

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

Test Delivery System. Braille Requirements and Testing Manual. Rhode Island Next Generation Science Assessment. Published January 24, 2018

Braille Requirements and Testing Manual

Setup Skype for Business & Salesforce (beta) Integration guide

RIT Wiki 5.1 Upgrade - May 21, 2013

How to lay out a web page with CSS

Moodlerooms Voluntary Product Accessibility Template January 2016

Manual Internet Explorer 9 Xp 32 Bit Windows Vista

Schoology Voluntary Product Accessibility Template (VPAT)

1 / 112. Web Accessibility

Trouble Shooting Portable Documents Format (PDF) Q/A Solutions: AT ANY TIME THE USER CAN SAVE THE FILE TO THEIR COMPUTER AND FILL OUT THE FORM

Blackboard Voluntary Product Accessibility Template September 2015

How to lay out a web page with CSS

Cisco Accessibility Conformance Report VPAT Version 2.0

For a detailed description of the parent features and benefits, please refer to the following URL:

Oracle PeopleSoft PeopleTools 8.54 Product Documentation Update. PeopleSoft Fluid User Interface

NetAdvantage for ASP.NET Release Notes

Manual Internet Explorer 8 Pdf Problem Open In Browser

Overview. At Course Completion After completing this course, students will be learn about and be able to:

Salesforce1 - ios App (Phone)

Interactive Form Troubleshooting and FAQS

California Open Online Library for Education & Accessibility

Confluence User Training Guide

VMware vsphere Update Manager 6.0 VPAT

('cre Learning that works for Utah STRANDS AND STANDARDS WEB DEVELOPMENT 1

DPS Baseline Analytics

5 Important (and Free) Tools for Web Accessibility Testing

HTML Organizing Page Content

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches

Cisco Accessibility Conformance Report VPAT Version 2.1

Using CSS for page layout

HTML5 - INTERVIEW QUESTIONS

An introduction to screen readers

LIBRARY AND INFORMATION RESOURCES NETWORK GATEWAY 3.5. Release Notes

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

Introducing web-accessibility. Making night and day difference as a developer.

Understanding this structure is pretty straightforward, but nonetheless crucial to working with HTML, CSS, and JavaScript.

California Open Online Library for Education & Accessibility

HTML CS 4640 Programming Languages for Web Applications

What is EasyWeb?! 3 EasyWeb QuickStart! 4. Publishing Your Website! 10

SecureTransport Version September Web Client User Guide

Release Notes: J-Web Application Package Release 15.1A4 for Juniper Networks EX Series Ethernet Switches

California Open Online Library for Education & Accessibility

PRINTING IN ESCRIBE...2

Panopto 5.5 Release Notes

Smart Events Cloud Release December 2016

SKILLSCOMMONS ACCESSIBILITY CHECKPOINTS METHODS FOR EVALUATING THE ACCESSIBILITY OF WORD DOCUMENTS USING ASSISTIVE TECHNOLOGIES

Preparing your shop & customers for Online Statements and Invoices

Responsive Web Design (RWD)

Agilix Buzz Accessibility Statement ( )

Salesforce1 - ios App (Phone)

Web Community Manager 2.18 Release Notes

Transcription:

Screen Readers, ARIA & HTML5 Jason Kiss accessibleculture.org @jkiss Accessibility Summit 2011 Sept. 27, 2011

2 Today's Agenda Basic HTML5 elements ARIA landmark roles Browsers, accessibility APIs, and screen readers Expected screen reader behaviour Actual screen reader behaviour (with videos) JAWS, NVDA, Window-Eyes VoiceOver HTML5/ARIA accessibility: a shared responsibility

3 Basic HTML5 section elements article aside footer header nav section <header> <nav> <article> <header> <section> <section> <footer> <aside> <footer>

4 WAI-ARIA a bunch of attributes: roles, states, properties dynamic, interactive content document structure part of the HTML5 specification

Landmark Roles regions of the page intended as navigational landmarks application banner complementary contentinfo form main navigation search Example <div id= main role= main > 5

6 Document Structure Roles structures that organize content in a page article listitem columnheader math definition note directory presentation document region group row heading rowheader img separator list toolbar

7 HTML5 Element Implied ARIA Role Permitted ARIA Role article article* article, document, application, or main aside complementary note, complementary, or search footer none contentinfo (one per document) header none banner (one per document) nav navigation navigation section region* alert, alertdialog, application, contentinfo, dialog, document, log, main, marquee, region, search, or status * Not a landmark role

8 <header> <nav> Link #1 Link #2 <div id= main > <section> <article> <header> <aside> <form> Search <footer> <div id= application > button <div id= form > button <footer>

9 <header role= banner > <nav role= navigation > Link #1 Link #2 <div id= main role= main > <section role= region > <article role= article > <header> <aside role= complementary > <form role= search > Search <footer> <div id= application role= application > button <div id= form role= form > button <footer role= contentinfo >

10 HTML5 Only Test Case

11 HTML5 plus ARIA Roles Test Case

12 How Screen Readers Get Information Accessibility APIs Interface between the browser and screen reader Browsers relay roles, states, properties, and events to the API Screen readers access the API and are notified of changes in elements, states, properties

13 Accessibility APIs Internet Explorer 6 and 7 Microsoft Active Accessibility (MSAA) Internet Explorer 8 and 9 Microsoft Active Accessibility (MSAA) User Interface Automation (UIA) [Windows 7]

14 Accessibility APIs Firefox in Windows Microsoft Active Accessibility (MSAA) IAccessible2 (IA2) Safari and the Mac Accessibility API Mac Accessibility API

15 Accessibility APIs Extreme Variability in: What type of information each API supports The information the browser sends to the API The information the screen reader takes from the API

16 Document Object Model (DOM) A tree of nodes: elements and their attributes Screen readers can access the DOM directly Is useful when: the API does not support certain information, or the information sent by the browser to the API is incomplete

17 http://www.paciellogroup.com/blog/ Great source of info on: ARIA support in browsers & screen readers Accessibility API support

18 Screen Reader & Landmark Interaction Navigation by landmark Special keyboard commands Reading through the page Announce landmarks as they come Note the entering and leaving of landmarks ARIA Landmarks List Dialog Special dialog window listing all landmarks

19 Expected Screen Reader Behaviour HTML5 Only <aside> complementary landmark <footer> contentinfo landmark once per document <header> banner landmark once per document <nav> navigation landmark

20 Expected Screen Reader Behaviour HTML5 plus ARIA Roles All explicitly identified landmark roles are announced Document structure roles, e.g., article and region, are not announced

JAWS 12/13 HTML5 Only HTML5 Element article* aside footer header nav section* JAWS 12/13 article (IE6+ and FF) No contentinfo (FF Only) banner (FF Only) navigation (IE6+ & FF) No Issues article is not a landmark In FF, every header is a banner landmark In FF, every footer is a contentinfo landmark Heading structure is incorrect 21

22 JAWS 12/13 HTML5 Only JAWS reads from the DOM to identify article and nav elements as landmarks This is why article and nav elements are considered landmarks even in IE6 In FF, JAWS also uses the API: all header and footer elements are called banner and contentinfo landmarks

23 Header Nav <h2> JAWS: <h3> Link #1 Link #2 Content <h1> Section <h2> JAWS: <h3> <article> Article Header <h3> JAWS: <h5> Aside <h2> <form> Search Article Footer <h3> JAWS: <h5> Application <h2> Form <h2> button button Footer <h2>

JAWS 12/13 HTML5 plus ARIA Roles ARIA Role JAWS 12/13 application article* banner complementary contentinfo Yes Yes Yes Yes Yes Issues article and region are not landmarks Heading structure is incorrect form main navigation region* search Yes Yes Yes Yes Yes 24

25 VIDEO JAWS 12.0.1170 Firefox 6 HTML5 and ARIA roles Navigation by landmark 1 min 4 seconds

26 New Behaviour in JAWS 13 Each landmark is called a landmark region, e.g., navigation landmark region JAWS announces the start and end of landmarks, e.g., banner landmark region start banner landmark region end

27 VIDEO JAWS 13.0.97 Internet Explorer 9 HTML5 and ARIA roles Reading through the page 46 seconds

28 JAWS 10/11 HTML5 <header> bug in Firefox Content inside the header element is not accessible! Fixed in JAWS 12

29 NVDA 2011.2 HTML5 Only HTML5 Element article* aside footer header nav section* No No NVDA 2011.2 contentinfo (FF Only) banner (FF Only) navigation (FF Only) No Issues In FF, every header is a banner landmark In FF, every footer is a contentinfo landmark

30 NVDA 2011.2 HTML5 Only NVDA is not using the DOM, but relying on the APIs This is why in IE, no HTML5 elements on their own are considered landmarks This is why in FF, nav, header, and footer are considered landmarks

31 VIDEO NVDA 2011.2 Firefox 6 HTML5 Only No ARIA roles Navigation by landmark 33 seconds

NVDA 2011.2 HTML5 plus ARIA Roles ARIA Role NVDA 2011.2 application article* banner complementary contentinfo form main navigation region* search No No Yes Yes Yes No Yes Yes No Yes Issues Doesn't identify application or form landmarks In FF, header and footer elements without landmarks are still called banner and contentinfo landmarks 32

NVDA 2011.2 HTML5 plus ARIA Roles In FF, NVDA is reading landmark role information from the IA2 API In IE, NVDA gets it straight from the DOM, since IE passes no landmark information to the API This is why in IE6 and above, NVDA announces the same landmark roles as it does in FF 33

34 VIDEO NVDA 2011.2 Firefox 6 HTML5 and ARIA roles Navigation by landmark 51 seconds

35 VoiceOver / Mac OS X Lion HTML5 Only HTML5 Element article* aside footer header nav section* No No No No No No VoiceOver Issues Doesn't announce any implied landmarks

VoiceOver / Mac OS X Lion HTML5 plus ARIA Roles ARIA Role application article* banner complementary contentinfo form main navigation region* search Yes No Yes Yes Yes No Yes Yes No Yes VoiceOver Issues Doesn't identify form landmarks Doesn't announce the landmark type when navigating by landmark Features Announces entering and leaving landmark 36

37 VIDEO VoiceOver / Mac OS X Lion Safari 5 HTML5 and ARIA roles 1 min 53 seconds

38 Window-Eyes 7.5.0 and Earlier Just don't do HTML5 or ARIA landmarks HTML5 and Internet Explorer Lists and headings get corrupted when used with basic HTML5 elements Window-Eyes finds frames where none exist Page structure is misrepresented

39 Window-Eyes Fortunately, these bugs... are not a problem in Firefox are fixed in Window-Eyes 7.5.1

40 VIDEO Window-Eyes 7.5.0 Internet Explorer 9 HTML5 and ARIA roles 1 min 43 seconds

41 Accessibility: A Shared Responsibility Browser vendors Screen reader vendors Developers Users

42 Accessibility: A Shared Responsibility Browser vendors Implement HTML5 and ARIA according to their specifications Fully utilise the accessibility APIs to pass information to assistive technology

43 Accessibility: A Shared Responsibility Screen Reader vendors Implement HTML5 and ARIA according to their specifications Fully utilise the accessibility APIs to present page structure, content, and events to the user

44 Accessibility: A Shared Responsibility Developers Implement HTML5 and ARIA according to their specifications Offer reasonable workarounds as necessary to improve the experience for screen readers Know the audience and the technology users have at their disposal Identify and report bugs

45 Accessibility: A Shared Responsibility Users Use screen readers that support HTML5 and ARIA Keep the screen reader up-to-date Not settle for less: Demand improved support from vendors Identify and report bugs

46 A More Accessible Web Use HTML5 and ARIA, but... Understand how it can impact users Make an informed decision that balances your development needs with the access needs of your potential audience

Thanks! Jason Kiss accessibleculture.org @jkiss Accessibility Summit 2011 Sept. 27, 2011 47