Copyright © 2015 W3C® (MIT, ERCIM, Keio, Beihang). W3C liability, trademark and document use rules apply.
HTML Accessibility API Mappings (HTML-AAM) defines how user agents map HTML 5.1 [HTML51] elements and attributes to platform accessibility application programming interfaces (APIs). It leverages and extends the Core Accessibility API Mappings 1.1 [CORE-AAM] and the Accessible Name and Description: Computation and API Mappings 1.1 [ACCNAME-AAM] for use with the HTML 5.1 host language. Documenting these mappings promotes interoperable exposure of roles, states, properties, and events implemented by accessibility APIs and helps to ensure that this information appears in a manner consistent with author intent.
The HTML-AAM is part of the WAI-ARIA suite described in the WAI-ARIA Overview.
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This is a First Public Working Draft of HTML Accessibility API Mappings 1.0 by the HTML Accessibility Taskforce, a joint task force of the Protocols and Formats Working Group and the HTML Working Group. It defines how HTML language features map to accessibility APIs, and addresses both native HTML features and ARIA additions. It extends Core Accessibility API Mappings 1.1 and Accessible Name and Description: Computation and API Mappings 1.1, and is part of a suite of similar technology-specific Accessibility API Mappings specifications.
The mappings defined in this specification were previously published as HTML to Platform Accessibility APIs Implementation Guide [html-aapi], which supported WAI-ARIA 1.0 and HTML 5.0. Since the time that document was created, work on WAI-ARIA 1.1 and HTML 5.1 have led to a larger set of related Accessibility API mappings and the need to express the mappings for various technologies in a consistent manner. This specification therefore replaces the role of HTML to Platform Accessibility APIs Implementation Guide, and that draft specification will be retired.
Feedback on any aspect of the specification is accepted. For this publication, the HTML Accessibility Task Force particularly seeks feedback on the following questions:
To comment, send email to public-html-comments@w3.org (comment archive) or file an issue in W3C Bugzilla. Comments are requested by 8 May 2015. In-progress updates to the document may be viewed in the publicly visible editors' draft.
Publication as a First Public Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures (HTML Working Group, Protocols and Formats Working Group) made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
This document is governed by the 1 August 2014 W3C Process Document.
input type="text"
, input type="password"
, input type="search"
, input type="tel"
, input type="url"
and textarea
Elementinput type="button"
, input type="submit"
and input type="reset"
input type="image"
button
Elementsummary
Element figure
and figcaption
Elements img
Elementtable
Elementa
ElementThis section is non-normative.
Like the Core Accessibility API Mappings specification, this document defines how HTML user agents must respond to keyboard focus, as well as role, state and property information provided for Web content. Where an HTML element or attribute has default Accessible Rich Internet Applications (WAI-ARIA) 1.1 [WAI-ARIA] semantics, it must be exposed to the platform accessibility APIs according to the relevant WAI-ARIA mappings defined in the Core Accessibility API Mappings specification. Where an HTML element or attribute does not have default WAI-ARIA semantics, the applicable mapping for each platform accessibility API is defined by this specification.
This document also adapts the Accessible Name and Description: Computation and API Mappings [ACCNAME-AAM] for deriving the accessible names and accessible descriptions of HTML 5.1 [HTML51] elements, and provides accessible implementation examples for specific HTML 5.1 elements and features.
Users often access HTML content using assistive technologies that rely on platform accessibility API to obtain and interact with information from the page. This document is part of the following suite of accessibility API mapping specifications for content rendered by user agents:
Accessibility APIs covered by this document are:
If user agent developers need to expose information using other accessibility APIs, it is recommended that they work closely with the developer of the platform where the API runs, and assistive technology developers on that platform.
For more information regarding accessibility APIs, refer to section 1.1 Accessibility APIs of the Core Accessibility API Mappings [CORE-AAM].
As well as sections marked as non-normative, all authoring guidelines, diagrams, examples, and notes in this specification are non-normative. Everything else in this specification is normative.
The key words MUST and SHOULD are to be interpreted as described in [RFC2119].
These RFC2119 key words are formatted in uppercase and contained in a strong
element with class="rfc2119"
. When these key words are used, but do not share this format, they do not convey any formal conformance requirements in the RFC2119 sense, and are merely explanatory, i.e., informative. As much as possible, such usage is avoided in this specification.
The classification of a section as normative or non-normative applies to the entire section and all sub-sections of that section.
Normative sections provide requirements that authors, user agents, and assistive technologies MUST follow for an implementation to conform to this specification.
Non-normative sections provide information useful to understanding the specification. Such sections may contain examples of recommended practice, but it is not required to follow such recommendations in order to conform to this specification.
While some terms are defined in place, the following definitions are used throughout this document.
Operating systems and other platforms provide a set of interfaces that expose information about objects and events to assistive technologies. Assistive technologies use these interfaces to get information about and interact with those widgets. Examples of accessibility APIs are Microsoft Active Accessibility [MSAA], Microsoft User Interface Automation [UI-AUTOMATION], MSAA with UIA Express [UIA-EXPRESS], the Mac OS X Accessibility Protocol [AXAPI], the Linux/Unix Accessibility Toolkit [ATK] and Assistive Technology Service Provider Interface [AT-SPI], and IAccessible2 [IAccessible2].
An accessible object in the accessibility tree and its descendants in that tree. It does not include objects which have relationships other than parent-child in that tree. For example, it does not include objects linked via aria-flowto unless those objects are also descendants in the accessibility tree.
Tree of accessible objects that represents the structure of the user interface (UI). Each node in the accessibility tree represents an element in the UI as exposed through the accessibility API; for example, a push button, a check box, or container.
An accessible description provides additional information, related to an interface element, that complements the accessible name. The accessible description might or might not be visually perceivable.
The accessible name is the name of a user interface element. Each platform accessibility API provides the accessible name property. The value of the accessible name may be derived from a visible (e.g., the visible text on a button) or invisible (e.g., the text alternative that describes an icon) property of the user interface element. See related accessible description.
A simple use for the accessible name property may be illustrated by an "OK" button. The text "OK" is the accessible name. When the button receives focus, assistive technologies may concatenate the platform's role description with the accessible name. For example, a screen reader may speak "push-button OK" or "OK button". The order of concatenation and specifics of the role description (e.g., "button", "push-button", "clickable button") are determined by platform accessibility APIs or assistive technologies.
A node in the accessibility tree of a platform accessibility API. Accessible objects expose various states, properties, and events for use by assistive technologies. In the context of markup languages (e.g., HTML and SVG) in general, and of WAI-ARIA in particular, markup elements and their attributes are represented as accessible objects.
The action taken when an event, typically initiated
by users through an input device, causes an element to fulfill a defined
role. The role may be defined for that element by the host language,
or by author-defined variables, or both. The role for any given element
may be a generic action, or may be unique to that element. For example,
the activation behavior of an HTML or SVG <a>
element
shall be to cause the user agent to traverse the link specified in the href
attribute,
with the further optional parameter of specifying the browsing context
for the traversal (such as the current window or tab, a named window,
or a new window); the activation behavior of an HTML <input>
element
with the type
attribute value submit
shall
be to send the values of the form elements to an author-defined IRI by
the author-defined HTTP method.
Hardware and/or software that:
This definition may differ from that used in other documents.
Examples of assistive technologies that are important in the context of this document include the following:
In this specification, attribute is used as it is in markup languages. Attributes are structural features added to elements to provide information about the states and properties of the object represented by the element.
A set of instance objects that share similar characteristics.
Event from/to the host operating system via the accessibility API, notifying of a change of input focus.
In this specification, element is used as it is in markup languages. Elements are the structural elements in markup language that contains the data profile for objects.
A programmatic message used to communicate discrete changes in the state of an object to other objects in a computational system. User input to a web page is commonly mediated through abstract events that describe the interaction and can provide notice of changes to the state of a document object. In some programming languages, events are more commonly known as notifications.
Translated to platform-specific accessibility APIs as defined in the WAI-ARIA User Agent Implementation Guide. [WAI-ARIA-IMPLEMENTATION]
Indicates that the element is not visible or perceivable to any user. An element is considered hidden if it or any one of its ancestor elements is not rendered or explicitly hidden.
Content provided for information purposes and not required for conformance. Content required for conformance is referred to as normative.
Accessible to the user using a keyboard or assistive technologies that mimic keyboard input, such as a sip and puff tube. References in this document relate to WCAG 2 Guideline 2.1; "Make all functionality available from a keyboard" [WCAG20].
A type of region on a page to which the user may want quick access. Content in such a region is different from that of other regions on the page and relevant to a specific user purpose, such as navigating, searching, perusing the primary content, etc.
Live regions are perceivable regions of a web page that are typically updated as a result of an external event when user focus may be elsewhere. These regions are not always updated as result of a user interaction. This practice has become commonplace with the growing use of Ajax. Examples of live regions include a chat log, stock ticker, or a sport scoring section that updates periodically to reflect game statistics. Since these asynchronous areas are expected to update outside the user's area of focus, assistive technologies such as screen readers have either been unaware of their existence or unable to process them for the user. WAI-ARIA has provided a collection of properties that allow the author to identify these live regions and how to process them: aria-live, aria-relevant, aria-atomic, and aria-busy. Pre-defined live region roles are listed in the Choosing Between Special Case Live Regions ([WAI-ARIA-PRACTICES], Section 5.3).
An implementing host language's primary content element, such as the body
element in HTML.
Accessibility API state that is controlled by the user agent, such as focus and selection. These are contrasted with "unmanaged states" that are typically controlled by the author. Nevertheless, authors can override some managed states, such as aria-posinset and aria-setsize. Many managed states have corresponding CSS pseudo-classes, such as :focus, and pseudo-elements, such as ::selection, that are also updated by the user agent.
The Nemeth Braille Code for Mathematics is a braille code for encoding mathematical and scientific notation. See Nemeth Braille on Wikipedia.
Basic type of object in the DOM tree or accessibility tree. DOM nodes are further specified as Element or Text nodes, among other types. The nodes of an accessibility tree are accessible objects.
Required for conformance. By contrast, content identified as informative or "non-normative" is not required for conformance.
In the context of user interfaces, an item in the perceptual user experience, represented in markup languages by one or more elements, and rendered by user agents.
In the context of programming, the instantiation of one or more classes and interfaces which define the general characteristics of similar objects. An object in an accessibility API may represent one or more DOM objects. Accessibility APIs have defined interfaces that are distinct from DOM interfaces.A description of the characteristics of classes and how they relate to each other.
Usable by users in ways they can control. References in this document relate to WCAG 2 Principle 2; content must be operable [WCAG20]. See Keyboard Accessible.
An 'owned element' is any DOM descendant of the element, any element specified as a child via aria-owns, or any DOM descendant of the owned child.
An 'owning element' is any DOM ancestor of the element, or any element with an aria-owns attribute which references the ID of the element.
Presentable to users in ways they can sense. References in this document relate to WCAG 2 Principle 1; content must be perceivable [WCAG20].
Attributes that are essential to the nature of a given object, or that represent a data value associated with the object. A change of a property may significantly impact the meaning or presentation of an object. Certain properties (for example, aria-multiline) are less likely to change than states, but note that the frequency of change difference is not a rule. A few properties, such as aria-activedescendant, aria-valuenow, and aria-valuetext are expected to change often. See clarification of states versus properties.
A connection between two distinct things. Relationships may be of various types to indicate which object labels another, controls another, etc.
Main indicator of type. This semantic association allows tools to present and support interaction with the object in a manner that is consistent with user expectations about other objects of that type.
The primary element containing non-metadata content. In many languages, this is the document element but in HTML, it is the <body>
or <frameset>
.
The meaning of something as understood by a human, defined in a way that computers can process a representation of an object, such as elements and attributes, and reliably represent the object in a way that various humans will achieve a mutually consistent understanding of the object.
A state is a dynamic property expressing characteristics of an object that may change in response to user action or automated processes. States do not affect the essential nature of the object, but represent data associated with the object or user interaction possibilities. See clarification of states versus properties.
Any document created from a <frame>
, <iframe>
or similar
mechanism. A sub-document may contain a document, an application or any
widget such as a calendar pulled in from another server. In the accessible
tree there are two accessible objects for this situation—one represents
the <frame>
/<iframe>
element in the parent document, which
parents a single accessible object child representing the spawned document
contents.
An element specified in a WAI-ARIA relation.
For example, in <div aria-controls=”elem1”>
, where “elem1”
is
the ID for the target element.
A hierarchical definition of how the characteristics of various classes relate to each other, in which classes inherit the properties of superclasses in the hierarchy. A taxonomy can comprise part of the formal definition of an ontology.
Type of DOM node that represents the textual content of an attribute or an element. A Text node has no child nodes.
Presentable to users in ways they can construct an appropriate meaning. References in this document relate to WCAG 2 Principle 3; Information and the operation of user interface must be understandable [WCAG20].
Any software that retrieves, renders and facilitates end user interaction with Web content. This definition may differ from that used in other documents.
A reference to a target element in the same document that has a matching ID
Discrete user interface object with which the user can interact. Widgets range from simple objects that have one value or operation (e.g., check boxes and menu items), to complex objects that contain many managed sub-objects (e.g., trees and grids).
WAI-ARIA support was first introduced to HTML in HTML5 [HTML5]. Where an HTML element or attribute has default WAI-ARIA semantics, it MUST be exposed to the platform accessibility APIs in a way that conforms to General rules for exposing WAI-ARIA semantics in the Core Accessibility API Mappings [CORE-AAM].
Where the host language is HTML 5.1 [HTML51], user agents MUST conform to Conflicts between native markup semantics and WAI-ARIA in the Core Accessibility API Mappings [CORE-AAM].
HTML may have features that are not supported by accessibility APIs at the time of publication. There is not a one to one relationship between all features and platform accessibility APIs. When HTML roles, states and properties do not directly map to an accessibility API, and there is a method in the API to expose a text string, user agents MUST expose the undefined role, states and properties via that method.
For HTML elements or attributes with default WAI-ARIA semantics, user agents MUST conform to Exposing attributes that do not directly map to accessibility API properties in the Core Accessibility API Mappings [CORE-AAM].
In MSAA, the VARIANT returned by the IAccessible::get_accRole method is limited to a finite number of integer role constants insufficient for describing every HTML element, especially new elements introduced by HTML5. To address this limitation, some user agents, e.g., Firefox and Chrome in cooperation with some screen readers, have elected to expose new roles by returning a string value (BSTR) in that VARIANT in a way that is not described by the MSAA specification.
For example, Firefox returns the element's tag name as a BSTR for the following: a
(no href), abbr
, address
, area
(no href), aside
, blockquote
, canvas
, caption
, dd
, div
, embed
, figcaption
, footer
, form
, h1
–h6
, header
, iframe
, input type="file"
, main
, map
, nav
, object
, output
, p
, pre
, q
, ruby
, section
.
to do
Notes:
a
(represents a hyperlink)WAI-ARIA | link role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
a
(no href
attribute)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_TEXT_FRAME
Interfaces:
IAccessibleHyperlink ; IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_STATIC
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
abbr
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_TEXT_FRAME
Object attributes:
"abbr" attribute on the containing
td if a single child,
text content used as a value
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_STATIC
Object attributes:
"abbr" attribute on the containing
td if a single child,
text content used as a value
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
address
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_PARAGRAPH
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_PARAGRAPH
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
AXLandmarkContentInfo
AXRoleDescription:
"content information"
Note: recommend AXRoleDescription of "address" to disambiguate from "contentinfo" landmark role. Refer to WebKit bug 83989
|
area
(represents a hyperlink)WAI-ARIA | link role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
area
(no href
attribute)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_SHAPE
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_STATIC
|
AX |
Not mapped
|
article
WAI-ARIA | article role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
aside
WAI-ARIA | complementary role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
audio
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_GROUPING
|
UIA |
Control Type:
Group
|
ATK |
Role:
ATK_ROLE_AUDIO
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
Note: UI controls within the audio element exposed as
AXToolbar . |
b
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Exposed by
UIA_FontWeightAttributeId of the TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible, exposed as
"font-weight" text attribute on the text container.
The value depends on the platform.
|
UIA |
Doesn't have an accessible. Exposed by
UIA_FontWeightAttributeId of the TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible, exposed as
"font-weight" text attribute on the text container.
The value depends on the platform.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
base
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
bdi
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express | ? |
MSAA + IAccessible2 |
Doesn't have an accessible. May affect on
"writing-mode" text attribute on its text container.
|
UIA | ? |
ATK |
Doesn't have an accessible. May affect on
"writing-mode" text attribute on its text container.
|
AX |
bdo
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Doesn't have an accessible.
Exposed as "writing-mode" text attribute on its text container.
|
UIA |
Control Type:
Text
|
ATK |
Doesn't have an accessible.
Exposed as "writing-mode" text attribute on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
blockquote
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_SECTION
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Group
|
ATK |
Role:
ATK_ROLE_BLOCK_QUOTE
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
body
WAI-ARIA | document role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
br
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_WHITESPACE
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_WHITESPACE
|
UIA | ? |
ATK |
Doesn't have an accesible. Exposed as '\n' character
via
AtkText interface on the text container.
|
AX |
Not mapped
|
button
WAI-ARIA | button role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
canvas
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GRAPHIC
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_CANVAS
|
UIA |
Control Type:
Image
NOTE: subdom elements will be mapped separately.
|
ATK |
Role:
ATK_ROLE_CANVAS
|
AX |
AXRole:
AXImage
AXSubrole:
(nil)
AXRoleDescription:
"image"
|
caption
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
States:
STATE_SYSTEM_READONLY
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_CAPTION
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Text
Properties:
UIA_LabeledByPropertyId on the parent table pointing to the UIA element for the caption element.
|
ATK |
Role:
ATK_ROLE_CAPTION
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
cite
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are
mapped into text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are
mapped into text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
code
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are
mapped into text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are
mapped into text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
col
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
colgroup
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
TODO: look in more detail at UIA table implemenation
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
?TODO: look in more detail at UIA table implementation
|
ATK |
Not mapped
|
AX |
Not mapped
|
menu
element whose type
attribute is in the toolbar stateWAI-ARIA | menuitemcheckbox role, with the aria-checked state set to "true" if the command's Checked State facet is true, and "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menu
element whose type
attribute is in the toolbar stateWAI-ARIA | menuitem role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menu
element whose type
attribute is in the toolbar stateWAI-ARIA | menuitemradio role, with the aria-checked state set to "true" if the command's Checked State facet is true, and "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
data
WAI-ARIA | |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
datalist
WAI-ARIA | listbox role, with the aria-multiselectable property set to "false" |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
dd
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_PARAGRAPH
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA | ? |
ATK |
Role:
ATK_ROLE_DESCRIPTION_VALUE
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
AXDefinition
AXRoleDescription:
"definition"
|
del
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
details
WAI-ARIA | None |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_GROUPING
|
UIA |
Control Type:
Group ??window??
|
ATK |
Role:
ATK_ROLE_PANEL
|
AX | ? |
dfn
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are
exposed by text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are
exposed by text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
dialog
WAI-ARIA | |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_DIALOG
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_DIALOG
|
UIA | |
ATK |
Role:
ATK_ROLE_DIALOG
|
AX |
div
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
|
MSAA + IAccessible2 |
May not have an accessible if has no semantic meaning. Otherwise
Role:
IA2_ROLE_SECTION
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA | ? |
ATK |
May not have an accessible if has no semantic meaning. Otherwise
Role:
ATK_ROLE_SECTION
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
dl
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_LIST
States:
STATE_SYSTEM_READONLY
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_LIST
States:
STATE_SYSTEM_READONLY
|
UIA |
Control Type:
List
|
ATK |
Role:
ATK_ROLE_DESCRIPTION_LIST
|
AX |
AXRole:
AXList
AXSubrole:
AXDefinitionList
AXRoleDescription:
"definition list"
|
dt
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_LISTITEM
States:
STATE_SYSTEM_READONLY
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_LISTITEM
States:
STATE_SYSTEM_READONLY
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
ListItem
|
ATK |
Role:
ATK_ROLE_DESCRIPTION_TERM
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
AXTerm
AXRoleDescription:
"term"
|
em
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
embed
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_CLIENT
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_EMBEDDED_OBJECT
States:
STATE_SYSTEM_UNAVAILABLE for windowless plugin
|
UIA |
Control Type: ?Pane? Window?
|
ATK |
Role:
ATK_ROLE_EMBEDDED
|
AX | Depends on format of data file |
fieldset
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_GROUPING
|
UIA |
Control Type:
Group
|
ATK |
Role:
ATK_ROLE_PANEL
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
figcaption
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_CAPTION
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_CAPTION
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
figure
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_GROUPING
Object attributes:
xml-roles:figure
Name:
related
figcaption content
|
UIA |
Control Type:
Group
|
ATK |
Role:
ATK_ROLE_PANEL
Object attributes:
xml-roles:figure
Name:
related
figcaption content
|
AX | AXRole:
AXGroup AXSubrole:
(nil) AXRoleDescription: "figure" |
footer
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_FOOTER
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Expose as text string "footer" in
UIAutomationType_String ??discuss exposing localized type for all unmapped elements, or is it better to expose as Group?? |
ATK |
Role:
ATK_ROLE_FOOTER
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
Otherwise:
AXRole:
AXGroup
AXSubrole:
AXLandmarkContentInfo
AXRoleDescription:
"footer"
Refer to Webkit bug 78967
|
form
WAI-ARIA | form role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
h1
, h2
, h3
, h4
, h5
, h6
WAI-ARIA | heading role, with the aria-level property set to the element's outline depth |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
head
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
header
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_HEADER
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2 ;
|
UIA |
Control Type:
Group
Properties: Do not put "header" in
LocalizedControlType string because there is a header role for table headers
|
ATK |
Role:
ATK_ROLE_HEADER
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
Otherwise:
AXRole:
AXGroup
AXSubrole:
AXLandmarkBanner
AXRoleDescription:
"banner"
Refer to Webkit bug 78967
|
hr
WAI-ARIA | separator role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
html
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
i
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Exposed by
UIA_IsItalicAttributeId of the TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible, exposed as
"font-style:italic" text attribute on its text container.
|
UIA |
Doesn't have an accessible. Exposed by
UIA_IsItalicAttributeId of the TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible, exposed as
"font-style:italic" text attribute on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
iframe
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_DOCUMENT ??pane??
States:
STATE_SYSTEM_READONLY
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_INTERNAL_FRAME
Child:
ROLE_SYSTEM_DOCUMENT having STATE_SYSTEM_READONLY
|
UIA |
Control Type:
Document ??Pane??
|
ATK |
Role:
ATK_ROLE_INTERNAL_FRAME
Child:
ATK_ROLE_DOCUMENT_FRAME
|
AX |
AXRole:
AXWebArea
AXSubrole:
(nil)
AXRoleDescription:
"html content"
|
img
WAI-ARIA | img role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
img
(alt
attribute is empty)WAI-ARIA | presentation role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Button state)WAI-ARIA | button role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Button state and parent is a menu)WAI-ARIA | menuitem role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_MENUITEM
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_MENUITEM
|
UIA |
Control Type:
MenuItem
|
ATK |
Role:
ATK_ROLE_MENU_ITEM
|
AX | If the option's parent has a group role, then maps to AXMenuButton
If the option's parent has a menu role, then maps to AXMenuItem AXRole: AXMenuItem |
input
(type
attribute in the Color state)WAI-ARIA | ? |
---|---|
MSAA + UIA Express |
Role: If implemented as a textbox,
ROLE_SYSTEM_TEXT
Use UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_COLOR_CHOOSER
|
UIA |
Control Type: If implemented as a textbox,
Edit .
Properties: If implemented as a color picker, set
LocalizedControlType string to "Color Picker".
Control Pattern: If implemented as a color picker, implement
IUIAutomationSelectionPattern for the container and IUIAutomationSelectionItemPattern for each color choice
|
ATK |
Role:
ATK_ROLE_COLOR_CHOOSER
|
AX |
If implemented as a textbox:
AXRole:
AXTextField
AXSubrole:
(nil)
AXRoleDescription:
"textfield"
If implemented as a color picker:
AXRole:
AXColorWell
AXSubrole:
(nil)
AXRoleDescription:
"color chooser"
|
input
(type
attribute in the Checkbox state)WAI-ARIA | checkbox role, with the aria-checked state set to "mixed" if the element's indeterminate IDL attribute is true, or "true" if the element's checkedness is true, or "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Checkbox state and parent is a menu)WAI-ARIA | checkbox role, with the aria-checked state set to "mixed" if the element's indeterminate IDL attribute is true, or "true" if the element's checkedness is true, or "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Date state)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
UIA Calendar
ROLE_SYSTEM_DROPLIST
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_DATE_EDITOR
|
UIA |
Control Type:
Calendar
|
ATK |
Role:
ATK_ROLE_CALENDAR
|
AX |
AXRole:
AXDateField
AXSubrole:
(nil)
AXRoleDescription:
"date field"
|
input
(type
attribute in the Date and Time state)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
UIA Calendar
ROLE_SYSTEM_DROPLIST
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_DATE_EDITOR
|
UIA |
Control Type:
Calendar
|
ATK |
Role:
ATK_ROLE_CALENDAR
|
AX |
AXRole:
AXTextField
AXSubrole:
(nil)
AXRoleDescription:
"text field"
|
input
(type
attribute in the E-mail state with no suggestions source element)WAI-ARIA | textbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the File Upload state)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_PUSHBUTTON
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_TEXT_FRAME
Children:
A button and label (implementation specific)
|
UIA |
Control Type:
Button
|
ATK |
Role:
ATK_ROLE_STATIC
Children:
ATK_ROLE_PUSH_BUTTON when pressed ATK_ROLE_FILE_CHOOSER dialog shown
|
AX |
AXRole:
AXButton
AXSubrole:
(nil)
AXRoleDescription:
"button"
|
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Do not expose this object
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Do not expose this object
|
ATK |
Not mapped
|
AX | Do not expose this object |
input
(type
attribute in the Image Button state)WAI-ARIA | button role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Image Button state and parent is a menu)WAI-ARIA | menuitem role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Month state)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
UIA Calendar
ROLE_SYSTEM_DROPLIST
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_DATE_EDITOR
|
UIA |
Control Type:
Calendar
|
ATK |
Role:
ATK_ROLE_DATE_EDITOR
|
AX |
AXRole:
AXTextField
AXSubrole:
(nil)
AXRoleDescription:
"text field"
|
input
(type
attribute in the Number state)WAI-ARIA | spinbutton role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Password state)WAI-ARIA | textbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Radio Button state)WAI-ARIA | radio role, with the aria-checked state set to "true" if the element's checkedness is true, or "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Radio Button state and parent is a menu)WAI-ARIA | menuitemradio role, with the aria-checked state set to "true" if the element's checkedness is true, or "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Range state)WAI-ARIA | slider role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Reset Button state)WAI-ARIA | button role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Search state with no suggestions source element)WAI-ARIA | textbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Submit Button state)WAI-ARIA | button role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Telephone state with no suggestions source element)WAI-ARIA | textbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Text state with no suggestions source element)WAI-ARIA | textbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Text, Search, Telephone, URL, or E-mail states with a suggestions source element)WAI-ARIA | combobox role, with the aria-owns property set to the same value as the list attribute |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Time state)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_SPINBUTTON
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_SPINBUTTON
|
UIA |
Control Type:
Spinner
|
ATK |
Role:
ATK_ROLE_SPIN_BUTTON
|
AX |
AXRole:
AXTimeField
AXSubrole:
(nil)
AXRoleDescription:
"time field"
|
input
(type
attribute in the URL state with no suggestions source element)WAI-ARIA | textbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
input
(type
attribute in the Week state)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
UIA Calendar
ROLE_SYSTEM_DROPLIST
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_DATE_EDITOR
|
UIA |
Control Type:
Calendar
|
ATK |
Role:
ATK_ROLE_CALENDAR
|
AX |
AXRole:
AXTextField
AXSubrole:
(nil)
AXRoleDescription:
"text field"
|
ins
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
kbd
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Mapped into
"font-family:monospace" text attribute on its text
container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Mapped into
"font-family:monospace" text attribute on its text
container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
keygen
WAI-ARIA | listbox role, with the aria-multiselectable property set to "false" |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
label
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_STATICTEXT and IA2_ROLE_LABEL
Relations:
IA2_RELATION_LABEL_FOR for a child form element or form element
referred by for attribute. Note,
related form element provides IA2_RELATION_LABELLED_BY pointing to the label.
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_LABEL
Relations:
ATK_RELATION_LABEL_FOR for a child form element or form element
referred by for attribute. Note,
related form element provides ATK_RELATION_LABELLED_BY
pointing to the label.
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
legend
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
SHOULD use ROLE_SYSTEM_TEXT
UIA_LabeledByPropertyId (see UIA column)
|
MSAA + IAccessible2 |
Role :
ROLE_SYSTEM_STATICTEXT and IA2_ROLE_LABEL
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Text
Properties:
The parent
fieldset has a UIA_LabeledByPropertyId
pointing to the UIA element for the legend element.
|
ATK |
Role :
ATK_ROLE_LABEL
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
li
(parent is an ol
or ul
)WAI-ARIA | listitem role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
li
(parent is a menu
)WAI-ARIA | listitem role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
link
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
main
WAI-ARIA | main role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
map
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped if used as an image map, otherwise:
Role:
IA2_ROLE_TEXT_FRAME
|
UIA |
Not mapped
|
ATK |
Not mapped if used as an image map, otherwise:
Role:
ATK_ROLE_STATIC
|
AX |
Not mapped
|
mark
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
|
MSAA + IAccessible2 |
Doesn't have an accessible. Styles used to highlight
the text are mapped into text attributes on the text container.
|
UIA |
Control Type:
Text
|
ATK |
Doesn't have an accessible. Styles used to highlight
the text are mapped into text attributes on the text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
math
WAI-ARIA | math role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menu
(type
attribute in the popup menu state)WAI-ARIA | menu role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menu
(type
attribute in the toolbar state)WAI-ARIA | toolbar role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menuitem
(type
attribute in the Checkbox state)WAI-ARIA | menuitemcheckbox role, with the aria-checked state set to "true" if the checked attribute is present, and "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menuitem
(type
attribute in the Command state)WAI-ARIA | menuitem role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
menuitem
(type
attribute in the Radio state)WAI-ARIA | menuitemradio role, with the aria-checked state set to "true" if the checked attribute is present, and "false" otherwise |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
meta
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
meter
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
?? not sure this is right. maybe a number or value or something?
ROLE_SYSTEM_TEXT
Use UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_PROGRESSBAR
Interfaces:
IAccessibleValue
|
UIA |
Control Pattern:
RangeValue
Properties: Set the control pattern's
IsReadOnly property to true. Set LocalizedControlType to "Meter".
|
ATK |
Role:
ATK_ROLE_PROGRESS_BAR
Interfaces:
AtkValue
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
nav
WAI-ARIA | navigation role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
noscript
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
object
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express | ?? would pane or window work?? depends on format of data file. examples include document, client, graphic and unknown. Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Depends on format of data file. If contains a plugin then
Role:
IA2_ROLE_EMBEDDED_OBJECT
States:
STATE_SYSTEM_UNAVAILABLE for windowless plugin
|
UIA |
Depends on format of data file.
|
ATK |
Depends on format of data file. If contains a plugin then
Role:
ATK_ROLE_EMBEDDED
|
AX | Depends on format of data file. |
ol
WAI-ARIA | list role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
optgroup
WAI-ARIA | group role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
option
(in a list of options or represents a suggestion in a datalist
)WAI-ARIA | option role, with the aria-selected state set to "true" if the element's selectedness is true, or "false" otherwise. |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
output
WAI-ARIA | status role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
p
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_PARAGRAPH
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Text
|
ATK |
Role:
ATK_ROLE_PARAGRAPH
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
param
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
picture
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express | Not mapped |
MSAA + IAccessible2 | Not mapped |
UIA | Not mapped |
ATK | Not mapped |
AX | Not mapped |
pre
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT ??group?
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_PARAGRAPH
Used styles are mapped into text attributes on the accessible
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Text ??Group??
|
ATK |
Role:
ATK_ROLE_SECTION
Used styles are mapped into text attributes on the accessible
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
progress
WAI-ARIA | progressbar role, with, if the progress bar is determinate, the aria-valuemax property set to the maximum value of the progress bar, the aria-valuemin property set to zero, and the aria-valuenow property set to the current value of the progress bar |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
q
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT ??group??
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_TEXT_FRAME
Children:
ROLE_SYSTEM_TEXT wrapped by ROLE_SYSTEM_STATICTEXT created for quote marks
Interfaces:
IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Text ??Group??
|
ATK |
Role:
ATK_ROLE_STATIC
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
rp
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT ??group??
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Doesn't have an accessible. No child elements are
exposed if
ruby is supported by the browser.
|
UIA |
Control Type:
Text ??Group??
|
ATK |
Doesn't have an accessible. No child elements are
exposed if
ruby is supported by the browser.
|
AX | ? |
rt
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Doesn't have an accessible.
|
UIA |
Control Type:
Text
|
ATK |
Doesn't have an accessible.
|
AX | ? |
ruby
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT ??group??
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_TEXT_FRAME
|
UIA |
Control Type:
Text ??Group??
|
ATK |
Role:
ATK_ROLE_STATIC
|
AX | ? |
s
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible, exposed as
"text-line-through-style:solid" text attribute on the text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible, exposed as
"text-line-through-style:solid" text attribute on the text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
samp
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Styles are mapped into
text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Styles are mapped into
text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
script
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
section
WAI-ARIA | region role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
select
(with a multiple
attribute or
size
attribute having value greater than 1
)
WAI-ARIA | listbox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
select
(with NO multiple
attribute
and NO size
attribute having value greater than 1
)
WAI-ARIA | combobox role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
small
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Exposed by
UIA_FontSizeAttributeId of the TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Exposed as "font-size"
text attribute on the text container.
|
UIA |
Doesn't have an accessible. Exposed by
UIA_FontSizeAttributeId of the TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Exposed as "font-size"
text attribute on the text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
source
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Do not expose this object
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Do not expose this object
|
ATK |
Not mapped
|
AX |
Do not expose this object
|
span
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Control Type:
Group
|
ATK |
Not mapped
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
strong
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Used styles are mapped
into text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
style
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Do not expose this object
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Do not expose this object
|
ATK |
Not mapped
|
AX |
Do not expose this object
|
sub
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Exposed by
UIA_IsSubscriptAttributeId of the TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Exposed as "text-position:sub"
text attribute on its text container.
|
UIA |
Doesn't have an accessible. Exposed by
UIA_IsSubscriptAttributeId of the TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Exposed as "text-position:sub"
text attribute on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
summary
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_PUSHBUTTON
States: ??has popup??
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_PUSHBUTTON
|
UIA |
Control Type:
Button
Control Pattern:
ExpandCollapse
|
ATK |
Role:
ATK_ROLE_PUSHBUTTON
|
AX |
AXRole:
AXDisclosureTriangle
AXSubrole:
(nil)
AXRoleDescription:
"disclosure triangle"
|
sup
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Exposed by
UIA_IsSuperscriptAttributeId of the TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible. Exposed as "text-position:super"
text attribute on its text container.
|
UIA |
Doesn't have an accessible. Exposed by
UIA_IsSuperscriptAttributeId of the TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible. Exposed as "text-position:super"
text attribute on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
svg
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GRAPHIC
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_GRAPHIC
|
UIA |
Control Type:
Image
|
ATK |
Role:
ATK_ROLE_IMAGE
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
table
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TABLE
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_TABLE
Interface:
IAccessibleTable2
|
UIA |
Control Type:
DataGrid
Control Pattern:
Table
|
ATK |
Role:
ATK_ROLE_TABLE
Interface:
AtkTable
|
AX |
AXRole:
AXTable
AXSubrole:
(nil)
AXRoleDescription:
"table"
|
tbody
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Doesn't have an accessible
|
UIA |
Control Type:
Group
|
ATK |
Doesn't have an accessible
|
AX |
Not mapped
|
td
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_CELL
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_CELL
Interfaces:
IAccessibleTableCell ; IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
DataItem
|
ATK |
Role:
ATK_ROLE_TABLE_CELL
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXCell
AXSubrole:
(nil)
AXRoleDescription:
"cell"
|
template
WAI-ARIA | ? |
---|---|
MSAA + UIA Express | ? |
MSAA + IAccessible2 |
Not mapped
|
UIA | ? |
ATK |
Not mapped
|
AX | ? |
textarea
WAI-ARIA | textbox role, with the aria-multiline property set to "true" |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
tfoot
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Doesn't have an accessible
|
UIA |
Control Type:
Group
|
ATK |
Doesn't have an accessible
|
AX |
Not mapped
|
th
(is neither a column header nor a row header)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_CELL
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_CELL
Interfaces:
IAccessibleTableCell ; IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
DataItem
|
ATK |
Role:
ATK_ROLE_TABLE_CELL
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXCell
AXSubrole:
(nil)
AXRoleDescription:
"cell"
|
th
(is a column header)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_COLUMNHEADER
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_COLUMNHEADER
Interfaces:
IAccessibleTableCell ; IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Header
Properties:
UIA_OrientationPropertyId set to OrientationType_Vertical
??seems like it should be HeaderItem. ARIA UAIG has DataItem??
|
ATK |
Role:
ATK_ROLE_COLUMN_HEADER
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXCell
AXSubrole:
(nil)
AXRoleDescription:
"cell"
Properties: Parent table implements
AXColumnHeaderUIElements as a list of pointers to the column header cells, and AXHeader property as a pointer to the row or group containing the column header cells.
|
th
(is a row header)WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_ROWHEADER
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_ROWHEADER
Interfaces:
IAccessibleTableCell ; IAccessibleText2 ; IAccessibleHypertext2
|
UIA |
Control Type:
Header
Properties:
UIA_OrientationPropertyId set to OrientationType_Horizontal
??seems like it should be HeaderItem. ARIA UAIG has DataItem??
|
ATK |
Role:
ATK_ROLE_ROW_HEADER
Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXCell
AXSubrole:
(nil)
AXRoleDescription:
"cell"
Properties: Parent table implements
AXRowHeaderUIElements property as a list of pointers to the row header cells.
|
thead
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_GROUPING
|
MSAA + IAccessible2 |
Doesn't have an accessible
|
UIA |
Control Type:
Header
|
ATK |
Doesn't have an accessible
|
AX |
Not mapped
|
time
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_TEXT
|
MSAA + IAccessible2 |
Role:
IA2_ROLE_TEXT_FRAME Object attributes: "datetime" attribute on the containing Interfaces: |
UIA | ? |
ATK |
Role: Object attributes: "datetime" attribute on the containing Interfaces:
AtkText ; AtkHypertext
|
AX |
AXRole:
AXGroup
AXSubrole:
?
AXRoleDescription:
?
|
title
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
Not mapped
|
UIA |
Not mapped
|
ATK |
Not mapped
|
AX |
Not mapped
|
tr
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Role:
ROLE_SYSTEM_ROW
Use MSAA or UIA guidance
|
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_ROW
|
UIA |
Control Type:
DataItem
Control Pattern: SelectionItem |
ATK |
Role:
ATK_ROLE_TABLE_ROW
|
AX |
AXRole:
AXRow
AXSubrole:
AXTableRow
AXRoleDescription:
"row"
|
track
WAI-ARIA | ? |
---|---|
MSAA + UIA Express | ? |
MSAA + IAccessible2 |
Not mapped
|
UIA | ? |
ATK |
Not mapped
|
AX | ? |
u
WAI-ARIA | ? |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Exposed by
UIA_UnderlineStyleAttributeId of the TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible, mapped as "text-underline-style:solid" text attribute on its text container.
|
UIA |
Doesn't have an accessible. Exposed by
UIA_UnderlineStyleAttributeId of the TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible, mapped as
"text-underline-style:solid" text attribute on its text container.
|
AX | ? |
ul
WAI-ARIA | list role |
---|---|
MSAA + UIA Express | Use WAI-ARIA mapping |
MSAA + IAccessible2 | Use WAI-ARIA mapping |
UIA | Use WAI-ARIA mapping |
ATK | Use WAI-ARIA mapping |
AX | Use WAI-ARIA mapping |
var
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
MSAA + IAccessible2 |
Doesn't have an accessible, used styles are mapped
to text attributes on its text container.
|
UIA |
Doesn't have an accessible. Styles used are exposed by UIA text attribute identifiers of the
TextRange control pattern implemented on a parent accessible.
|
ATK |
Doesn't have an accessible, used styles are mapped
to text attributes on its text container.
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
video
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express | ? |
MSAA + IAccessible2 |
Role:
ROLE_SYSTEM_GROUPING
|
UIA | ? |
ATK |
Role:
ATK_ROLE_VIDEO
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
Note: UI controls within the video element exposed as
AXToolbar . |
wbr
WAI-ARIA | No corresponding role |
---|---|
MSAA + UIA Express |
Not mapped
|
MSAA + IAccessible2 |
A line break if added is exposed via
IAccessibleText on its text container
|
UIA | Not mapped |
ATK |
A line break if added is exposed via Text interface on its text container
|
AX |
AXRole:
AXGroup
AXSubrole:
(nil)
AXRoleDescription:
"group"
|
Notes:
abbr
[th
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Object attributes:
"abbr" until child
abbr element is provided
|
UIA | |
ATK |
Object attributes:
"abbr" until child
abbr element is provided
|
AX | |
Comments |
accept
[input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
accept-charset
[form
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
accesskey
[HTML elements
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | accKeyboardShortcut |
MSAA + IAccessible2 |
a key binding accessible by
accKeyboardShortcut
and IAccessibleAction::keyBinding
|
UIA |
Properties:
AcceleratorKey
|
ATK |
atk_action_get_keybinding
|
AX | AXAccessKey: <value> |
Comments |
action
[form
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
allowfullscreen
[iframe
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
alt
[area
; img
; input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | accName |
MSAA + IAccessible2 |
Used for accessible name, exposed via accName
|
UIA |
Properties:
Name
|
ATK |
Used for accessible name, exposed via
atk_object_get_name
|
AX | AXDescription: <value> |
Comments |
async
[script
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
autocomplete
"on|off" [form
]WAI-ARIA |
Note: the ARIA attribute and the HTML attribute have disparate features. |
---|---|
MSAA + UIA Express | Not mapped |
MSAA + IAccessible2 |
States:
STATE_SUPPORTS_AUTOCOMPLETION on text form controls unitl the value is overriden by control
|
UIA | Not mapped |
ATK |
States:
ATK_STATE_SUPPORTS_AUTOCOMPLETION
on text form controls unitl the value is overriden by control
|
AX | Not mapped |
Comments |
autocomplete
[input
; select
; textarea
]WAI-ARIA |
Note: the ARIA attribute and the HTML attribute have disparate features. |
---|---|
MSAA + UIA Express | Not mapped |
MSAA + IAccessible2 |
States:
STATE_SUPPORTS_AUTOCOMPLETION
|
UIA | Not mapped |
ATK |
States:
ATK_STATE_SUPPORTS_AUTOCOMPLETION
|
AX | Not mapped |
Comments |
autofocus
[button
; input
; keygen
; select
; textarea
]WAI-ARIA | Not mapped - aria-flowto ? |
---|---|
MSAA + UIA Express | N/A |
MSAA + IAccessible2 |
Not mapped
|
UIA | N/A |
ATK |
Not mapped
|
AX | N/A |
Comments |
autoplay
[audio
; video
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | N/A |
MSAA + IAccessible2 |
Not mapped
|
UIA | N/A |
ATK |
Not mapped
|
AX | N/A |
Comments |
border
[table
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
challenge
[keygen
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
charset
[meta
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
charset
[script
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
checked
(if present) [menuitem
; input
]WAI-ARIA | aria-checked (state)="true" |
---|---|
MSAA + UIA Express | Set the STATE_SYSTEM_CHECKED state |
MSAA + IAccessible2 |
States:
STATE_SYSTEM_CHECKED
|
UIA | Expose as ToggleState property in Toggle control pattern |
ATK |
States:
ATK_STATE_CHECKED
|
AX | AXValue: 1 |
Comments |
checked
(if absent) [menuitem
; input
]WAI-ARIA | aria-checked (state)="false" |
---|---|
MSAA + UIA Express | Clear the STATE_SYSTEM_CHECKED state |
MSAA + IAccessible2 |
Not mapped
|
UIA | Expose as ToggleState property in Toggle control pattern. |
ATK |
Not mapped
|
AX | AXValue: 0 |
Comments |
cite
[blockquote
; del
; ins
; q
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | AXURL: <value> |
Comments |
class
[HTML elements]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
cols
[textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | AXRangeForLine: <value> |
Comments |
colspan
[td
; th
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
exposed via
IAccessibleTableCell::columnExtent
|
UIA | |
ATK |
exposed via
atk_table_get_column_extent_at
|
AX | AXColumnIndexRange: |
Comments |
command
[menuitem
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
content
[meta
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
contenteditable
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
States:
IA2_STATE_EDITABLE on this and every nested text accessible
Interfaces:
IAccessibleEditableText on this and every nested text accessible
|
UIA | |
ATK |
States:
ATK_STATE_EDITABLE on this and every nested text accessible
Interfaces:
AtkEditableText on this and every nested text accessible
|
AX | ? |
Comments |
contextmenu
[HTML elements]WAI-ARIA | aria-haspopup ="true" |
---|---|
MSAA + UIA Express | Expose as STATE_SYSTEM_HASPOPUP . If on a push button, change the role to ROLE_SYSTEM_BUTTONMENU . |
MSAA + IAccessible2 |
Linked menu is available in browser's context menu on the element
|
UIA | Expose state of the pop-up activities in the ExpandCollapseState property in the ExpandCollapse control pattern. |
ATK |
Linked menu is available in browser's context menu on the element
|
AX |
Actions:
AXShowMenu ; AXPress
|
Comments |
controls
[audio
; video
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | Controls exposed as AXToolbar |
Comments |
coords
[area
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Defines an accessible's dimensions (
IAccessible::accLocation )
|
UIA | |
ATK |
Defines an accessible's dimensions, exposed via
atk_component_get_position and atk_component_get_size
|
AX | |
Comments |
crossorigin
[audio
; img
; link
; script
; video
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
data
[object
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
datetime
[del
; ins
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | ? |
Comments |
datetime
[time
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | ? |
Comments |
default
[track
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
defer
[script
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
dir
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as "writing-mode" text attribute on the text container.
|
UIA | |
ATK |
Exposed as "writing-mode" text attribute on the text container.
|
AX | ? |
Comments |
dirname
[input
; textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | ? |
Comments |
disabled
[button
; menuitem
; fieldset
; input
; keygen
; optgroup
; option
; select
; textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
States:
STATE_SYSTEM_UNAVAILABLE
|
UIA | |
ATK |
States:
No interactive states like
ATK_STATE_FOCUSABLE
|
AX | AXEnabled: NO |
Comments |
download
[a
; area
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | ? |
Comments |
draggable
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Object attributes:
draggable:true
|
UIA | |
ATK |
Object attributes:
draggable:true
|
AX | ? |
Comments |
dropzone
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | ? |
Comments |
enctype
[form
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
for
[label
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Used for accessible name
Relations:
IA2_RELATION_LABEL_FOR and IA2_RELATION_LABEL_BY relations between
label and referred element
|
UIA | |
ATK |
Used for accessible name
Relations:
ATK_RELATION_LABEL_FOR and ATK_RELATION_LABEL_BY relations between
label and referred element
|
AX | |
Comments |
for
[output
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Relations:
IA2_RELATION_CONTROLLED_BY with an element pointed by the attribute. Paired element exposes IA2_RELATION_CONTROLLER_FOR relation.
|
UIA | |
ATK |
Relations:
ATK_RELATION_CONTROLLED_BY with an element pointed by the attribute.
Paired element exposes ATK_RELATION_CONTROLLER_FOR relation.
|
AX | |
Comments |
form
[button
; fieldset
; input
; keygen
; label
; object
; output
; select
; textarea
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
formaction
[button
; input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
formenctype
[button
; input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
formmethod
[button
; input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
formnovalidate
[button
; input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
formtarget
[button
; input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
headers
[td
; th
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Links the cell to its header cells. Exposed via
IAccessibleTableCell::rowHeaderCells and columnHeaderCells.
|
UIA | |
ATK |
Links the cell to its row and column header cells
(note, only one row and one column header cells can be exposed because of API restrictions).
See
atk_table_get_row_header and atk_table_get_column_header .
|
AX | Expose via AXColumnHeaderUIElements and AXRowHeaderUIElements |
Comments |
height
[canvas
; embed
; iframe
; img
; input
; object
; video
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Defines an accessible's height (IAccessible::accLocation)
|
UIA | |
ATK |
Defines an accessible's height (
atk_component_get_size )
|
AX | |
Comments |
WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Makes the element not accessible
|
UIA | |
ATK |
Makes the element not accessible
|
AX | Not exposed in AX API |
Comments |
high
[meter
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | ? |
Comments |
href
[a
; area
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 | |
UIA | |
ATK | |
AX | AXURL: <value> |
Comments |
href
[link
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
hreflang
[a
; area
; link
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
http-equiv
[meta
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
icon
[menuitem
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
id
[HTML elements]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
ismap
[img
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
keytype
[keygen
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
kind
[track
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
label
[menuitem
; menu
; optgroup
; option
; track
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the accessible name
|
UIA | |
ATK |
Associates the accessible name
|
AX | |
Comments |
lang
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as "language" text attribute on the text container
|
UIA | |
ATK |
Exposed as "language" text attribute on the text container
|
AX | |
Comments |
list
[input
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the autocomplete list with the control. Refer to
input elements mapping.
|
UIA | |
ATK |
Associates the autocomplete list with the control. Refer to
input elements mapping.
|
AX | |
Comments |
longdesc
[img
, frame
, iframe
]WAI-ARIA | No |
---|---|
MSAA + UIA Express | accdescription (Internet Explorer only) |
MSAA + IAccessible2 |
Actions:
showlongdesc (exposed on
img only)
|
UIA |
Not mapped
|
ATK |
Actions:
showlongdesc (exposed on
img only)
|
AX |
Not mapped
|
Comments | IE 8+ populates the accdescription with the value of the longdesc attribute. This is brittle as it is overwritten when aria-describedby is used. |
loop
[audio
; video
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
low
[meter
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
manifest
[html
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
max
[input
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as
IAccessibleValue::maximumValue if the element
implements the interface
|
UIA | |
ATK |
Exposed as
atk_value_get_maximum_value if the element
implements the AtkValue interface
|
AX | AXMaxValue: <value> |
Comments |
max
[meter
; progress
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as
IAccessibleValue::maximumValue if the element
implements the interface
|
UIA | |
ATK |
Exposed as
atk_value_get_maximum_value if the element
implements the AtkValue interface
|
AX | AXMaxValue: <value> |
Comments |
maxlength
[input
; textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
media
[link
; source
; style
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
mediagroup
[audio
; video
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
method
[form
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
min
[input
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as
IAccessibleValue::minimumValue if the element
implements the interface
|
UIA | |
ATK |
Exposed as
atk_value_get_minimum_value if the element
implements the AtkValue interface
|
AX | AXMinValue: <value> |
Comments |
min
[meter
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as
IAccessibleValue::minimumValue if the element
implements the interface
|
UIA | |
ATK |
Exposed as
atk_value_get_minimum_value if the element
implements the AtkValue interface
|
AX | AXMinValue: <value> |
Comments |
multiple
[input
]WAI-ARIA | aria-multiselectable property set to "true" |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
multiple
[select
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
States:
STATE_SYSTEM_MULTISELECTABLE
A multi selectable listbox accessible, refer to
select element
|
UIA | |
ATK |
States:
ATK_STATE_SYSTEM_MULTISELECTABLE
A multi selectable listbox accessible, refer to
select element
|
AX | |
Comments |
muted
[audio
; video
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
name
[button
; fieldset
; input
; keygen
; output
; select
; textarea
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
name
[ form
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
name
[iframe
; object
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
name
[map
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
name
[meta
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
name
[param
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
novalidate
[form
]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
open
[details
]WAI-ARIA | aria-expanded ="true | false" |
---|---|
MSAA + UIA Express | STATE_SYSTEM_EXPANDED STATE_SYSTEM_COLLAPSED |
MSAA + IAccessible2 | STATE_SYSTEM_EXPANDED STATE_SYSTEM_COLLAPSED |
UIA |
ExpandCollapsePattern
|
ATK |
States:
ATK_STATE_COLLAPSED or ATK_STATE_EXPANDED depending
on the attribute value
|
AX | AXExpanded: YES|NO |
Comments | Set properties on the summary element. |
open
[dialog
]WAI-ARIA | aria-expanded ="true | false" |
---|---|
MSAA + UIA Express | STATE_SYSTEM_EXPANDED STATE_SYSTEM_COLLAPSED |
MSAA + IAccessible2 | STATE_SYSTEM_EXPANDED STATE_SYSTEM_COLLAPSED |
UIA |
ExpandCollapsePattern
|
ATK |
States:
ATK_STATE_COLLAPSED or ATK_STATE_EXPANDED depending
on the attribute value
|
AX | AXExpanded: YES|NO |
Comments |
optimum
[meter
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
pattern
[input
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
States:
IA2_STATE_INVALID_ENTRY if value doesn't meet the pattern
|
UIA | |
ATK |
States:
ATK_STATE_INVALID_ENTRY if value doesn't meet the pattern
|
AX | |
Comments |
placeholder
[input
; textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the accessible name or if it was provided otherwise then
accessible description
|
UIA | |
ATK |
Associates the accessible name or if it was provided otherwise then
accessible description
|
AX | AXPlaceholderValue: <value> |
Comments |
poster
[video
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
preload
[audio
; video
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
radiogroup
[menuitem
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
readonly
[input
; textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | STATE_SYSTEM_READONLY |
MSAA + IAccessible2 | |
UIA | |
ATK | |
AX | AXEnabled: NO |
Comments |
rel
[a
; area
; link
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
required
[input
; select
; textarea
]WAI-ARIA | aria-required |
---|---|
MSAA + UIA Express | Not mapped * * Exposed as |
MSAA + IAccessible2 |
States:
IA2_STATE_REQUIRED
|
UIA | Expose as IsrequiredForForm property. |
ATK |
States:
ATK_STATE_REQUIRED
|
AX | AXRequired: YES |
Comments | ? |
reversed
[ol
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Changes the numbering of underlying list item accessibles
|
UIA | |
ATK |
Changes the numbering of underlying list item accessibles
|
AX | |
Comments |
rows
[textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
rowspan
[td
; th
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
exposed via
IAccessibleTableCell::rowExtent
|
UIA | |
ATK |
Exposed via
atk_table_get_row_extent_at
|
AX | AXRowIndexRange: |
Comments |
sandbox
[iframe
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
spellcheck
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Mapped to "invalid" text attribute on the text container
|
UIA | |
ATK |
Mapped to "invalid" text attribute on the text container
|
AX | |
Comments |
scope
[th
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Defines whether the element is a row or column header (refer to
th element)
|
UIA | |
ATK |
Defines whether the element is a row or column header (refer to
th element)
|
AX | |
Comments |
scoped
[style
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
seamless
[iframe
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
selected
[option
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
States:
STATE_SYSTEM_SELECTED ; if the container widget has DOM focus then
STATE_SYSTEM_FOCUSED (refer to option element)
|
UIA | |
ATK |
States:
ATK_STATE_SELECTED ; if the container widget has DOM focus then
ATK_STATE_FOCUSED (refer to option element)
|
AX | |
Comments |
shape
[area
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
size
[input
; select
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
If greater than 1 then creates a listbox accessible,
refer to
select element for details
|
UIA | |
ATK |
If greater than 1 then creates a listbox accessible,
refer to
select element for details
|
AX | |
Comments |
sizes
[link
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
span
[col
; colgroup
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
exposed as
IAccessibleTableCell::columnExtent on
all cells at the column
|
UIA | |
ATK |
Exposed via
atk_table_get_column_extent_at
|
AX | |
Comments |
src
[ audio
; embed
; iframe
; img
; input
; script
; source
; track
; video
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Object attributes:
src on
img only
|
UIA | |
ATK |
Object attributes:
src on
img only
|
AX | |
Comments |
srcdoc
[iframe
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
srclang
[track
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
start
[ol
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Changes the numbering of underlying list item accessibles
|
UIA | |
ATK |
Changes the numbering of underlying list item accessibles
|
AX | |
Comments |
step
[input
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Exposed as
atk_value_get_minimum_increment if the element
implements the AtkValue interface
|
AX | |
Comments |
style
[HTML elements]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Refer to CSS accessibility mapping
|
UIA | |
ATK |
Refer to CSS accessibility mapping
|
AX | |
Comments |
tabindex
[HTML elements]WAI-ARIA | Not mapped |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
States:
STATE_SYSTEM_FOCUSABLE ; when the element has DOM focus then STATE_SYSTEM_FOCUSED
|
UIA | |
ATK |
States:
ATK_STATE_FOCUSABLE ; when the element has DOM focus then ATK_STATE_FOCUSED
|
AX | |
Comments |
target
[a
; area
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
target
[base
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
target
[form
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
title
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the accessible name or if it was provided otherwise then
accessible description
|
UIA | |
ATK |
Associates the accessible name or if it was provided otherwise then
accessible description
|
AX | AXHelp: <value> |
Comments |
title
[abbr
; dfn
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the accessible name
|
UIA | |
ATK |
Associates the accessible name
|
AX | AXHelp: <value> |
Comments |
title
[menuitem
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the accessible name or if it was provided otherwise then
accessible description
|
UIA | |
ATK |
Associates the accessible name or if it was provided otherwise then
accessible description
|
AX | AXHelp: <value> |
Comments |
title
[link
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX |
Not mapped
|
Comments |
title
[link
; style
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX |
Not mapped
|
Comments |
translate
[HTML elements]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
type
[a
; area
; link
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
type
[button
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
submit type may be a default button in the form
|
UIA | |
ATK |
submit type may be a default button in the form
|
AX | |
Comments |
type
[button
; input
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 | |
UIA | |
ATK | |
AX | |
Comments |
type
[menuitem
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Defines the accessible role and states, refer to
type="
command "
|
UIA | |
ATK |
Defines the accessible role and states:
type="
command "
|
AX | |
Comments |
type
[embed
; object
; script
; source
; style
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
type
[menu
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
typemustmatch
[object
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
usemap
[img
; object
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Responsible for image map creation, refer to
img element
|
UIA | |
ATK |
Responsible for image map creation, refer to
img element
|
AX | |
Comments |
value
[button
; option
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
value
[input
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Associates the accessible value for entry type input elements
and accessible name for button type input elements
|
UIA | |
ATK |
Associates the accessible value for entry type input elements
and accessible name for button type input elements
|
AX | AXValue: <value> |
Comments |
value
[li
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as a text of first child of the list item accessible
|
UIA | |
ATK |
Exposed as a text of first child of the list item accessible
|
AX | |
Comments |
value
[meter
; progress
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Exposed as
IAccessibleValue::currentValue
|
UIA | |
ATK |
Exposed as
atk_value_get_current_value
|
AX | AXValue: <value> |
Comments |
value
[param
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
width
[canvas
; embed
; iframe
; img
; input
; object
; video
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Defines an accessible's width (
IAccessible::accLocation )
|
UIA | |
ATK |
Defines an accessible's width (
atk_component_get_size )
|
AX | AXSize: w=n |
Comments |
wrap
[textarea
]WAI-ARIA | |
---|---|
MSAA + UIA Express | |
MSAA + IAccessible2 |
Not mapped
|
UIA | |
ATK |
Not mapped
|
AX | |
Comments |
The terms accessible name and accessible description are properties provided in all accessibility APIs. The name of the properties may differ across APIs but they serve the same function: as a container for a short (name) or longer (description) string of text.
input type="text"
, input type="password"
, input type="search"
, input type="tel"
, input type="url"
and textarea
Element If the control has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in section 5.2.7. Accessible Name Calculation of the WAI-ARIA 1.0 specification.
The accessible description is derived from the following sources: aria-describedby
or a non-empty placeholder
attribute or a non-empty title
attribute.
input type="text"
, input type="password"
, input type="search"
, input type="tel"
, input type="email"
, input type="url"
and textarea
Element Accessible Name Calculationaria-labelledby
aria-label
label
elementplaceholder
attributetitle
attributeinput type="text"
, input type="password"
, input type="search"
, input type="tel"
, input type="email"
, input type="url"
and textarea
Element Accessible Description Calculationaria-describedby
placeholder
attribute if it wasn't used as the accessible nametitle
attribute if it wasn't used as the accessible name.input type="image"
If the control has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in section 5.2.7. Accessible Name Calculation of the WAI-ARIA 1.0 specification.
Otherwise the accessible name is derived from the following sources; a non-empty alt
attribute, or a non-empty title
attribute.
input type="image"
Accessible Name Calculationaria-labelledby
aria-label
alt
attributevalue
attribute title
attributeinput type="image"
Accessible Description Calculationaria-describedby
title
attribute if it wasn't used as the accessible name.If the control has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
Otherwise the accessible name is derived from the following sources; a non-empty associated label
element or a non-empty title
attribute.
aria-labelledby
aria-label
label
elementtitle
attributearia-describedby
title
attribute if it wasn't used as the accessible name.summary
Element If the summary
element has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
Otherwise the accessible name is derived from the following sources; non-empty summary
element subtree or a non-empty title
attribute or the default text string inserted by the browser
summary
Element Accessible Name Calculationaria-labelledby
aria-label
summary
element subtreetitle
attributesummary
Element Accessible Description Calculationaria-describedby
summary
element subtree if not used as the accessible nametitle
attribute if it wasn't used as the accessible namefigure
and figcaption
Elements If the figure
element has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
figure
Element Accessible Name Calculationaria-labelledby
aria-label
figcaption
subtreetitle
attributefigure
Element Accessible Description Calculationaria-describedby
title
attribute if it wasn't used as the accessible nameimg
ElementIf the img
element has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
img
element Accessible Name Calculationaria-labelledby
aria-label
alt
attributetitle
attributeimg
Element Accessible Description Calculationaria-describedby
title
attribute if it wasn't used as the accessible nametable
ElementIf the table element has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
table
Element Accessible Name Calculationaria-labelledby
aria-label
caption
elementtitle
attributesummary
attributetable
Element Accessible Description Calculationaria-describedby
caption
element if it wasn't used as the accessible namesummary
attribute if it wasn't used as the accessible nametitle
attribute if it wasn't used as the accessible namea
ElementIf the a
element has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
a
Element Accessible Name Calculationaria-labelledby
aria-label
a
element subtreetitle
attributea
Element Accessible Description Calculationaria-describedby
title
attribute if it wasn't used as the accessible nameem
, strong
, small
, s
, cite
, q
, dfn
, abbr
, time
, code
, var
, samp
, kbd
, sub
and sup
, i
, b
, u
, mark
, ruby
, rt
, rp
, bdi
, bdo
, br
, wbr
If the element has an aria-label
or an aria-labelledby
attribute the accessible name is to be calculated using the algorithm defined in Accessible Name and Description: Computation and API Mappings 1.1.
aria-labelledby
aria-label
title
attributearia-describedby
title
attribute if it wasn't used as the accessible nameThis section is non-normative.
summary
and details
ElementsThe summary
element should be focusable by default.
The details
element should not focusable by default.
Pressing the spacebar or enter key when the summary
element has focus will show the details
element content if the content is hidden. If the details
element content is showing and the summary
element has focus, pressing the spacebar or enter key will hide the details element content.
The summary
element should be mapped to a disclosure triangle role in accessibility APIs that have such a role. For example the Mac accessibility API includes the AXDisclosureTriangle
role. In accessibility APIs that do not have such a fine grained role, the summary
element should be mapped to a button
role. The role mapping table contains recommended mappings for the summary element.
The default accessible name for the summary
element is the text content of the summary
element.
When the details
element content is hidden, the state of the content should be reflected by an accessible state or property.
Example 1: In the Mac accessibility API on the summary
element (AXDisclosureTriangle
), set AXExpanded
property to NO
. When the details
element content is shown, on the summary
element (AXDisclosureTriangle
), set theAXExpanded
property to YES
. The hidden and shown states of the details
element content is reflected by the absence or presence of the open
attribute.
Example 2: In the IA2 accessibility API on the summary
element (ROLE_SYSTEM_PUSHBUTTON
), set STATE_SYSTEM_COLLAPSED
. When the details
element content is shown, on the summary
element (ROLE_SYSTEM_PUSHBUTTON
), set STATE_SYSTEM_EXPANDED
. The hidden and shown states of the details
element content is reflected by the absence or presence of the open
attribute.
figure
and figcaption
Elementsto do
This section is non-normative.
The following people contributed to the development of this document.
This publication has been funded in part with Federal funds from the U.S. Department of Education, National Institute on Disability, Independent Living, and Rehabilitation Research (NIDILRR) under contract number ED-OSE-10-C-0067. The content of this publication does not necessarily reflect the views or policies of the U.S. Department of Education, nor does mention of trade names, commercial products, or organizations imply endorsement by the U.S. Government.