Mapping ARIA Roles, States, and Properties to UI Automation
The World Wide Web Consortium (W3C) defines Accessible Rich Internet Applications (ARIA) as a syntax for making dynamic web content and custom user interface (UI) accessible. Windows Internet Explorer 8 recognizes the ARIA role, state, and property information and exposes it to assistive technologies, which in turn can use the Microsoft Active Accessibility and/or Microsoft UI Automation APIs to retrieve the information. Instead of building separate simplified webpages for accessibility, you can use ARIA to mark up your rich web applications with roles, states, and properties. For example, to match the behavior you create through a script, you can define a div element as a button, checkbox, or another ARIA role.
This topic contains the following sections:
- W3C ARIA Roles
- W3C ARIA States and Properties
W3C ARIA Role Mapped to Microsoft Active Accessibility and UI Automation
W3C ARIA roles can map to Microsoft Active Accessibility roles or UI Automation control types. With UI Automation, the original W3C ARIA role may also be supported by the AriaRole property. User agents can offer a localized description of the W3C ARIA role with the UI Automation LocalizedControlType property; however, that is optional. When a localized string is not specified, the system will supply the default LocalizedControlType string. User agents may also offer secondary roles in the AriaRole property by using space as a separator, as defined in the ARIA W3C standard.
W3C ARIA States and Properties
W3C ARIA States and Properties are mapped to various properties and functions of Microsoft Active Accessibility and UI Automation. With few exceptions, most of the ARIA States and Properties are supported by the UI Automation AriaProperties property.
The exceptions are as follows:
- ARIA properties that take object references, such as described by the ARIA property
- ARIA properties that are supported by the accessibility object model
For example, the ARIA aria-activedescendant property is always expected to be represented as a focused element in the accessibility object model. The ARIA aria-owns property must also be reflected in the accessibility object model when it is specified.
AriaProperties is a string property that has a collection of name/value pairs whose delimiters are "=" (equals) and ";" (semicolon); for example, checked=true;disabled=false. The backslash character ("\") is used as an escape when these delimiter characters or "\" appear in the values. The UI Automation provider code can add verification to validate the original ARIA properties in the Document Object Model (DOM) , but it is not required.
W3C ARIA States and Properties | Microsoft Active Accessibility Properties | UI Automation Properties | UI Automation ARIA AriaProperties Property |
---|---|---|---|
aria-activedescendant | STATE_SYSTEM_FOCUSED (IAccessible::get_accState) | HasKeyboardFocus (a property of the child element that is designated to receive the focus) | N/A |
aria-atomic†† | N/A | N/A | atomic |
aria-busy | STATE_SYSTEM_BUSY (get_accState) | N/A | busy |
aria-channel†† | N/A | N/A | channel |
aria-checked | STATE_SYSTEM_CHECKED (get_accState) | ToggleState (Toggle Pattern) | checked |
aria-controls | N/A | ControllerFor | N/A |
aria-describedby | N/A | DescribedBy | N/A |
aria-disabled | STATE_SYSTEM_UNAVAILABLE (get_accState) | IsEnabled | disabled |
aria-dropeffect†† | N/A | N/A | dropeffect |
aria-expanded | STATE_SYSTEM_COLLAPSED or STATE_SYSTEM_EXPANDED (get_accState) | ExpandCollapseState (ExpandCollapse Pattern) | expanded |
aria-flowto | N/A | FlowsTo | N/A |
aria-grab†† | N/A | N/A | grab |
aria-haspopup | STATE_HASPOPUP | N/A | haspopup |
aria-hidden | STATE_SYSTEM_INVISIBLE | IsOffscreen | hidden |
aria-invalid | N/A | IsDataInvalidForForm | invalid |
aria-labelledby | N/A | LabeledBy | N/A |
aria-level | IAccessible::get_accValue | N/A (represented by automation element tree structure) | level |
aria-live | N/A | N/A | live |
aria-multiline†† | N/A | Document Control Type | multiline |
aria-multiselect | STATE_SYSTEM_EXTSELECTABLE (get_accState) | CanSelectMultiple (Selection Pattern) | multiselectable |
aria-owns | N/A (should be reflected in the accessible object tree) | N/A (should be reflected in the automation element tree) | N/A |
aria-posinset | N/A (represented in the accessible object tree structure or by childId) | N/A (represented in automation element tree structure) | posinset |
aria-pressed | STATE_SYSTEM_PRESSED (get_accState) | ToggleState (Toggle Pattern) | pressed |
aria-readonly | STATE_SYSTEM_READONLY (get_accState) | IsReadOnly | readonly |
aria-relevant | N/A | N/A | relevant |
aria-required | N/A | IsRequiredForForm | required |
aria-secret | STATE_SYSTEM_PROTECTED (get_accState | IsPassword | secret |
aria-selected | STATE_SYSTEM_SELECTED (get_accState) | IsSelected (SelectionItem Pattern) | selected |
aria-setsize | N/A | N/A (child count in automation element tree structure) | setsize |
aria-sort†† | N/A | N/A | sort |
tabIndex | STATE_SYSTEM_FOCUSABLE (get_accState) | IsKeyboardFocusable | tabindex |
aria-valuemax | N/A | MaximumProperty (RangeValue Pattern) | valuemax |
aria-valuemin | N/A | MinimumProperty (RangeValue Pattern) | valuemin |
aria-valuenow | get_accValue | ValueProperty (RangeValue Pattern) | valuenow |
aria-valuetext†† | get_accValue NOTE: when both aria-valuenow and aria-valuetext ARIA properties are set, get_accValue will hold the data from the aria-valuetext property. | ValueProperty (Value Pattern) NOTE: RangeValue and Value Pattern can coexist with UI in case both aria-valuetext and aria-valuenow are specified. | valuetext |
† Not implemented in Internet Explorer 8.
Related topics
Microsoft Active Accessibility and UI Automation
Microsoft Active Accessibility SDK
Microsoft Active Accessibility Constants and Enumerated Types
UI Automation Specification and Community Promise
UI Automation for Win32 Applications
ARIA Specification Sources
Accessible Rich Internet Applications (WAI-ARIA) Version 1.0