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

PPTX
Lesson 5 advanced presentation skills
PPTX
RIch User Experience
PPTX
Module 2 III_Identifying the Problem and Asking the Question.pptx
PDF
Accessibility patterns testable requirements during early design
PPTX
Mil 10. media and information literate individual (feb.12)
POTX
Reusable acceptance criteria and test cases for accessibility
PPTX
PowerPoint Lesson 3: Advanced Slide Design
PPTX
EMPOWERMENT TECHNOLOGIES - LESSON 4
Lesson 5 advanced presentation skills
RIch User Experience
Module 2 III_Identifying the Problem and Asking the Question.pptx
Accessibility patterns testable requirements during early design
Mil 10. media and information literate individual (feb.12)
Reusable acceptance criteria and test cases for accessibility
PowerPoint Lesson 3: Advanced Slide Design
EMPOWERMENT TECHNOLOGIES - LESSON 4

What's hot (20)

PDF
The 7 minute accessibility assessment and app rating system
PPTX
E-Tech L13 ICT Project Publication and Statistics.pptx
PPTX
Barriers to physical activity participation among adults
PPTX
Media and Information Literacy (MIL) - Digital Citizenship, Netiquette, Digit...
PPTX
1. introduction to mil (part 1) communication, media, information, and techn...
PDF
MIL_Q1_M2_Introduction-to-Media-and-Information-Literacy (1).pdf
PDF
UX Research - Overview
DOCX
Daily Lesson Log in MIL.docx
PDF
UI design for mobile apps
PPTX
HOPE 11 Physical Education basketball.pptx
PPTX
Models of communication
PPTX
LESSON 1, 2 & 3-ETECH 1S
PDF
Do s2018 039 (1)
PPTX
AQUATICS
PPTX
Visual information and Media
PPTX
Pattern of d evelopment
PDF
UX Usability Heuristics
PPTX
Grade 11 2nd sem 1st
PDF
Responsible Use of Social Media
PDF
User Flows
The 7 minute accessibility assessment and app rating system
E-Tech L13 ICT Project Publication and Statistics.pptx
Barriers to physical activity participation among adults
Media and Information Literacy (MIL) - Digital Citizenship, Netiquette, Digit...
1. introduction to mil (part 1) communication, media, information, and techn...
MIL_Q1_M2_Introduction-to-Media-and-Information-Literacy (1).pdf
UX Research - Overview
Daily Lesson Log in MIL.docx
UI design for mobile apps
HOPE 11 Physical Education basketball.pptx
Models of communication
LESSON 1, 2 & 3-ETECH 1S
Do s2018 039 (1)
AQUATICS
Visual information and Media
Pattern of d evelopment
UX Usability Heuristics
Grade 11 2nd sem 1st
Responsible Use of Social Media
User Flows
Ad

Viewers also liked (20)

PDF
Mystery Meat 2.0 – Making hidden mobile interactions accessible
PDF
Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...
PDF
CSUN 2017 Success Criteria: Dependencies and Prioritization
PPTX
Mind your lang (for role=drinks at CSUN 2017)
PPTX
A Multidisciplinary Approach to Universal Design
PDF
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017
PPTX
CSUN 2017 VPATs For Business or Measure
PDF
Early prevention of accessibility issues with mockup & wireframe reviews
PPTX
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
PPTX
2017 CSUN The Art of Language in Accessibility
PPTX
2017 CSUN Color Contrast
PDF
ARIA Techniques for Accessible Web Forms
PDF
Accessibility Support Baseline: Balancing User Needs Against Test Effort
PDF
iOS VoiceOver Testing Techniques & Procedures for Absolute Beginners
PDF
Mobile Accessibility Best Practices & Trends
PPTX
Preparing the enterprise for 508 refresh, ibm csun2017
PPTX
Cognitive theory of multimedia learning, krista greear, csun 2017
PDF
Daft Punk SEO
PDF
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...
PDF
iOS Accessibility Testing with VoiceOver - A Crash Course
Mystery Meat 2.0 – Making hidden mobile interactions accessible
Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...
CSUN 2017 Success Criteria: Dependencies and Prioritization
Mind your lang (for role=drinks at CSUN 2017)
A Multidisciplinary Approach to Universal Design
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017
CSUN 2017 VPATs For Business or Measure
Early prevention of accessibility issues with mockup & wireframe reviews
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
2017 CSUN The Art of Language in Accessibility
2017 CSUN Color Contrast
ARIA Techniques for Accessible Web Forms
Accessibility Support Baseline: Balancing User Needs Against Test Effort
iOS VoiceOver Testing Techniques & Procedures for Absolute Beginners
Mobile Accessibility Best Practices & Trends
Preparing the enterprise for 508 refresh, ibm csun2017
Cognitive theory of multimedia learning, krista greear, csun 2017
Daft Punk SEO
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...
iOS Accessibility Testing with VoiceOver - A Crash Course
Ad

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

PDF
Front End Frameworks - are they accessible
PDF
Manual
PDF
PDF
Accessible modal windows
PPTX
Bootstrap PPT Part - 2
PPTX
DOC-20230724-WA0011..pptxyffhjingtrfhiijh
ODP
Lotusphere 2012: BP102 'UserBlast'
DOC
PPT
Basic Skills for Bigginners
PDF
Autodesk maya 2016 basic guide
PDF
Guide to Fix Dropdown Button Not Switching Selected Item | Flutter
PDF
Accessible states in Design Systems
PDF
introduction-microsoft-word-2013.13.pdf
PDF
Implementing Inclusive Interfaces
PDF
Pc Fundamentalspart 2 Word
PDF
2 front panel
PPTX
Introduction to the Module Menu in Blackboard Learn 9.1
ODP
Uklug2011 raven newman_21_may
ODP
Uklug2011 Know your Notes
PPTX
Introduction to the Module Menu
Front End Frameworks - are they accessible
Manual
Accessible modal windows
Bootstrap PPT Part - 2
DOC-20230724-WA0011..pptxyffhjingtrfhiijh
Lotusphere 2012: BP102 'UserBlast'
Basic Skills for Bigginners
Autodesk maya 2016 basic guide
Guide to Fix Dropdown Button Not Switching Selected Item | Flutter
Accessible states in Design Systems
introduction-microsoft-word-2013.13.pdf
Implementing Inclusive Interfaces
Pc Fundamentalspart 2 Word
2 front panel
Introduction to the Module Menu in Blackboard Learn 9.1
Uklug2011 raven newman_21_may
Uklug2011 Know your Notes
Introduction to the Module Menu

Recently uploaded (20)

PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Encapsulation theory and applications.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Approach and Philosophy of On baking technology
PPTX
Big Data Technologies - Introduction.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPT
Teaching material agriculture food technology
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
KodekX | Application Modernization Development
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Encapsulation theory and applications.pdf
Chapter 3 Spatial Domain Image Processing.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
MYSQL Presentation for SQL database connectivity
Review of recent advances in non-invasive hemoglobin estimation
Approach and Philosophy of On baking technology
Big Data Technologies - Introduction.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Teaching material agriculture food technology
Digital-Transformation-Roadmap-for-Companies.pptx
MIND Revenue Release Quarter 2 2025 Press Release
KodekX | Application Modernization Development
Diabetes mellitus diagnosis method based random forest with bat algorithm
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Per capita expenditure prediction using model stacking based on satellite ima...
NewMind AI Weekly Chronicles - August'25 Week I
Network Security Unit 5.pdf for BCA BBA.
Advanced methodologies resolving dimensionality complications for autism neur...

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 ɱ