SlideShare a Scribd company logo
1 of 38
A Toolkit for Digital
Accessibility Requirements
Jack Nicolai
nicolai@adobe.com
Accessibility Product Manager, Creative Cloud
at Adobe Systems, Incorporated
Presentation assets: http://bit.ly/a11y-toolkit-access
Agenda
• Problem Statement
• Solution
• Roles and responsibilities
• Methods
Problem Statement
Accessibility requirements are not documented clearly, consistently or
in a way that other professionals can easily understand and act upon
them.
Solution
Employ standard documentation methods to express accessibility
requirements, which can be written by professionals knowledgeable
about accessibility, understood by stakeholders, actionable by
engineers and used as a basis to validate functionality.
Create artifacts that document requirements, which then drive
conversations about how to make your software accessible.
Authors of Accessibility Requirements
• Product Manager
• Experience Designer
• Graphic or Product Designer
• Content Strategist
• Accessibility professional
Consumers of Accessibility Requirements
• Experience Designer
• Graphic or Product Designer
• Content Strategist/Writer
• Engineer
• Tester
• Business stakeholder
• Accessibility professional
Communicating Accessibility Requirements
• User stories
• Wireframes
• Design comps
• Design specs or patterns
• Technical specs
• Prototypes
• Test cases
Methods
• User Stories
• Design Specs
• Test Cases
Search Results Interface
Method: User Stories
Accessibility Requirements
What is a User Story?
A user story is a high-level (user-centered) definition of a requirement
(which delivers value), containing just enough information so that the
developers can produce a reasonable estimate of the effort to
implement it (and tests can be written to validate it).
"As a <role>, I want <goal/desire> so that <benefit>"
Stories may include additional information and resources such as
additional context, acceptance criteria, diagrams, technical
specifications and links to other resources.
User Story: 1 of 3
Title: Keyboarding – Search Results
Description: As a keyboard user, I want to keyboard navigate and filter
the search results for restaurants near me so that I can find a place to
eat. Focusable elements should be in a logical order and display a clear
indication of focus.
User Story: 2 of 3
Acceptance Criteria:
• All functionality of the content is operable through a keyboard interface.
• TAB key moves through the list of search results in the natural keyboard
order of the Document Object Model (DOM).
• With focus on a filter heading, the SPACE or ENTER key will expand the
filter accordion. The elements inside an expanded filter should then be
added to the tab order in the manner indicated in the associated diagram.
• When focus is on a filter heading, RIGHT ARROW will expand the accordion,
LEFT ARROW will collapse the accordion.
• When focus is on one of the children of the accordion, Pressing DOWN/UP
ARROW key will move focus to the next or previous filter in the list.
User Story: 3 of 3
Context:
• WCAG 2.1
• 2.1.1 Keyboard
• 2.4.3 Focus Order
• 1.3.2 Meaningful Sequence
• ARIA 1.2 Authoring Practices (Design Patterns)
• 3.1 Accordion
• 3.11 Grids
• 3.22 Toolbar
Method: Bluelines
Annotating Accessibility
Key concepts to annotate
• Wayfinding
• Focus order
• Keyboarding – tabbing, shortcuts
• Content structure
• The content behind the content
• Label, role, state, and properties
• Screen Reader-only content
Accessibility Annotations
Keyboarding and Focus Order
Focus Order – Accordion detail
Accounting for Assistive Technology: 1 of 2
• Label, role, state
• announced immediately
• aria-label, aria-labelledby
• Hint/description/aria-describedby
• Announced after a slight pause
• Can be turned off in AT preferences
• AT (announcement)
• An approximation of what will be announced by AT to guide engineers and
testers
Accounting for Assistive Technology: 2 of 2
Name, Role, State and Properties
• label=“Neighborhood”
• role=“button”
• expanded=“true”,
• description=“Select a filter to narrow your search results.”
• AT: “Neighborhood, expanded, button, (pause) Select a filter to
narrow your search results.”
Assistive Technology – Accordion
Content Structure
• Utilize the semantic structures available in HTML
• Heading levels
• <fieldset> and <legend> for groups of elements
• Lists
• Regions
• Default regions via HTML5
• Labelled regions
ARIA Landmark Regions
Method: Test Cases
Accessibility Testing
Types of Acceptance Criteria – Page Level
• 1.3.1 Info and Relationships
• 1.3.2 Meaningful Sequence
• 1.4.1 Use of Color
• 1.4.3 Contrast
• 1.4.4 Resize Text
• 2.1.1 Keyboard
• 2.1.2 No Keyboard Trap
• 2.2.1 Timing Adjustable
• 2.3.1 Three Flashes or Below
Threshold
• 2.4.1 Bypass Blocks
• 2.4.2 Page Titled
• 2.4.4 Link Purpose
• 2.4.5 Multiple Ways
• 2.4.6 Headings and Labels
• 3.1.1 Language of Page
• 3.2.3 Consistent Navigation
• 3.2.4 Consistent Identification
• 4.1.1 Parsing
Types of Acceptance Criteria – Component Level
Single Component
• Images
• Multimedia
• Form elements
• Tables
Complex Component
• Accordion
• Carousel
• Dropdown
• Dialog
• Menu
Acceptance Criteria Format
• Given some initial context
• When some action is carried out or event occurs
• Then a particular set of observable consequences result
Acceptance Criteria for an Accordion
Given that I have focus on the heading of an accordion, when I press the
ENTER or SPACE key to toggle the accordion, (then) the associated panel
toggles between expanded or collapsed (2.1.1 Keyboard, 4.1.2 Name, Role,
State)
Checks:
• Role=“button”, using native HTML control or ARIA role=“button”
• Name – using one of the following methods: label, aria-label, or aria-
labelledby
• State – using aria-expanded
• Relationship – using aria-controls to point to associated panel
Documenting an accessibility bug
In addition to including details like Steps to Reproduce, include:
Affected Populations
[ex. Blind, Low-Vision, Motor Impaired, Cognitively Impaired]
WCAG Success Criteria
A list of WCAG Success Criteria related to the bug. Example: 1.3.1 Info
and Relationships (Level A)
Bluelines are catching on
Lifetime Fitness used Bluelines to
annotate designs for the redesign
of their customer facing website.
Announcements
Digital Accessibility Toolkit
• User Story example (Rich Text Format)
• Accessibility annotation assets (Illustrator and SVG)
• Wireframe examples (Adobe XD CC and PNG formats)
• Test Case example (Rich Text Format)
Additional resources
• Blueline cheat sheet (Accessibility Bluelines.pdf)
• Bluelines and accessibility checklist (A11y-checklist.xd)
• Additional user stories examples??
Additional Considerations
• Style Guides
• Pattern Libraries
• Color Contrast
• Tooltips
• Keyboard shortcuts
• Touch and gestures
• Text resizing
• Voice control
• Additional content for assistive
technology users, i.e., using aria-
describedby in web pages, hints in
iOS applications or a content
description in Android applications.
Resources
• Presentation and Digital Accessibility Toolkit
• Kathy Walbin, How to Write User Stories for Web Accessibility
• Sarah Pulis, Reusable Acceptance Criteria and Test Cases for
Accessibility
• Overview of (WCAG) Design Principles
• Tom Osborne, Color Contrast for Better Readability
• Stark, Color-blind simulator and contrast check for Sketch
• Web Content Accessibility Guidelines (WCAG) 2.0
Resources
• Accessible Design and Development in Microsoft Office
Thank you
Presentation assets: http://bit.ly/a11y-toolkit-access

More Related Content

What's hot

What's hot (20)

Web accessibility 101: The why, who, what, and how of "a11y"
Web accessibility 101: The why, who, what, and how of "a11y"Web accessibility 101: The why, who, what, and how of "a11y"
Web accessibility 101: The why, who, what, and how of "a11y"
 
Web Accessibility for Web Developers
Web Accessibility for Web DevelopersWeb Accessibility for Web Developers
Web Accessibility for Web Developers
 
Accessibility Basics
Accessibility BasicsAccessibility Basics
Accessibility Basics
 
Accessible UX: Beyond the checklist to great experiences
Accessible UX: Beyond the checklist to great experiencesAccessible UX: Beyond the checklist to great experiences
Accessible UX: Beyond the checklist to great experiences
 
Annotating designs for accessibility
Annotating designs for accessibilityAnnotating designs for accessibility
Annotating designs for accessibility
 
Basics of Web Accessibility
Basics of Web AccessibilityBasics of Web Accessibility
Basics of Web Accessibility
 
Web Accessibility: A Shared Responsibility
Web Accessibility: A Shared ResponsibilityWeb Accessibility: A Shared Responsibility
Web Accessibility: A Shared Responsibility
 
A11y user stories csun 2018
A11y user stories csun 2018A11y user stories csun 2018
A11y user stories csun 2018
 
Web Accessibility
Web AccessibilityWeb Accessibility
Web Accessibility
 
UX and Accessibility
UX and Accessibility UX and Accessibility
UX and Accessibility
 
Website Accessibility
Website AccessibilityWebsite Accessibility
Website Accessibility
 
Web Accessibility
Web AccessibilityWeb Accessibility
Web Accessibility
 
Usability and User Experience
Usability and User ExperienceUsability and User Experience
Usability and User Experience
 
Accessible Design Presentation
Accessible Design PresentationAccessible Design Presentation
Accessible Design Presentation
 
Introduction to Balsamiq Mockups
Introduction to Balsamiq MockupsIntroduction to Balsamiq Mockups
Introduction to Balsamiq Mockups
 
Rethinking Accessibility: Role-based Accessibility of WCAG 2.1
Rethinking Accessibility: Role-based Accessibility of WCAG 2.1Rethinking Accessibility: Role-based Accessibility of WCAG 2.1
Rethinking Accessibility: Role-based Accessibility of WCAG 2.1
 
A Web for Everyone: Accessibility as a design challenge
A Web for Everyone: Accessibility as a design challengeA Web for Everyone: Accessibility as a design challenge
A Web for Everyone: Accessibility as a design challenge
 
Design for accessibility
Design for accessibilityDesign for accessibility
Design for accessibility
 
Usabilidad y Experiencia de Usuario
Usabilidad y Experiencia de UsuarioUsabilidad y Experiencia de Usuario
Usabilidad y Experiencia de Usuario
 
Graphical User Interface in JAVA
Graphical User Interface in JAVAGraphical User Interface in JAVA
Graphical User Interface in JAVA
 

Similar to Toolkit for the Digital Accessibility Space

Accessible dynamic forms
Accessible dynamic formsAccessible dynamic forms
Accessible dynamic forms
Dylan Barrell
 

Similar to Toolkit for the Digital Accessibility Space (20)

1.3.5 more than autocomplete
1.3.5 more than autocomplete1.3.5 more than autocomplete
1.3.5 more than autocomplete
 
Conformance Checklist for Product Owner
Conformance Checklist for Product OwnerConformance Checklist for Product Owner
Conformance Checklist for Product Owner
 
Accessibility and universal usability
Accessibility and universal usabilityAccessibility and universal usability
Accessibility and universal usability
 
Accessibility: Navigation, Forms, & Multimedia
Accessibility: Navigation, Forms, & MultimediaAccessibility: Navigation, Forms, & Multimedia
Accessibility: Navigation, Forms, & Multimedia
 
Power of Flows and Prepare for Salesforce Admin Certification
Power of Flows and Prepare for Salesforce Admin CertificationPower of Flows and Prepare for Salesforce Admin Certification
Power of Flows and Prepare for Salesforce Admin Certification
 
Creating Accessible PDFs with Acrobat: Requirements, Implementation, and Eval...
Creating Accessible PDFs with Acrobat: Requirements, Implementation, and Eval...Creating Accessible PDFs with Acrobat: Requirements, Implementation, and Eval...
Creating Accessible PDFs with Acrobat: Requirements, Implementation, and Eval...
 
Creating a Great XPages User Interface
Creating a Great XPages User InterfaceCreating a Great XPages User Interface
Creating a Great XPages User Interface
 
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
 
EVOLVE"13 | Maximize & Enhance | Accessibility | Kiran Kaja
EVOLVE"13 | Maximize & Enhance | Accessibility | Kiran KajaEVOLVE"13 | Maximize & Enhance | Accessibility | Kiran Kaja
EVOLVE"13 | Maximize & Enhance | Accessibility | Kiran Kaja
 
Website Accessibility Workshop
Website Accessibility WorkshopWebsite Accessibility Workshop
Website Accessibility Workshop
 
MC01 - Maintenance Connection 101
MC01 - Maintenance Connection 101 MC01 - Maintenance Connection 101
MC01 - Maintenance Connection 101
 
Accessible dynamic forms
Accessible dynamic formsAccessible dynamic forms
Accessible dynamic forms
 
Taming the shrew Power BI
Taming the shrew Power BITaming the shrew Power BI
Taming the shrew Power BI
 
Usability awareness brown bag
Usability awareness brown bagUsability awareness brown bag
Usability awareness brown bag
 
Manual Testing software testing all slide
Manual Testing software testing all slideManual Testing software testing all slide
Manual Testing software testing all slide
 
manualtesting-170218090020 (1).pdf
manualtesting-170218090020 (1).pdfmanualtesting-170218090020 (1).pdf
manualtesting-170218090020 (1).pdf
 
Development Guideline
Development GuidelineDevelopment Guideline
Development Guideline
 
Data Visualization - UC Analytics Conference 2018
Data Visualization - UC Analytics Conference 2018Data Visualization - UC Analytics Conference 2018
Data Visualization - UC Analytics Conference 2018
 
Web Accessibility Top 10 - LCC (1/2 day workshop, August 2013)
Web Accessibility Top 10 - LCC (1/2 day workshop, August 2013)Web Accessibility Top 10 - LCC (1/2 day workshop, August 2013)
Web Accessibility Top 10 - LCC (1/2 day workshop, August 2013)
 
Building Accessible Forms: Abilitynet Accessibility Webinar 26 Feb 2015
Building Accessible Forms: Abilitynet Accessibility Webinar 26 Feb 2015Building Accessible Forms: Abilitynet Accessibility Webinar 26 Feb 2015
Building Accessible Forms: Abilitynet Accessibility Webinar 26 Feb 2015
 

More from 3Play Media

More from 3Play Media (20)

Advancing Equity and Inclusion for Deaf Students in Higher Education
Advancing Equity and Inclusion for Deaf Students in Higher EducationAdvancing Equity and Inclusion for Deaf Students in Higher Education
Advancing Equity and Inclusion for Deaf Students in Higher Education
 
"Am I Doing This Right?" Imposter Syndrome and Accessibility Maturity
"Am I Doing This Right?" Imposter Syndrome and Accessibility Maturity"Am I Doing This Right?" Imposter Syndrome and Accessibility Maturity
"Am I Doing This Right?" Imposter Syndrome and Accessibility Maturity
 
The 3Play Way: Real-Time Captioning in Higher Education
The 3Play Way: Real-Time Captioning in Higher EducationThe 3Play Way: Real-Time Captioning in Higher Education
The 3Play Way: Real-Time Captioning in Higher Education
 
Developing a Centrally Supported Captioning System with Utah State University
Developing a Centrally Supported Captioning System with Utah State UniversityDeveloping a Centrally Supported Captioning System with Utah State University
Developing a Centrally Supported Captioning System with Utah State University
 
Developing a Centrally Supported Captioning System with Utah State University
Developing a Centrally Supported Captioning System with Utah State UniversityDeveloping a Centrally Supported Captioning System with Utah State University
Developing a Centrally Supported Captioning System with Utah State University
 
Lessons Learned: Canada’s Past, Present, and Future Leadership in Digital Acc...
Lessons Learned: Canada’s Past, Present, and Future Leadership in Digital Acc...Lessons Learned: Canada’s Past, Present, and Future Leadership in Digital Acc...
Lessons Learned: Canada’s Past, Present, and Future Leadership in Digital Acc...
 
Product Innovation is on the Edge
Product Innovation is on the EdgeProduct Innovation is on the Edge
Product Innovation is on the Edge
 
Why Every Company Needs to Think and Act Like a Media Company
Why Every Company Needs to Think and Act Like a Media CompanyWhy Every Company Needs to Think and Act Like a Media Company
Why Every Company Needs to Think and Act Like a Media Company
 
2023 State of Automatic Speech Recognition
2023 State of Automatic Speech Recognition2023 State of Automatic Speech Recognition
2023 State of Automatic Speech Recognition
 
Complex Identities: The Intersection of Disability with Race, Culture, Gender...
Complex Identities: The Intersection of Disability with Race, Culture, Gender...Complex Identities: The Intersection of Disability with Race, Culture, Gender...
Complex Identities: The Intersection of Disability with Race, Culture, Gender...
 
Accessibility as a Gateway to Creativity
Accessibility as a Gateway to CreativityAccessibility as a Gateway to Creativity
Accessibility as a Gateway to Creativity
 
Disability Inclusion for Leadership
Disability Inclusion for LeadershipDisability Inclusion for Leadership
Disability Inclusion for Leadership
 
How to Tell Whether UDL is Working
How to Tell Whether UDL is WorkingHow to Tell Whether UDL is Working
How to Tell Whether UDL is Working
 
Neurodivergency at work (P2) – 3Play and B-I.pdf
Neurodivergency at work (P2) – 3Play and B-I.pdfNeurodivergency at work (P2) – 3Play and B-I.pdf
Neurodivergency at work (P2) – 3Play and B-I.pdf
 
Neurodiversity in the Workplace - Part 1
Neurodiversity in the Workplace - Part 1Neurodiversity in the Workplace - Part 1
Neurodiversity in the Workplace - Part 1
 
How To Deliver an Accessible Online Presentation
How To Deliver an Accessible Online PresentationHow To Deliver an Accessible Online Presentation
How To Deliver an Accessible Online Presentation
 
Power of an Accessible Website.pdf
Power of an Accessible Website.pdfPower of an Accessible Website.pdf
Power of an Accessible Website.pdf
 
2022 Digital Accessibility Legal Update.pdf
2022 Digital Accessibility Legal Update.pdf2022 Digital Accessibility Legal Update.pdf
2022 Digital Accessibility Legal Update.pdf
 
Intro to Live Captioning for Broadcast.pdf
Intro to Live Captioning for Broadcast.pdfIntro to Live Captioning for Broadcast.pdf
Intro to Live Captioning for Broadcast.pdf
 
How to Scale a Sustainable Accessibility Program
How to Scale a Sustainable Accessibility Program How to Scale a Sustainable Accessibility Program
How to Scale a Sustainable Accessibility Program
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 

Toolkit for the Digital Accessibility Space

  • 1. A Toolkit for Digital Accessibility Requirements Jack Nicolai nicolai@adobe.com Accessibility Product Manager, Creative Cloud at Adobe Systems, Incorporated Presentation assets: http://bit.ly/a11y-toolkit-access
  • 2. Agenda • Problem Statement • Solution • Roles and responsibilities • Methods
  • 3. Problem Statement Accessibility requirements are not documented clearly, consistently or in a way that other professionals can easily understand and act upon them.
  • 4. Solution Employ standard documentation methods to express accessibility requirements, which can be written by professionals knowledgeable about accessibility, understood by stakeholders, actionable by engineers and used as a basis to validate functionality. Create artifacts that document requirements, which then drive conversations about how to make your software accessible.
  • 5. Authors of Accessibility Requirements • Product Manager • Experience Designer • Graphic or Product Designer • Content Strategist • Accessibility professional
  • 6. Consumers of Accessibility Requirements • Experience Designer • Graphic or Product Designer • Content Strategist/Writer • Engineer • Tester • Business stakeholder • Accessibility professional
  • 7. Communicating Accessibility Requirements • User stories • Wireframes • Design comps • Design specs or patterns • Technical specs • Prototypes • Test cases
  • 8. Methods • User Stories • Design Specs • Test Cases
  • 11. What is a User Story? A user story is a high-level (user-centered) definition of a requirement (which delivers value), containing just enough information so that the developers can produce a reasonable estimate of the effort to implement it (and tests can be written to validate it). "As a <role>, I want <goal/desire> so that <benefit>" Stories may include additional information and resources such as additional context, acceptance criteria, diagrams, technical specifications and links to other resources.
  • 12. User Story: 1 of 3 Title: Keyboarding – Search Results Description: As a keyboard user, I want to keyboard navigate and filter the search results for restaurants near me so that I can find a place to eat. Focusable elements should be in a logical order and display a clear indication of focus.
  • 13. User Story: 2 of 3 Acceptance Criteria: • All functionality of the content is operable through a keyboard interface. • TAB key moves through the list of search results in the natural keyboard order of the Document Object Model (DOM). • With focus on a filter heading, the SPACE or ENTER key will expand the filter accordion. The elements inside an expanded filter should then be added to the tab order in the manner indicated in the associated diagram. • When focus is on a filter heading, RIGHT ARROW will expand the accordion, LEFT ARROW will collapse the accordion. • When focus is on one of the children of the accordion, Pressing DOWN/UP ARROW key will move focus to the next or previous filter in the list.
  • 14. User Story: 3 of 3 Context: • WCAG 2.1 • 2.1.1 Keyboard • 2.4.3 Focus Order • 1.3.2 Meaningful Sequence • ARIA 1.2 Authoring Practices (Design Patterns) • 3.1 Accordion • 3.11 Grids • 3.22 Toolbar
  • 16. Key concepts to annotate • Wayfinding • Focus order • Keyboarding – tabbing, shortcuts • Content structure • The content behind the content • Label, role, state, and properties • Screen Reader-only content
  • 19. Focus Order – Accordion detail
  • 20. Accounting for Assistive Technology: 1 of 2 • Label, role, state • announced immediately • aria-label, aria-labelledby • Hint/description/aria-describedby • Announced after a slight pause • Can be turned off in AT preferences • AT (announcement) • An approximation of what will be announced by AT to guide engineers and testers
  • 21. Accounting for Assistive Technology: 2 of 2 Name, Role, State and Properties • label=“Neighborhood” • role=“button” • expanded=“true”, • description=“Select a filter to narrow your search results.” • AT: “Neighborhood, expanded, button, (pause) Select a filter to narrow your search results.”
  • 23. Content Structure • Utilize the semantic structures available in HTML • Heading levels • <fieldset> and <legend> for groups of elements • Lists • Regions • Default regions via HTML5 • Labelled regions
  • 26. Types of Acceptance Criteria – Page Level • 1.3.1 Info and Relationships • 1.3.2 Meaningful Sequence • 1.4.1 Use of Color • 1.4.3 Contrast • 1.4.4 Resize Text • 2.1.1 Keyboard • 2.1.2 No Keyboard Trap • 2.2.1 Timing Adjustable • 2.3.1 Three Flashes or Below Threshold • 2.4.1 Bypass Blocks • 2.4.2 Page Titled • 2.4.4 Link Purpose • 2.4.5 Multiple Ways • 2.4.6 Headings and Labels • 3.1.1 Language of Page • 3.2.3 Consistent Navigation • 3.2.4 Consistent Identification • 4.1.1 Parsing
  • 27. Types of Acceptance Criteria – Component Level Single Component • Images • Multimedia • Form elements • Tables Complex Component • Accordion • Carousel • Dropdown • Dialog • Menu
  • 28. Acceptance Criteria Format • Given some initial context • When some action is carried out or event occurs • Then a particular set of observable consequences result
  • 29. Acceptance Criteria for an Accordion Given that I have focus on the heading of an accordion, when I press the ENTER or SPACE key to toggle the accordion, (then) the associated panel toggles between expanded or collapsed (2.1.1 Keyboard, 4.1.2 Name, Role, State) Checks: • Role=“button”, using native HTML control or ARIA role=“button” • Name – using one of the following methods: label, aria-label, or aria- labelledby • State – using aria-expanded • Relationship – using aria-controls to point to associated panel
  • 30. Documenting an accessibility bug In addition to including details like Steps to Reproduce, include: Affected Populations [ex. Blind, Low-Vision, Motor Impaired, Cognitively Impaired] WCAG Success Criteria A list of WCAG Success Criteria related to the bug. Example: 1.3.1 Info and Relationships (Level A)
  • 31. Bluelines are catching on Lifetime Fitness used Bluelines to annotate designs for the redesign of their customer facing website.
  • 33. Digital Accessibility Toolkit • User Story example (Rich Text Format) • Accessibility annotation assets (Illustrator and SVG) • Wireframe examples (Adobe XD CC and PNG formats) • Test Case example (Rich Text Format)
  • 34. Additional resources • Blueline cheat sheet (Accessibility Bluelines.pdf) • Bluelines and accessibility checklist (A11y-checklist.xd) • Additional user stories examples??
  • 35. Additional Considerations • Style Guides • Pattern Libraries • Color Contrast • Tooltips • Keyboard shortcuts • Touch and gestures • Text resizing • Voice control • Additional content for assistive technology users, i.e., using aria- describedby in web pages, hints in iOS applications or a content description in Android applications.
  • 36. Resources • Presentation and Digital Accessibility Toolkit • Kathy Walbin, How to Write User Stories for Web Accessibility • Sarah Pulis, Reusable Acceptance Criteria and Test Cases for Accessibility • Overview of (WCAG) Design Principles • Tom Osborne, Color Contrast for Better Readability • Stark, Color-blind simulator and contrast check for Sketch • Web Content Accessibility Guidelines (WCAG) 2.0
  • 37. Resources • Accessible Design and Development in Microsoft Office
  • 38. Thank you Presentation assets: http://bit.ly/a11y-toolkit-access

Editor's Notes

  1. Greetings, my name is Jack Nicolai. I am the Accessibility Product Manager for the Creative Cloud products at Adobe. You can download this presentation deck in both PowerPoint and Word document format from Dropbox using the bit.ly link http://bit.ly/a11y-toolkit-access, along with a set of assets I will be introducing in the presentation.
  2. Today I will be talking about a problem I identified while working with software development teams. I will be proposing a solution to that problem. I will also be talking about who is involved in the solution, and how to go about implementing it.
  3. I interact with a lot of people who know little to nothing about accessibility but are being tasked with making their applications accessible. Until the people I am working with have a certain level of fluency in accessibility I tend to document accessibility requirements in detail. This is in part to educate and to anticipate where questions may arise. Ultimately, the point of this presentation today is to share some methods for communicating accessibility requirements and to foster conversations about accessibility within product development teams.
  4. This is a lofty goal of which I haven’t fully achieved success. What I share with you today are things that I commonly do in my own work and have seen different versions of from other accessibility professionals that I think will be of value to you.
  5. Who should be including accessibility concerns in their work? This is a representative list and may include additional roles not listed. I like to conduct a poll to find out who in your organization is documenting accessibility requirements. Please raise your hand if you include accessibility requirements in your documents and are a Product Manager. A Designer? A Content Strategist? And finally, any other roles?
  6. Who will utilize the accessibility requirements you define?
  7. We will be looking at a few methods of expressing accessibility requirements that will help to address the WCAG principles; Perceivable, Operable, Understandable and Robust. In particular we will look at a set of graphical elements used to annotate and communicate accessibility requirements in wireframes and design comps. I’ll also talk about how these assets can be includes in user stories. What other formats do you use to communicate accessibility requirements?
  8. I will be presenting three methods in which to deliver accessibility requirements: user stories, design specs and test cases. If we have time, I will also give a couple of announcements and show a sample of an accessibility bug. Bugs can both report on an issue and contain requirements. This will provide an end-to-end look at how accessibility requirements show up in the software development lifecycle.
  9. Image description: A design spec with a wireframe depicting a search results interface to find a local restaurant. On the left is a set of three accordion controls to filter search results. The main content contains a grid of search results, a toolbar above the search results to sort by Rating or Alphabetically and pagination controls following search results. This a common interface used to search and filter a set of information. In this example, I am searching for restaurants near me. Along the left rail is a set of three collapsed accordion style categories of filters; Neighborhood, Cuisine, and Price. In the main content area to the right of the filters is a set of search results displayed as a grid of cards. Each of the cards summarizes a result and may include related links or calls to action. There is a toolbar above the results which allows you to sort the results by rating or alphabetically. Below the first set of results is a navigation region in a numbered pagination format with a “next” and “last page” link. I will be presenting user stories, design specs and test cases which help to communicate and validate the relevant accessibility requirements in this design.
  10. There are lots of ways you can slice functionality. Typically, user stories encompass a complete slice of functionality. For the purposes of this presentation I am slicing functionality into more discreet pieces for the purposes of clarity and more discreet test definition.   This is not an all or nothing situation. Take from this example the elements that are useful to help you define and test a requirement.
  11. See Kathy Walbin’s article, How to Write User Stories for Web Accessibility. One of the key requirements to communicate is the order in which a user navigates with an interface. The input device of choice can be swapped out for the keyboard, touch, switch-device, etc.
  12. While there are a number of different things which must be communicated regarding accessibility, at minimum you want to communicate how someone gets to an element in the interface, the elements label, role and state/properties when it has focus and how to interact with the element.
  13. By adding the relevant WCAG criteria and ARIA Authoring Practices to the user story you are making clear to your engineers and testers the standards that need to be met and the design patterns to use as guidance. I have included a representative list of the relevant WCAG criteria. This list should also include criteria such as 4.1.2 Name, Role, Value. I have kept the list short this presentation.
  14. Depending upon your user base, you may document topics like voice commands or virtual reality interfaces. The topics we currently document in Bluelining provide a basic scaffolding for navigation, object identification and interaction which you can build upon for other input devices.
  15. Image description: A set of graphical assets sets use to communicate, tab/focus order, keyboard shortcuts, attributes for assistive technology, (landmark) regions and directional arrows. I created this set of graphical assets in Illustrator. I chose Illustrator because of the various image formats I can export including SVG and the support to copy/paste these assets as vectors into other applications including Adobe XD and Sketch. I could also include these assets in a Creative Cloud library so that I can easily share them with other Creative Cloud subscribers and team members. Additions could include notation for swipe gestures for touch interfaces, particularly for VoiceOver, TalkBack and Windows 10. Because no idea is completely original I want to be sure to give credit where it is due. This set of graphical annotation assets is informed by work I have encountered while collaborating with other accessibility professionals, namely Ben Truelove at Microsoft and Bo Campbell and M.E. Miller at IBM.
  16. Image description: A design spec with an annotated wireframe of a search results interface to find a local restaurant. which depicts tab order and keyboarding. On the left is a set of accordion controls to filter search results. The main content contains the search results, a toolbar to sort by Rating or Alphabetically and pagination controls following search results. Read accompanying information for keyboarding details. Tab key moves through the list of search results in the natural keyboard order of the DOM. With focus on a card or on one of its descendants, pressing the right/left arrow key will move focus to the next or previous card list item element in the grid. Pressing down/up arrow key will move focus to the adjacent card in the next or previous row of the grid. Pressing home/end key will move to the first or last card in the grid. A focus indication is displayed when an element receives focus. Grid focus order using LEFT ARROW | RIGHT ARROW. Using the LEFT and RIGHT arrow keys moves left to right through each of the grid before moving to the next row. Grid focus order using UP ARROW | DOWN ARROW. Using the UP and DOWN arrow keys moves vertically through columns of the grid. ARIA Design Patterns: Accordion, Grid, and Toolbar.
  17. Image description: A design spec with an annotated wireframe of three accordion style controls which depicts tab order and keyboarding. Read accompanying information for keyboarding details. TAB key moves through the list of filters in the natural keyboard order of the DOM. With focus on a filter heading, the SPACE or ENTER key will expand the filter accordion. The elements inside an expanded filter should then be added to the tab order in the manner indicated in this diagram. When focus is on a filter heading, RIGHT ARROW will expand the accordion, LEFT ARROW will collapse the accordion. When focus is on one of the children of the accordion, Pressing DOWN/UP ARROW key will move focus to the next or previous filter in the list. ARIA Design Patterns: Accordion, and Checkbox
  18. The order in which these elements are announced by assistive technology will vary. The idea is to provide engineers and testers an idea of what they should expect.
  19. Image description: A design spec with an annotated wireframe of three accordion style controls used to display search filters with details regarding name, role, state and properties for each accordion header. The filters categories are Neighborhood, Cuisine, and Price. The Neighborhood accordion is expanded to show neighborhoods in the Seattle area. Name, Role, State and Properties label=“Neighborhood”, role=“button”, aria-expanded=“true”, AT: “Neighborhood, expanded, button” label=“Cuisine”, role=“button”, aria-expanded=“false”, AT: “Cuisine, collapsed, button” label=“Price”, role=“button”, aria-expanded=“false”, AT: “Price, collapsed, button”
  20. Image description: Wireframe of a restaurant search results page annotated to indicate landmark regions for the search filters, sorting toolbar, search results and paginated navigation. Landmarks role=“region”, aria-label=“Search Filters” role=“region”, aria-label=“Search Results” role=“toolbar”, aria-label=“Sorting Options” role=“navigation”, aria-label=“Pagination” Preferably headings would be used to describe each section and would be referenced using aria-labelledby instead of a static aria-label value.
  21. See WCAG 2.0 online for details on these criteria.
  22. Typically, each of the single components have direct relationships to WCAG 2.0 criterion. For example, Images are covered by 1.1.1 Non-text Content. Complex components are combinations and single components and also be covered by 1.3.2 Meaningful Sequence.
  23. See the Sarah Pulis presentation, Reusable Acceptance Criteria and Test Cases for Accessibility.
  24. The idea to document accessibility requirements at the design stage has been gaining ground with other companies as well, including Microsoft, IBM, Google and Lifetime Fitness. I have included a link in the resources to a presentation by a team at Microsoft, which includes their version of Bluelining.