SlideShare a Scribd company logo
Better user experience, happier developers
Accessibility
microinteractions
AIDAN TIERNEY
@AIDANA11Y
ɱ
A workflow for
accessibility specialist &
development team
ɱ
A front-end
development style
guide for accessibility
Microinteractions
Patterns that repeat
throughout the
application
Clear, testable
requirements
Consistent,
understandable &
enjoyable user
experience
Button
Modal
Navigation menu
• Description of pattern
• Screenshot
• Keyboard interactions
• ARIA roles, states, and properties
• Code snippets
• Examples
• Resources - blog posts, tutorials
Style Guide
WAI-ARIA 

Authoring Practices
w3.org/TR/wai-aria-practices-1.1/
Button
w3.org/TR/wai-aria-practices-1.1/#button
Remember, today
is about a workflow
- don't sweat the
technical details in
the examples
ȶ
Description
A button is a widget that enables users to trigger an
action or event, such as submitting a form, opening a
dialog, canceling an action, or performing a delete
operation.
Button vs. link: a link navigates away from current
context; a button triggers new content in same context.
But there will be exceptions.
Note: 

menu button and toggle button are unique patterns
Screenshot
Ƕ Add to cart
Subscribe
Keyboard Interactions
When the button has focus:
• Space activates the button.
• Enter: Activates the button.

Following button activation:
• If activating the button opens a dialog, the focus moves inside the
dialog. 

(see dialog pattern)
• If activating the button closes a dialog, focus typically returns to
the button that opened the dialog unless the function performed
in the dialog context logically leads to a different element.
• If activating the button does not dismiss the current context, then
focus typically remains on the button after activation, e.g., an
Apply or Recalculate button.
• If the button action indicates a context change, such as move to
next step in a wizard or add another search criteria, then it is often
appropriate to move focus to the starting point for that action.
You don’t
need to
read this
now!
WAI-ARIA Roles, States, and Properties
The button has role of button.

The button has an accessible label. By default, the
accessible name is computed from any text content inside
the button element. However, it can also be provided with
aria-labelledby or aria-label.

If a description of the button's function is present, the
button element has aria-describedby set to the ID of the
element containing the description.

When the action associated with a button is unavailable,
the button has aria-disabled set to true.



Also see: See menu button and toggle button
You don’t
need to
read this
now!
Code Snippets
<div role="button" id="print">
Print Page
</div>
<a tabindex="0"
role="button"
id="alert1">
Show alert
</a>
Examples
Button Examples
w3.org/TR/wai-aria-practices-1.1/examples/
button/button.html
Resources
Links vs. Buttons in Modern Web Applications 

- Marcy Sutton
marcysutton.com/links-vs-buttons-in-modern-
web-applications/
Links are not buttons. Neither are DIVs and SPANs

- Karl Groves
karlgroves.com/2013/05/14/links-are-not-buttons-
neither-are-divs-and-spans/
The microinteraction
workflow
Team identifies
what it will work on
- sprint planning
Accessibility
specialist
drafts guidance
(spec) for new
components or
patterns
Review spec early in sprint
Ȭ
Development feedback
Agree on behaviour
Accessibility
specialist
incorporates
feedback in
draft
Development
team starts
to build
components
to this spec
Review
components
together
Developers
demo using
keyboard and
screen reader
Rework spec & modify
code, if needed
Accessibility
specialist
reviews
build
Clarifications for
Development or Users
Update screen reader and other
content to better explain patterns
(e.g. hints, instructions, user
guides)
Share requirements/
expected behaviours
with QA
QA tests against
the detailed
behaviour for each
microinteraction
Modal
w3.org/TR/wai-aria-practices-1.1/
#dialog_modal
Description
A modal is a window overlayed on either the
primary window or another modal window
designed to prompt the user to enter information
or make a response.
Sometimes called a dialog, these windows take
and hold focus until closed or actioned. The
window under a modal dialog is typically inert;
users cannot interact with content outside the
dialog window.
Screenshot
Keyboard Interactions
Tab:
Moves focus to the next focusable element inside the dialog.
If focus is on the last element, moves focus to the first
focusable element inside the dialog.
Shift + Tab:
Moves focus to the previous focusable element inside the
dialog.
If focus is on the first element, moves focus to the last
focusable element inside the dialog.
Escape: Closes the dialog.
Note:
• When a dialog opens, focus is typically set on the first
focusable element.
• When a dialog closes, focus returns to the element that had
focus before the dialog was invoked. This is often the control
that opened the dialog.
You don’t
need to
read this
now!
WAI-ARIA Roles, States, and Properties
The element that serves as the dialog container has a role of
dialog.

The dialog has either:
• The aria-labelledby property set to refer to the visible dialog
title.
• A label specified with aria-label.



The aria-describedby property can be set on the element with
the dialog role to indicate which element or elements in the
dialog contain content that describes the primary purpose or
message of the dialog.
Specifying descriptive elements enables screen readers to
announce the description along with the dialog title and initially
focused element when the dialog opens.
You don’t
need to
read this
now!
Code Snippets
<div role="dialog" 

aria-labelledby="dlgtitle">
<h1 id="dlgtitle">

Sign up to Newsletter</h1>
<div>
<label for="email">Email: </label>
<input type="text" id="email"
name="email">
<input type="button" value="Sign up">
</div>
</div>
Examples
Using ARIA role=dialog to implement a modal
dialog box - W3C WAI
w3.org/WAI/GL/wiki/
Using_ARIA_role%3Ddialog_to_implement_a_
modal_dialog_box
Resources
Custom-Built Dialogs - Gez Lemon
juicystudio.com/article/custom-built_dialogs.php 

Using the dialog role - MDN
developer.mozilla.org/en-US/docs/Web/
Accessibility/ARIA/ARIA_Techniques/
Using_the_dialog_role
Let's try this out
Menu navigation - menubar
w3.org/TR/wai-aria-practices-1.1/#menu
Description
A menu that is visually persistent is a menubar.
A menubar is typically horizontal and is often
used to create a menu bar similar to those found
near the top of the window in many desktop
applications, offering the user quick access to a
consistent set of commands.
Screenshot
Keyboard Interactions
Enter:
When focus is on a menuitem that has a submenu, opens the submenu and places focus on its first item.
Otherwise, activates the item and closes the menu.
Space:
When focus is on a menuitemcheckbox, changes the state without closing the menu.
When focus is on a menuitemradio that is not checked, without closing the menu, checks the focused menuitemradio
and unchecks any other checked menuitemradio element in the same group.
(Optional): When focus is on a menuitem that has a submenu, opens the submenu and places focus on its first item.
(Optional): When focus is on a menuitem that does not have a submenu, activates the menuitem and closes the menu.
Down Arrow:
When focus is on a menuitem in a menubar, opens its submenu and places focus on the first item in the submenu.
When focus is in a menu, moves focus to the next item, optionally wrapping from the last to the first.
Up Arrow:
When focus is in a menu, moves focus to the previous item, optionally wrapping from the first to the last.
When focus is in a menubar, does nothing.
Right Arrow:
When focus is in a menubar, moves focus to the next item, optionally wrapping from the last to the first.
When focus is in a menu and on a menuitem that has a submenu, opens the submenu and places focus on its first item.
When focus is in a menu and on an item that does not have a submenu, performs the following 3 actions:
Closes the submenu and any parent menus.
Moves focus to the next menuitem in the menubar.
Either: (Recommended) opens the submenu of that menuitem without moving focus into the submenu, or opens the
submenu of that menuitem and places focus on the first item in the submenu.
Note that if the menubar were not present, e.g., the menus were opened from a menubutton, Right Arrow would not do
anything when focus is on an item that does not have a submenu.
You don’t
need to
read this
now!
Keyboard Interactions
Left Arrow:
When focus is in a menubar, moves focus to the previous item, optionally wrapping from the last to the first.
When focus is in a submenu of an item in a menu, closes the submenu and returns focus to the parent menuitem.
When focus is in a submenu of an item in a menubar, performs the following 3 actions:
Closes the submenu.
Moves focus to the previous menuitem in the menubar.
Either: (Recommended) opens the submenu of that menuitem without moving focus into the submenu, or opens the
submenu of that menuitem and places focus on the first item in the submenu.
Home: 

If arrow key wrapping is not supported, moves focus to the first item in the current menu or menubar.
End:

If arrow key wrapping is not supported, moves focus to the last item in the current menu or menubar.
Any key that corresponds to a printable character (Optional): Move focus to the next menu item in the current menu
whose label begins with that printable character.
Escape: 

Close the menu that contains focus and return focus to the element or context, e.g., menu button or parent
menuitem, from which the menu was opened.
Tab: 

Moves focus to the next element in the tab sequence, and if the item that had focus is not in a menubar, closes its
menu and all open parent menu containers.
Shift + Tab: 

Moves focus to the previous element in the tab sequence, and if the item that had focus is not in a menubar, closes its
menu and all open parent menu containers.
You don’t
need to
read this
now!
WAI-ARIA Roles, States, and Properties
A menu is a container of items that represent choices. The element serving as the menu has a
role of either menu or menubar.
The items contained in a menu are child elements of the containing menu or menubar and
have any of the following roles:
menuitem
menuitemcheckbox
menuitemradio
One of the following approaches is used to enable scripts to move focus among items in a
menu as described in 4.6 Keyboard Navigation Inside Components:
The menu container has tabindex set to -1 or 0 and aria-activedescendant set to the ID of the
focused item.
Each item in the menu has tabindex set to -1, except in a menubar, where the first item has
tabindex set to 0.
If activating a menuitem opens a submenu, the menuitem has aria-haspopup set to true.
When a menuitemcheckbox or menuitemradio is checked, aria-checked is set to true.
When a menu item is disabled, aria-disabled is set to true.
Items in a menu may be divided into groups by placing an element with a role of separator
between groups. For example, this technique should be used when a menu contains a set of
menuitemradio items.
All separators should have aria-orientation consistent with the separator's orientation.
NOTE
If aria-owns is set on the menu container to include elements that are not DOM children of
the container, those elements will appear in the reading order in the sequence they are
referenced and after any items that are DOM children. Scripts that manage focus need to
ensure the visual focus order matches this assistive technology reading order.
You don’t
need to
read this
now!
Examples
Navigation Menubar Example
w3.org/TR/wai-aria-practices-1.1/examples/
menubar/menubar-1/menubar-1.html
Microinteration workflow
Collaboration:
Accessibility Specialist & Development team
Accessibility Pattern/Style Guide:
Detailed, testable and achievable requirements
Best suited to large iterative projects.
Developers demo they've met requirements:
Solve for problems together (it's not a test)
Benefits
Consistent user experience
Shift left - should reduce defects in builds
Subsequent projects can use or modify the specs
Teams like to know 'how its supposed to work'
Challenges
Speed:
Early sprints have a lot of new patterns.
Keeping ahead of the developers.
Best when UX and Design patterns clear.
Teams with no accessibility experience.
Workflow is for efficiency, not for teaching
Accessibility 101.
Screen reader logistics and skills.
“What questions or
comments do you have?”
ɳ
Better user experience, happier developers
Accessibility
microinteractions
AIDAN TIERNEY
@AIDANA11Y
ɱ

More Related Content

What's hot (20)

PPT
Understanding Web Accessibility
Andrea Dubravsky
 
PDF
Web Accessibility for Web Developers
Alexander Loechel
 
PDF
Web Accessibility
Zoe Gillenwater
 
PPTX
Introduction To Web Accessibility
Steven Swafford
 
PDF
Html,javascript & css
Predhin Sapru
 
PPTX
Web accessibility: it’s everyone’s responsibility
Media Access Australia
 
PDF
Website Accessibility
Nishan Bose
 
PPTX
Basics of Web Accessibility
Moin Shaikh
 
PDF
Web accessibility 101: The why, who, what, and how of "a11y"
ecentricarts
 
PPT
WCAG 2.0, Simplified
ciwstudy
 
PDF
Flexbox and Grid Layout
Rachel Andrew
 
PDF
What Is Accessibility Testing?
QA InfoTech
 
PDF
ADA Compliance and Website Accessibility
SilverTech
 
PPTX
WCAG
PurnimaAgarwal6
 
PPTX
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
PPTX
HTML 5 Canvas & SVG
Ofir's Fridman
 
PPTX
Accessibility Testing Using Screen Readers
Rabab Gomaa
 
PDF
Learning jQuery in 30 minutes
Simon Willison
 
PPTX
Accessibilitytesting public
Sivaprasad Paliyath (CUA - HFI)
 
PDF
WCAG 2.1: What You Need to Know About the Most Recent Accessibility Standards
UXPA International
 
Understanding Web Accessibility
Andrea Dubravsky
 
Web Accessibility for Web Developers
Alexander Loechel
 
Web Accessibility
Zoe Gillenwater
 
Introduction To Web Accessibility
Steven Swafford
 
Html,javascript & css
Predhin Sapru
 
Web accessibility: it’s everyone’s responsibility
Media Access Australia
 
Website Accessibility
Nishan Bose
 
Basics of Web Accessibility
Moin Shaikh
 
Web accessibility 101: The why, who, what, and how of "a11y"
ecentricarts
 
WCAG 2.0, Simplified
ciwstudy
 
Flexbox and Grid Layout
Rachel Andrew
 
What Is Accessibility Testing?
QA InfoTech
 
ADA Compliance and Website Accessibility
SilverTech
 
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
HTML 5 Canvas & SVG
Ofir's Fridman
 
Accessibility Testing Using Screen Readers
Rabab Gomaa
 
Learning jQuery in 30 minutes
Simon Willison
 
Accessibilitytesting public
Sivaprasad Paliyath (CUA - HFI)
 
WCAG 2.1: What You Need to Know About the Most Recent Accessibility Standards
UXPA International
 

Viewers also liked (20)

PDF
The 7 minute accessibility assessment and app rating system
Aidan Tierney
 
PDF
Mystery Meat 2.0 – Making hidden mobile interactions accessible
Ted Drake
 
PDF
Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...
Ted Drake
 
PDF
CSUN 2017 Success Criteria: Dependencies and Prioritization
Sean Kelly
 
PPTX
Mind your lang (for role=drinks at CSUN 2017)
Adrian Roselli
 
PPTX
A Multidisciplinary Approach to Universal Design
Anders Skifte
 
PDF
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017
Bill Tyler
 
PPTX
CSUN 2017 VPATs For Business or Measure
Ted Gies
 
PDF
Early prevention of accessibility issues with mockup & wireframe reviews
Aidan Tierney
 
PPTX
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
Lainey Feingold
 
PPTX
2017 CSUN The Art of Language in Accessibility
Crystal Baker
 
PPTX
2017 CSUN Color Contrast
Crystal Baker
 
PDF
ARIA Techniques for Accessible Web Forms
Aidan Tierney
 
PDF
Accessibility Support Baseline: Balancing User Needs Against Test Effort
Aidan Tierney
 
PDF
iOS VoiceOver Testing Techniques & Procedures for Absolute Beginners
Aidan Tierney
 
PDF
Mobile Accessibility Best Practices & Trends
Aidan Tierney
 
PPTX
Preparing the enterprise for 508 refresh, ibm csun2017
Michael Gower
 
PPTX
Cognitive theory of multimedia learning, krista greear, csun 2017
Krista Greear
 
PDF
Daft Punk SEO
Blind Five Year Old
 
PDF
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...
November Samnee
 
The 7 minute accessibility assessment and app rating system
Aidan Tierney
 
Mystery Meat 2.0 – Making hidden mobile interactions accessible
Ted Drake
 
Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...
Ted Drake
 
CSUN 2017 Success Criteria: Dependencies and Prioritization
Sean Kelly
 
Mind your lang (for role=drinks at CSUN 2017)
Adrian Roselli
 
A Multidisciplinary Approach to Universal Design
Anders Skifte
 
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017
Bill Tyler
 
CSUN 2017 VPATs For Business or Measure
Ted Gies
 
Early prevention of accessibility issues with mockup & wireframe reviews
Aidan Tierney
 
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
Lainey Feingold
 
2017 CSUN The Art of Language in Accessibility
Crystal Baker
 
2017 CSUN Color Contrast
Crystal Baker
 
ARIA Techniques for Accessible Web Forms
Aidan Tierney
 
Accessibility Support Baseline: Balancing User Needs Against Test Effort
Aidan Tierney
 
iOS VoiceOver Testing Techniques & Procedures for Absolute Beginners
Aidan Tierney
 
Mobile Accessibility Best Practices & Trends
Aidan Tierney
 
Preparing the enterprise for 508 refresh, ibm csun2017
Michael Gower
 
Cognitive theory of multimedia learning, krista greear, csun 2017
Krista Greear
 
Daft Punk SEO
Blind Five Year Old
 
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...
November Samnee
 
Ad

Similar to Accessibility microinteractions: better user experience, happier developers (20)

PDF
Neue Infos rund um WCAG 2.0
Eric Eggert
 
PDF
aria_with_kissy
yiming he
 
KEY
Keyboard Access APIs
toddkloots
 
PDF
ARIA Serious
Eric Eggert
 
PPTX
Accessibility on Windows Phone - Windows Phone Meetup at Nokia - 16 October @...
Raj Lal
 
PDF
Creating an Accessible button dropdown
Russ Weakley
 
PPTX
Accessible design with html5 JS Everywhere 2012 Oct 26 Fairmont Hotel San Jos...
Raj Lal
 
KEY
WAI-ARIA is More Than Accessibility
偉格 高
 
PDF
HTML5 Accessibility
Aaron Gustafson
 
PDF
Keyboard and Interaction Accessibility Techniques
Jared Smith
 
PPTX
Accessible design - HOW Interactive Design Conference Washington DC SEPT 27-2...
Raj Lal
 
PPTX
Dynamic and accessible web content with WAI-ARIA
Access iQ
 
PDF
Accessible modal windows
Russ Weakley
 
PDF
WAI-ARIA An introduction to Accessible Rich Internet Applications / CSS Minsk...
Patrick Lauke
 
PDF
WAI-ARIA An introduction to Accessible Rich Internet Applications / JavaScrip...
Patrick Lauke
 
PPTX
HTML5 & WAI ARIA for online banking
Adesis Netlife
 
PDF
WAI-ARIA An introduction to Accessible Rich Internet Applications / AccessU 2018
Patrick Lauke
 
PDF
Building Accessible Web Components
Russ Weakley
 
PDF
Why ARIA? [DevChatt 2010]
Aaron Gustafson
 
KEY
Designing for Accessibility with ARIA
Sencha
 
Neue Infos rund um WCAG 2.0
Eric Eggert
 
aria_with_kissy
yiming he
 
Keyboard Access APIs
toddkloots
 
ARIA Serious
Eric Eggert
 
Accessibility on Windows Phone - Windows Phone Meetup at Nokia - 16 October @...
Raj Lal
 
Creating an Accessible button dropdown
Russ Weakley
 
Accessible design with html5 JS Everywhere 2012 Oct 26 Fairmont Hotel San Jos...
Raj Lal
 
WAI-ARIA is More Than Accessibility
偉格 高
 
HTML5 Accessibility
Aaron Gustafson
 
Keyboard and Interaction Accessibility Techniques
Jared Smith
 
Accessible design - HOW Interactive Design Conference Washington DC SEPT 27-2...
Raj Lal
 
Dynamic and accessible web content with WAI-ARIA
Access iQ
 
Accessible modal windows
Russ Weakley
 
WAI-ARIA An introduction to Accessible Rich Internet Applications / CSS Minsk...
Patrick Lauke
 
WAI-ARIA An introduction to Accessible Rich Internet Applications / JavaScrip...
Patrick Lauke
 
HTML5 & WAI ARIA for online banking
Adesis Netlife
 
WAI-ARIA An introduction to Accessible Rich Internet Applications / AccessU 2018
Patrick Lauke
 
Building Accessible Web Components
Russ Weakley
 
Why ARIA? [DevChatt 2010]
Aaron Gustafson
 
Designing for Accessibility with ARIA
Sencha
 
Ad

Recently uploaded (20)

PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Biography of Daniel Podor.pdf
Daniel Podor
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 

Accessibility microinteractions: better user experience, happier developers

  • 1. Better user experience, happier developers Accessibility microinteractions AIDAN TIERNEY @AIDANA11Y ɱ
  • 2. A workflow for accessibility specialist & development team ɱ
  • 9. • Description of pattern • Screenshot • Keyboard interactions • ARIA roles, states, and properties • Code snippets • Examples • Resources - blog posts, tutorials Style Guide
  • 12. Remember, today is about a workflow - don't sweat the technical details in the examples ȶ
  • 13. Description A button is a widget that enables users to trigger an action or event, such as submitting a form, opening a dialog, canceling an action, or performing a delete operation. Button vs. link: a link navigates away from current context; a button triggers new content in same context. But there will be exceptions. Note: 
 menu button and toggle button are unique patterns
  • 14. Screenshot Ƕ Add to cart Subscribe
  • 15. Keyboard Interactions When the button has focus: • Space activates the button. • Enter: Activates the button.
 Following button activation: • If activating the button opens a dialog, the focus moves inside the dialog. 
 (see dialog pattern) • If activating the button closes a dialog, focus typically returns to the button that opened the dialog unless the function performed in the dialog context logically leads to a different element. • If activating the button does not dismiss the current context, then focus typically remains on the button after activation, e.g., an Apply or Recalculate button. • If the button action indicates a context change, such as move to next step in a wizard or add another search criteria, then it is often appropriate to move focus to the starting point for that action. You don’t need to read this now!
  • 16. WAI-ARIA Roles, States, and Properties The button has role of button.
 The button has an accessible label. By default, the accessible name is computed from any text content inside the button element. However, it can also be provided with aria-labelledby or aria-label.
 If a description of the button's function is present, the button element has aria-describedby set to the ID of the element containing the description.
 When the action associated with a button is unavailable, the button has aria-disabled set to true.
 
 Also see: See menu button and toggle button You don’t need to read this now!
  • 17. Code Snippets <div role="button" id="print"> Print Page </div> <a tabindex="0" role="button" id="alert1"> Show alert </a>
  • 19. Resources Links vs. Buttons in Modern Web Applications 
 - Marcy Sutton marcysutton.com/links-vs-buttons-in-modern- web-applications/ Links are not buttons. Neither are DIVs and SPANs
 - Karl Groves karlgroves.com/2013/05/14/links-are-not-buttons- neither-are-divs-and-spans/
  • 21. Team identifies what it will work on - sprint planning
  • 23. Review spec early in sprint Ȭ Development feedback Agree on behaviour
  • 28. Rework spec & modify code, if needed
  • 30. Clarifications for Development or Users Update screen reader and other content to better explain patterns (e.g. hints, instructions, user guides)
  • 32. QA tests against the detailed behaviour for each microinteraction
  • 34. Description A modal is a window overlayed on either the primary window or another modal window designed to prompt the user to enter information or make a response. Sometimes called a dialog, these windows take and hold focus until closed or actioned. The window under a modal dialog is typically inert; users cannot interact with content outside the dialog window.
  • 36. Keyboard Interactions Tab: Moves focus to the next focusable element inside the dialog. If focus is on the last element, moves focus to the first focusable element inside the dialog. Shift + Tab: Moves focus to the previous focusable element inside the dialog. If focus is on the first element, moves focus to the last focusable element inside the dialog. Escape: Closes the dialog. Note: • When a dialog opens, focus is typically set on the first focusable element. • When a dialog closes, focus returns to the element that had focus before the dialog was invoked. This is often the control that opened the dialog. You don’t need to read this now!
  • 37. WAI-ARIA Roles, States, and Properties The element that serves as the dialog container has a role of dialog.
 The dialog has either: • The aria-labelledby property set to refer to the visible dialog title. • A label specified with aria-label.
 
 The aria-describedby property can be set on the element with the dialog role to indicate which element or elements in the dialog contain content that describes the primary purpose or message of the dialog. Specifying descriptive elements enables screen readers to announce the description along with the dialog title and initially focused element when the dialog opens. You don’t need to read this now!
  • 38. Code Snippets <div role="dialog" 
 aria-labelledby="dlgtitle"> <h1 id="dlgtitle">
 Sign up to Newsletter</h1> <div> <label for="email">Email: </label> <input type="text" id="email" name="email"> <input type="button" value="Sign up"> </div> </div>
  • 39. Examples Using ARIA role=dialog to implement a modal dialog box - W3C WAI w3.org/WAI/GL/wiki/ Using_ARIA_role%3Ddialog_to_implement_a_ modal_dialog_box
  • 40. Resources Custom-Built Dialogs - Gez Lemon juicystudio.com/article/custom-built_dialogs.php 
 Using the dialog role - MDN developer.mozilla.org/en-US/docs/Web/ Accessibility/ARIA/ARIA_Techniques/ Using_the_dialog_role
  • 42. Menu navigation - menubar w3.org/TR/wai-aria-practices-1.1/#menu
  • 43. Description A menu that is visually persistent is a menubar. A menubar is typically horizontal and is often used to create a menu bar similar to those found near the top of the window in many desktop applications, offering the user quick access to a consistent set of commands.
  • 45. Keyboard Interactions Enter: When focus is on a menuitem that has a submenu, opens the submenu and places focus on its first item. Otherwise, activates the item and closes the menu. Space: When focus is on a menuitemcheckbox, changes the state without closing the menu. When focus is on a menuitemradio that is not checked, without closing the menu, checks the focused menuitemradio and unchecks any other checked menuitemradio element in the same group. (Optional): When focus is on a menuitem that has a submenu, opens the submenu and places focus on its first item. (Optional): When focus is on a menuitem that does not have a submenu, activates the menuitem and closes the menu. Down Arrow: When focus is on a menuitem in a menubar, opens its submenu and places focus on the first item in the submenu. When focus is in a menu, moves focus to the next item, optionally wrapping from the last to the first. Up Arrow: When focus is in a menu, moves focus to the previous item, optionally wrapping from the first to the last. When focus is in a menubar, does nothing. Right Arrow: When focus is in a menubar, moves focus to the next item, optionally wrapping from the last to the first. When focus is in a menu and on a menuitem that has a submenu, opens the submenu and places focus on its first item. When focus is in a menu and on an item that does not have a submenu, performs the following 3 actions: Closes the submenu and any parent menus. Moves focus to the next menuitem in the menubar. Either: (Recommended) opens the submenu of that menuitem without moving focus into the submenu, or opens the submenu of that menuitem and places focus on the first item in the submenu. Note that if the menubar were not present, e.g., the menus were opened from a menubutton, Right Arrow would not do anything when focus is on an item that does not have a submenu. You don’t need to read this now!
  • 46. Keyboard Interactions Left Arrow: When focus is in a menubar, moves focus to the previous item, optionally wrapping from the last to the first. When focus is in a submenu of an item in a menu, closes the submenu and returns focus to the parent menuitem. When focus is in a submenu of an item in a menubar, performs the following 3 actions: Closes the submenu. Moves focus to the previous menuitem in the menubar. Either: (Recommended) opens the submenu of that menuitem without moving focus into the submenu, or opens the submenu of that menuitem and places focus on the first item in the submenu. Home: 
 If arrow key wrapping is not supported, moves focus to the first item in the current menu or menubar. End:
 If arrow key wrapping is not supported, moves focus to the last item in the current menu or menubar. Any key that corresponds to a printable character (Optional): Move focus to the next menu item in the current menu whose label begins with that printable character. Escape: 
 Close the menu that contains focus and return focus to the element or context, e.g., menu button or parent menuitem, from which the menu was opened. Tab: 
 Moves focus to the next element in the tab sequence, and if the item that had focus is not in a menubar, closes its menu and all open parent menu containers. Shift + Tab: 
 Moves focus to the previous element in the tab sequence, and if the item that had focus is not in a menubar, closes its menu and all open parent menu containers. You don’t need to read this now!
  • 47. WAI-ARIA Roles, States, and Properties A menu is a container of items that represent choices. The element serving as the menu has a role of either menu or menubar. The items contained in a menu are child elements of the containing menu or menubar and have any of the following roles: menuitem menuitemcheckbox menuitemradio One of the following approaches is used to enable scripts to move focus among items in a menu as described in 4.6 Keyboard Navigation Inside Components: The menu container has tabindex set to -1 or 0 and aria-activedescendant set to the ID of the focused item. Each item in the menu has tabindex set to -1, except in a menubar, where the first item has tabindex set to 0. If activating a menuitem opens a submenu, the menuitem has aria-haspopup set to true. When a menuitemcheckbox or menuitemradio is checked, aria-checked is set to true. When a menu item is disabled, aria-disabled is set to true. Items in a menu may be divided into groups by placing an element with a role of separator between groups. For example, this technique should be used when a menu contains a set of menuitemradio items. All separators should have aria-orientation consistent with the separator's orientation. NOTE If aria-owns is set on the menu container to include elements that are not DOM children of the container, those elements will appear in the reading order in the sequence they are referenced and after any items that are DOM children. Scripts that manage focus need to ensure the visual focus order matches this assistive technology reading order. You don’t need to read this now!
  • 49. Microinteration workflow Collaboration: Accessibility Specialist & Development team Accessibility Pattern/Style Guide: Detailed, testable and achievable requirements Best suited to large iterative projects. Developers demo they've met requirements: Solve for problems together (it's not a test)
  • 50. Benefits Consistent user experience Shift left - should reduce defects in builds Subsequent projects can use or modify the specs Teams like to know 'how its supposed to work'
  • 51. Challenges Speed: Early sprints have a lot of new patterns. Keeping ahead of the developers. Best when UX and Design patterns clear. Teams with no accessibility experience. Workflow is for efficiency, not for teaching Accessibility 101. Screen reader logistics and skills.
  • 52. “What questions or comments do you have?” ɳ
  • 53. Better user experience, happier developers Accessibility microinteractions AIDAN TIERNEY @AIDANA11Y ɱ