W3C

States and Properties Module for Accessible Rich Internet Applications (WAI-ARIA States and Properties)

A Syntax for adding accessible state information and author settable properties for XML

W3C Working Draft 26 September 2006

This version:
http://www.w3.org/TR/2006/WD-aria-state-20060926/
Latest version:
http://www.w3.org/TR/aria-state/
Editor:
Lisa Seeman, UB Access

Abstract

The attributes defined in this specification enable XML [XML] languages to add information about the behavior of an element. States and Properties are mapped to accessibility frameworks (such as a screen reader) that use this information to provide alternative access solutions. Similarly, States and Properties can be used to change the rendering of content dynamically using different style sheet properties. The result is an interoperable method for associating behaviors with document-level markup.

This document and the Roles for Accessible Rich Internet Applications (WAI-ARIA Roles) [ARIA_ROLE] fill information gaps identified by the Roadmap for Accessible Rich Internet Applications (WAI-ARIA Roadmap) [ARIA-ROADMAP] to enable accessible dynamic Web content and applications. The WAI-ARIA Roadmap performs the gap analysis identifying what technology is needed to keep the new, richly interactive Web universally accessible. The WAI-ARIA Roles specification sets out an abstract model of building blocks for accessible interfaces. This includes interactive widgets, navigable structures, and an extension mechanism. This specification creates a language module implementing the functional requirements of the abstract model that is ready for incorporation in content format profiles that follow the methods of XHTML Modularization [XHTMLMOD]. It also introduces one such profile for the use of this module in XHTML.

Status of This Document

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 document is a First Public Working Draft by the Protocols & Formats Working Group of the Web Accessibility Initiative. Feedback on the format module provided here is essential to the ultimate success of the Web in creating Rich Internet Applications that afford full access to their information and operations. The PFWG asks in particular if:

Comments on this document may be sent to public-pfwg-comments@w3.org (Archive).

Publication as a 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.

The Protocols and Formats Working Group is not chartered to produce Recommendation-track deliverables. The Working Group expects to recharter to include this deliverable as a Recommendation-track deliverable under the W3C Royalty-Free Patent Policy. If the Director approves such a charter change, the group plans for this document to become a W3C Recommendation under the W3C Patent Policy. If the charter does not change to allow this, the group expects this document to become a W3C Note.

The disclosure obligations of the Participants of this group are described in the charter.

Table of Contents

1. Introduction

This section is informative.

States and Properties are used to make interactive elements accessible, usable and interoperable.

States and Properties are used to declare important properties of an element that affect and describe interaction. These properties enable the user agent or operating system to properly handle the element - even when these properties are altered dynamically by scripts. The user agent may map the States and Properties to the accessibility API of the operating system.

For example, alternative input and output technology such as screen readers, speech dictation software and on-screen keyboards must recognize the state of an element (such as: if an object is disabled, checked, focused, collapsed, hidden, etc.).

The contract model with accessibility API's
Figure 1.0 illustrates a typical Document Object Model (DOM) [DOM] node. Placed within the DOM node and the assistive technology is a box containing the contract provided by the user agent to the assistive technology. This data includes typical accessibility information found in the accessibility API for many of our accessible platforms for GUIs (role, state, caret, selection, event notification, parent/child information, relationship, and descriptions).

For more information see the Roadmap for Accessible Rich Internet Applications for the use of roles in making interactive content accessible.

1.1. Example

This section is informative.

This example shows a role being used to make a simple widget known to the user agent, so that the user agent can handle it correctly.

In this example a div has been used with scripts to act as a tristate checkbox. The State and Adaptable Properties of checked has been set to true.

The XHTML role element gives the use agent information about the behavior of the widget. For more information on Roles see the Roles for Accessible Rich Internet Applications [ARIA_ROLE].

<span
    class="checkboxtristate" 
    id="chbox1" 
    role="wairole:checkboxtristate" 
    aaa:checked="true" 
    tabindex="0"
    onkeydown="return checkBoxEvent(event);" 
    onkeyup="return checkBoxEvent(event);" >
  A checkbox label
</span>

JavaScript can then manipulate the widget via the DOM. However, because States and Properties are mapped to the accessibility platforms, the assistive technology and user agents can understand the widget behavior and respond appropriately.

java script snippet : 

 if ((event.type == "keyup" && event.button == 0){

    // Toggle checkbox

    var checkbox = event.target;

    if (checkbox.getAttributeNS("
				http://www.w3.org/2005/07/aaa/
			", "checked") == "true") {

       checkbox.removeAttributeNS("
				http://www.w3.org/2005/07/aaa/
			", "checked");

    }


    return false;  // Don't continue propagating event}

  return true;  // Browser can still use event

}
Typically, States and Properties will work well with other supporting technologies, such as the Roles for Accessible Rich Internet Applications [ARIA_ROLE] and [XML events].

1.2. Terms and Definitions

This section is informative.

While some terms are defined in place, the following definitions are used throughout this document. Familiarity with the W3C XHTML 1.1 Recommendation [XHTML] and the W3C XML 1.0 Recommendation [XML] is highly recommended.

Accessibility API
This is the accessibility API for a given platform. Examples of this are the Java Accessibility API [JAPI], Microsoft Active Accessibility [MSAA], Apple Accessibility for COCOA [AAC], and the Gnome Accessibility Toolkit (ATK) [GAP].
Functionality
processes and outcomes achievable through user action
User Agent
any software that retrieves and renders Web content for users
Example: Web browsers, media players, plug-ins, and other programs, including assistive technologies, that help in retrieving and rendering Web content.
Assistive Technology (in the context of this document)
a user agent that:
1. Relies on services (such as retrieving Web content and parsing markup) provided by one or more other "host" user agents. Assistive technologies communicate data and messages with host user agents by using and monitoring APIs.
2. Provides services beyond those offered by the host user agents to meet the requirements of users with disabilities. Additional services include alternative renderings (e.g., as synthesized speech or magnified content), alternative input methods (e.g., voice), additional navigation or orientation mechanisms, and content transformations (e.g., to make tables more accessible).
Example: Examples of assistive technologies that are important in the context of this document include the following:
Screen magnifiers, which are used by people with visual disabilities to enlarge and change colors on the screen to improve the visual readability of rendered text and images;
screen readers, which are used by people who are blind or have reading disabilities to read textual information through synthesized speech or braille displays;
Voice recognition software, which may be used by people who have some physical disabilities;
Alternative keyboards, which are used by people with certain physical disabilities to simulate the keyboard;
Alternative pointing devices, which are used by people with certain physical disabilities to simulate mouse pointing and button activations.

Note: This definition is based on WCAG Accessibility Guidelines 2.0.

1.3. Design Aims

This section is informative.

The design aims of creating this specification include:

1.4. Building Accessible Applications

This section is informative.

An application becomes accessible when:

States and Properties can be used to build accessible applications by providing any missing states, properties, and relationships information that the assistive technology needs to understand the behavior of the elements inside the application.

States and Properties can be used for assigning meaningful properties that change with time and events. For element types and semantics that do not change with time see the Roles taxonomy.

To build an accessible application first check that each element or widget is marked with full and corrected semantics that fully describes its behavior (using element names or roles). Also ensure that all groups of content have been identified in the markup. Then use this specification to ensure:

  1. States, properties, and relationships are valid for each element's behavior and are accessible via the DOM.
  2. Elements have the correct input focus.

    This requires the author to:

  3. Set properties until the behavior of the element is defined.
  4. Control the behavior of the element using device-independent events, states, and properties.

For example: If the user is required to fill in a form element set the aaa:required property to true.

In other cases use the States and Properties module to state relationships. For example: If container A contains search results, and container B contains the search controls, then mark each container as a region and set the aaa:controls property in region B to reference region A.

Sometimes the relationships can be made clear via the native markup language, such as the label tag in [HTML]. Sometimes this can be implied via the DOM. For example, when a well marked-up list contains list items it is known that they belong to the containing list. In such cases you do not need to set additional properties to make that explicit.

An important addition in the States and Properties Module is new extensions of TABINDEX. Now, with the TABINDEX change, the author is allowed to give any element keyboard focus (and not just form elements or anchors). In this paradigm shift, the user may use tabbing or keyboard mnemonics to move focus to widgets on the Web page and then use the arrow keys to navigate the object. The TABINDEX change enables support of User Agent Accessibility Guidelines ([UAAG]).

2. Conformance Requirements

This section is normative.

The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 [RFC2119].

2.1. Document Conformance

States and Properties is not a stand-alone document type. It is intended to be integrated into other host languages such as XHTML. A conforming document is a document that requires only the facilities described as mandatory in this specification and the facilities described as mandatory in its host language. Such a document must meet all the following criteria:

  1. The document must conform to the constraints expressed in Appendix A. DTD Implementation combined with the constraints expressed in its host language implementation.

  2. The document must use either of the following:
    1. The following Doctype declaration: <DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications//EN" "http://www.w3.org/2005/07/aaa/xhtml11-aaa.dtd"> This extends XHTML with States and Properties added to the common attribute set.
    2. The document may also contain an XML Namespace [XML-NAMES] declaration for the author properties namespace. The namespace for States and Properties module is defined to be: http://www.w3.org/2005/07/aaa. An example start tag of a root element might look like:
      <html xmlns=" http://www.w3.org/2002/06/xhtml2/ " xml:lang="en" xmlns:aaa=" http://www.w3.org/2005/07/aaa " >

2.2. Host Language Conformance

When States and Properties are included in a host language, all of the facilities required in this specification must be included in the host language.

2.3. User Agent Conformance

A conforming user agent must support all of the features required in this specification in the DOM.

3. The States and Properties Module

This section is normative.

This specification defines the States and Properties module for XHTML [XHTML]. It also defines a representative profile which extends the XHTML 1.1 - Full profile by adding this module.

All examples are informative. Examples in this document that use the namespace prefix "aaa" all assume a valid XML namespace declaration xmlns:aaa = "http://www.w3.org/2005/07/aaa" in the document involved.

Section 3.1 below discusses examples of how the module may be integrated into language profiles. Section 3.2 below then defines the particulars of the module.

3.1. Using States and Properties Attached to an Element

Language profiles wishing to use these states and properties must integrate the module in a way which makes this document the governing specification for the semantics of these language features. Appropriate methods of module integration include but are not limited to all methods as specified in XHTML Modularization [XHTMLMOD].

3.1.1. XHTML

Appendix A.2 provides a driver DTD which integrates a new profile for XHTML which augments XHTML 1.1 Full with the capabilities in the new module introduced here.

Valid XHTML 1.1 documents that wish to use this profile must use the following DOCTYPE declaration:

<DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications//EN"
 "http://www.w3.org/2005/07/aaa/xhtml11-aaa.dtd">
3.1.1.1. XHTML with prefixes
3.1.1.1.1. The default prefix

Attributes for States and Properties should be used with prefix "aaa". For example:

<?xml version="1.0" encoding="UTF-8"?>

<DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications//EN">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
<title>DHTML Checkbox</title>
</head>

<body>

<p>Here's a three state checkbox that you can click on.</p>

<div class="checkboxtristate " role="checkboxtristate" id=" chbox1" aaa:required="true" aaa:readonly="true " aaa:random="sometext " onkeydown="return checkBoxEvent(event);" onclick="return checkBoxEvent(event);" >
Sign me up for all the weekly rdf and xml newsletters :) 
</div>

</body>
</html>

3.1.1.1.2. Changing the prefix

You can change the default prefix by extending the DOCTYPE of your XHTML document. For example:

<!DOCTYPE html PUBLIC "-//W3C//ELEMENTS DTD XHTML 1.1 For Accessible Adaptable Applications//EN"

"http://www.w3.org/2005/07/aaa/xhtml11-aaa-base.dtd" [

<!ENTITY % aaa.prefixed "INCLUDE">

<!ENTITY % aaa.prefix "state">

]>

3.1.1.1.3. Tabindex

Tabindex is not a state and has not been added to the basic namespace. However, to help the accessibility of accessible XHTML applications Tabindex has been added to the tags div, span, p, td, th and li in the extended XHTML Doctype. The TABINDEX change enables support of User Agent Accessibility Guidelines ([UAAG]). Tabindex should not be used with a prefix.

3.1.1.2. XHTML without prefixes

Prefixes can sometimes be dropped when using XHTML 1.1 For Accessible Adaptable Applications. For example:
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE html PUBLIC "-//W3C//ELEMENTS DTD XHTML 1.1 For Accessible Adaptable Applications//EN" "http://www.w3.org/2005/07/aaa/xhtml11-aaa-base.dtd"> <html xmlns="http://www.w3.org/1999/xhtml " xml:lang="en ">

<head>

<title>DHTML Checkbox</title >

</head>

<body>

<p >Here's a three state checkbox that you can click on.</ p>

<div class="checkboxtristate " role= "checkboxtristate" id="chbox1 " required="true" readonly="true " random="sometext " onkeydown="return checkBoxEvent(event);" onclick="return checkBoxEvent(event);">

Sign me up for weekly rdf newsletter :)

</div>

</body>

</html>

However, this is not advisable because of namespace conflict. XHTML 1.1 For Accessible Adaptable Applications extends already existing attributes such as readonly. These attributes therefore require prefixing. We therefore recommend always using the default "aaa" prefix.

The list of conflicts are:

3.1.2. States and Properties with other XML languages

States and Properties can also be used with other XML languages using the following namespace :

 xmlns:aaa="http://www.w3.org/2005/07/aaa"

The following example demonstrates using States and Properties with SVG [SVG]:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-flat-20030114.dtd">
<svg xmlns="http://www.w3.org/2000/svg " xmlns:aaa="http://www.w3.org/2005/07/aaa " width="100% " height="100% ">

<desc>
Example of using state-attributes from Accessible Adaptable Applications Namespace: 

		
</desc>

<!-- an expanded group of rectangles -->
<g aaa:expanded="true ">
<!-- this rectangle is zoomed -->

 x="1cm " y="3cm " width="1cm " height="1cm " />
<rect x="3cm " y="3cm " width="1cm " height="1cm " />
</g>
</svg>

3.2. Supported States and Properties

The States and Properties Module supports the following attributes:

States and Properties
State Value Description Base and Related Concepts
checked (true | false | mixed) This state is used for 2-state or 3 -state widgets such as checkboxes. The current state is determined from the value property.

If "true", indicates that the current item is checked.

The value "mixed" indicates in mixed mode for a tri-state checkbox.

Can be set to "false" on roles that support being checked when an item is checkable but is currently not checked
 
disabled (true | false) Indicates that the widget is present, but is not allowed for user actions. For example, irrelevant options in a radio group may be disabled.

Disabled elements often cannot have focus.

There should be a change of appearance to indicate that the item has been disabled (grayed out, etc.).

readonly (true | false)

Indicates that the widget is present, but is not editable or operable. Unlike an object disabled, readonly objects are relevant to the user.

Examples include:

  • A form element which represents a constant.
  • Row or column headers in a spreadsheet
  • The result of a calculation such as a shopping cart total
[XForms] Readonly
multiselectable (true | false) Indicates that user may select more than one item from the current list.

Examples include: lists, trees, spreadsheets

 
activedescendent ID

An element which has focus may specify its current active child. This is used when a element is responsible for managing its current active child to reduce the overhead of having all children be focusable.

Examples include: multi-level lists, trees, spreadsheets.

[SVG] [DOM] active
expanded (true | false | undefined) Indicates that an expandable/collapsible group of elements is currently expanded or collapsed.
  • A value of true indicates the group is expanded.
  • A value of false indicates the group is collapsed.
  • A value of undefined means the group is neither expandable nor collapsible (all its child elements are shown).

Examples include: to expand or collapse a portion of the tree, or an "expanded" version such as acronyms, rollovers, diagram sections.

Tapered prompts in voice browsing.

Switch in [SMIL] .

selected (true | false | undefined) This sets whether the user has selected an item or not. For example, a role such as a radio button may support being selected, but that does not mean that at any one time it is selected.
  • If true, a selectable element is actually selected.
  • If false, the element is not selected.
  • If undefined, the element is not selectable
required (true | false) Indicates that some user-input is required before submission. For example, if a user must fill in an address field, then required is set to true.

Note, the fact that the element is required is often visually presented (such as a sign or symbol after the control). Using the required attribute makes it much easier for user agents to pass on this important information to the user.

 
valuenow CDATA The current value of a widget. Used for a range control such as slider, progress bar, and date. [XForms] Range start
valuemax CDATA

Maximum allowed value for a range type of widget. A range control may start with a value but then that value can change until a max value.

Declaring the maximum value allowed will allow for alternate device to calibrate an arrow up effect, validate, or simply let the user know the size of the range on offer.

[XForms] range
valuemin CDATA

Minimum allowed value for a range type of widget.

A range control may start with a value but then that value may change until a minimum value.

Declaring the minimum value allows for alternate device to calibrate an arrow up effect, validate, or simply let the user know the size of the range on offer.

[XForms] range
invalid (true | false)

Indicates that the element's value is currently invalid, which discourages the form from being submitted.

If the state is computed to be invalid, out-of-range, or required this value should be set as true.

[XForms] 'invalid' event http://www.w3.org/TR/2006/REC-xforms-20060314/slice4.html#evt-revalidate

Note: This state is true if a form field is required but empty. However, [XForms]'s valid property would be set to false.

describedby IDREF

Points to element which describes the widget.

(The label should provide the user with the essence of the what the object does whereas describedby is intended to provide additional information which some users might need. )

Related concepts:

[HTML] label element, and [HTML] table cell headers are de facto describedby values.

labelledby IDREF

Points to element which labels the widget.

The label should provide the user with the essence of the what the object does whereas describedby provides additional information which some users might need.

A related concept is label in [XForms] and [HTML].
hasparent IDREF

Points to parent element for objects that are conceptually nested but not syntactically nested in the code.

For example, a pop up menu may point to it's parent menu item.

baseConcept:Booch:part/whole (in direction from part to whole, DC:isPartOf
haspopup IDREF

This is a special case of owns where activation renders conditional content.

Editorial Note: owns is not yet defined in this specification.

controls

[UAAG] conditional content

tabindex Number The ordinal number of the element on the screen/page. This can be used to assign the tab order to div, span, p, td, th and li tags. The value of tabindex determines the tabindex behavior as follows:
  • Element with no tabindex follows default behavior of the element.
  • Elements with a negative tabindex are omitted from the tabbing order. However, they can be focusable via script and mouse clicks.
  • Element with a zero tabindex are selected by tag order.
  • Element with a positive tabindex are positioned in the tab order based on their tabindex value.

Note: Tabindex has not been added to the basic namespace but only to div, span, p, td, th and li tags in the extended [XHTML] Doctype. Tabindex should not be used with a prefix.

[SVG]: focus
flowto IDREF The ID of the next element in the default page reading order.

[XHTML] 2.0 :nextfocus

[XHTML] 2.0 :prevfocus

controls IDREFS Controls is used to define the elements that are controlled by the current element.

[XML events] object

hyperlink target in [HTML]

[XML events]

politeness
  • polite: background change: This is normal operation and the default behavior for live regions. It is not necessary to respond until user completes their current activity.
  • assertive: This information has a higher priority than normal but does not necessarily interrupt immediately.
  • rude: This information has the highest priority and should typically result in an interrupt to the user. This may disorientate users causing them not to continue in their current task.

Describes the types of updates the user agent and user can expect from an alert or live region of Web content.

It is essential to describe the types of updates the user agent and user can expect from a live region of Web content.

Examples include:

  • A section of updated basketball statistics.
  • A region that updates in response to a users control of a Web page (such as requesting a photograph).
An example of assertive content is a site notifying its users that its connection is going down in 5 minutes.

3.3. XForms managed states

This section is informative.

XForms [XFORMS] is designed based on a model view controller architecture. Data model and styling are separated from the actual form elements. This provides for a much more flexible forms model. The rendering is up to the user agent and styling. If the author knows the type of widget that will be generated they may simply add role information to the element or, depending on the deployment, this information could be provided by the User Agent. The appearance may be suggested as parameters to the form elements such as in the case of a select1 , which may be used to represent a radio button. In these situations it is less important to know what the rendering of the element is as the tag defines the semantics. Note: Invalid is a managed state in XFORMS. However in most other languages (such as HTML] forms) it is not managed.

4. Appendices

4.1 DTD Implementation

This section is normative.

4.1.1 Qualified Names Module

Note that this module defines the parameter entity aaa.attrs.qname;. This entity is intended to be used in the attribute lists of elements in any host language that permits the use of AAA attributes on elements in its own namespace. In this case the Host Language driver should set a parameter entity %aaa.prefixed; to INCLUDE. The default prefix to be used is aaa:.

<!-- ...................................................................... -->
<!-- aaa-qname Module ................................................... -->
<!-- file: aaa-qname.mod

  PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications Namespace//EN"
SYSTEM "http://www.w3.org/2005/07/aaa/aaa-qname.mod">

xmlns:aaa="http://www.w3.org/2005/07/aaa "
...................................................................... -->

<!ENTITY % XHTML.version
    "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications Namespace//EN" >

<!-- 1. Namespace declarations ::::::::::::::::::::::::::::: -->

<!ENTITY % NS.prefixed     "IGNORE" >
<!ENTITY % aaa.prefixed "%NS.prefixed;" >

<!-- Declare the actual namespace of this module -->
<!ENTITY % aaa.xmlns "http://www.w3.org/2005/07/aaa" >

<!ENTITY % aaa.prefix   "aaa" >
<![%aaa.prefixed;[
<!ENTITY % aaa.xmlns.extra.attrib  "" >
]]>

<!ENTITY % aaa.xmlns.extra.attrib
     "" >

<![%aaa.prefixed;[
<!ENTITY % aaa.pfx  "%aaa.prefix;:" >
<!ENTITY % aaa.xmlns.attrib
     "xmlns:%aaa.prefix;  CDATA   #FIXED '%aaa.xmlns;'
      %aaa.xmlns.extra.attrib;"
>
]]>
<!ENTITY % aaa.pfx  "" >
<!ENTITY % aaa.xmlns.attrib
     "xmlns        CDATA           #FIXED '%aaa.xmlns;'
      %aaa.xmlns.extra.attrib;"
>

<![%NS.prefixed;[
<!ENTITY % XHTML.xmlns.extra.attrib
     "%aaa.xmlns.attrib;" >

]]>

<!-- 2. XML Qualified Names for AAA ::::::::::::::::::::::::::::: -->

<!--   This section declares parameter entities used to provide
        namespace-qualified names for all element types.
-->

<!ENTITY % xhtml-datatypes.mod
     PUBLIC "-//W3C//ENTITIES XHTML Datatypes 1.0//EN"
            "http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-datatypes-1.mod" >
%xhtml-datatypes.mod;

<!-- core attributes to add to all elements; -->

<!-- states -->

<!ENTITY % aaa.checked.qname "%aaa.pfx;checked" >
<!ENTITY % aaa.disabled.qname "%aaa.pfx;disabled" >
<!ENTITY % aaa.expanded.qname "%aaa.pfx;expanded" >
<!ENTITY % aaa.invalid.qname "%aaa.pfx;invalid" >
<!ENTITY % aaa.multiselectable.qname "%aaa.pfx;multiselectable" >
<!ENTITY % aaa.readonly.qname "%aaa.pfx;readonly" >
<!ENTITY % aaa.selected.qname "%aaa.pfx;selected" >

<!-- properties -->

<!ENTITY % aaa.activedescendent.qname "%aaa.pfx;activedescendent" >
<!ENTITY % aaa.controls.qname "%aaa.pfx;controls" >
<!ENTITY % aaa.describedby.qname "%aaa.pfx;describedby" >
<!ENTITY % aaa.flowto.qname "%aaa.pfx;flowto" >
<!ENTITY % aaa.hasparent.qname "%aaa.pfx;hasparent" >
<!ENTITY % aaa.haspopup.qname "%aaa.pfx;haspopup" >
<!ENTITY % aaa.labelledby.qname "%aaa.pfx;labelledby" >
<!ENTITY % aaa.politeness.qname "%aaa.pfx;politeness" >
<!ENTITY % aaa.required.qname "%aaa.pfx;required" >

<!ENTITY % aaa.valuemax.qname "%aaa.pfx;valuemax" >
<!ENTITY % aaa.valuemin.qname "%aaa.pfx;valuemin" >
<!ENTITY % aaa.valuenow.qname "%aaa.pfx;valuenow" >

<!-- tabindex -->
<!ENTITY % aaa.tabindex.qname "tabindex" >


<!-- The following defines a PE for use in the attribute sets of elements in
     other namespaces that want to incorporate the XML Role attributes. Note
     that in this case the XML-ROLES.pfx should always be defined. -->

<!ENTITY % aaa.states.qname
     "%aaa.checked.qname;   (true | false)   #IMPLIED
      %aaa.disabled.qname;   (true | false)   #IMPLIED
      %aaa.expanded.qname;   (true | false)   #IMPLIED
      %aaa.invalid.qname;     (true | false)           #IMPLIED
      %aaa.multiselectable.qname;   (true | false)   #IMPLIED
      %aaa.readonly.qname;   (true | false)  #IMPLIED
      %aaa.selected.qname;   (true | false)   #IMPLIED"

>

<!ENTITY % aaa.props.qname
     "%aaa.activedescendent.qname;   IDREF   #IMPLIED
      %aaa.controls.qname;   IDREF   #IMPLIED
      %aaa.describedby.qname;   IDREF   #IMPLIED
      %aaa.flowto.qname;   IDREF   #IMPLIED
      %aaa.hasparent.qname;   IDREF   #IMPLIED
      %aaa.haspopup.qname;   IDREF   #IMPLIED
      %aaa.labelledby.qname;   IDREF  #IMPLIED
      %aaa.politeness.qname;   CDATA  #IMPLIED
      %aaa.required.qname;   (true | false)   #IMPLIED
      %aaa.valuemax.qname;   CDATA  #IMPLIED
      %aaa.valuemin.qname;   CDATA   #IMPLIED
      %aaa.valuenow.qname;   CDATA   #IMPLIED"
>

<!ENTITY % aaa.attrs.qname
     "%aaa.states.qname;
      %aaa.props.qname;"
>

<!ENTITY % aaa.extra.attrs.qname
     "%aaa.tabindex.qname;   %Number.datatype;   #IMPLIED"
>

<!ENTITY % aaa-qname.module "IGNORE" >

<!-- End aaa-qname Module ................................................... -->

4.1.2 ELEMENTS XHTML 1.1 For Accessible Adaptable Applications DTD

This DTD extends XHTML 1.1 and adds the States and Property attributes to all its elements.

The attribute tabindex is added to elements p, div, span, th, td and li

<!-- ELEMENTS  DTD XHTML 1.1 For Accessible Adaptable Applications -->
<!-- File: xhtml11-aaa-base.dtd

 Copyright (c) 2005, Unbounded Access,
 All Rights Reserved. 

 This DTD module is identified by the PUBLIC and SYSTEM identifiers:

 PUBLIC "-//W3C//ELEMENTS DTD XHTML 1.1 For Accessible Adaptable Applications//EN" 
 SYSTEM "http://www.w3.org/2005/07/aaa/xhtml11-aaa-base.dtd"
 xmlns:aaa="http://www.w3.org/2005/07/aaa"

 The DOCTYPE declaration that should be used is as follows;

        <!DOCTYPE html
        PUBLIC "-//W3C//ELEMENTS DTD XHTML 1.1 For Accessible Adaptable Applications//EN"
        "http://www.w3.org/2005/07/aaa/xhtml11-aaa-base.dtd">

...................................................................... -->

<!ENTITY % XHTML.version
    "-//W3C//ELEMENTS DTD XHTML 1.1 For Accessible Adaptable Applications//EN" >

<!ENTITY % aaa-qname.mod
    PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications Namespace//EN"
    "http://www.w3.org/2005/07/aaa/aaa-qname.mod" >

%aaa-qname.mod; 

<!-- add AAA attribute set to all XHTML elements -->

<!ENTITY % Common.extra.attrib
    "%aaa.attrs.qname;"
>

<!ENTITY % xhtml11.mod
    PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" 
>

%xhtml11.mod;

<!-- add tabindex to text containers -->

<!ATTLIST %div.qname;
    %aaa.extra.attrs.qname;
>

<!ATTLIST %span.qname;
    %aaa.extra.attrs.qname;
>

<!ATTLIST %p.qname;
    %aaa.extra.attrs.qname;
>

<!ATTLIST %th.qname;
    %aaa.extra.attrs.qname;
>

<!ATTLIST %td.qname;
    %aaa.extra.attrs.qname;
>

<!ATTLIST %li.qname;
    %aaa.extra.attrs.qname;
>

<!ENTITY % aaa.prefixed "INCLUDE">

<!-- End xhtml11-aaa-base.dtd  -->

4.1.3 XHTML 1.1 For Accessible Adaptable Applications DTD

This DTD requires the use of the "aaa" prefix.

<!-- DTD XHTML 1.1 For Accessible Adaptable Applications -->

<!-- File: xhtml11-aaa.dtd

 Copyright (c) 2005, Unbounded Access,
 All Rights Reserved. 

 This DTD module is identified by the PUBLIC and SYSTEM identifiers:

 PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications//EN"
 SYSTEM "http://www.w3.org/2005/07/aaa/xhtml11-aaa.dtd"
 xmlns:aaa="http://www.w3.org/2005/07/aaa"

 The DOCTYPE declaration that should be used is as follows;

        <!DOCTYPE html
        PUBLIC "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications//EN"
        "http://www.w3.org/2005/07/aaa/xhtml11-aaa.dtd">


...................................................................... -->

<!ENTITY % XHTML.version
    "-//W3C//DTD XHTML 1.1 For Accessible Adaptable Applications//EN" 
>

<!-- Enable prefixing -->

<!ENTITY % aaa.prefixed "INCLUDE">

<!ENTITY % xhtml11-aaa.mod
    PUBLIC "-//W3C//ELEMENTS DTD XHTML 1.1 For Accessible Adaptable Applications//EN"
    "http://www.w3.org/2005/07/aaa/xhtml11-aaa-base.dtd" >

%xhtml11-aaa.mod;

<!-- End xhtml11-aaa.dtd -->

4.2. Managed States

This section is informative.

Managed states are state attributes managed and controlled by the user agent. Often these states have corresponding CSS pseudo classes to reflect necessary style changes. The states in this specification are typically controlled by the author and are not managed (unmanaged) states.

Accessibility API's typically map to both managed and unmanaged states. An example of a managed state would be element focus and hover.

Note: Invalid is a managed state in [XForms]. However in most other languages (such as [HTML] forms) it is not managed.

4.3. Mapping States and Properties to Accessibility API's

This section is informative.

Mapped properties

States and Properties module User Agent mapping via MSAA User Agent mapping via ATK
disabled MSAA:STATE_SYSTEM_UNAVAILABLE ATK:ATK_STATE_DISABLED
checked . MSAA: STATE_SYSTEM_CHECKED ATK: ATK_STATE_CHECKED
expanded If the hidden property is set to true : MSAA:STATE_SYSTEM_COLLAPSED

If the hidden property is set to false: MSAA:STATE_SYSTEM_EXPANDE

If the hidden property is set to true : ATK: ATK_STATE_EXPANDABLE

If the hidden property is set to false: ATK:ATK_STATE_EXPANDED

haspopup This state should be mapped to true on Windows systems when an event handler has a role of pop-up menu.

MSAA: haspopup

ATK: not necessary in ATK because it has multiple actions with description
invalid MSAA: no mapping

In the case of MSAA the user agent should provide a specialized API to return its value. Alternatively, if the user agent provides a specialized API for [XForms] it may provide invalid(), outOfRange(), or empty() (returns true when required but not available). This information is computed from the instance data associated with the form element.

ATK:ATK_STATE_INVALID
multiselectable MSAA:STATE_SYSTEM_EXTSELECTABLE ATK:ATK_STATE_MULTISELECTABLE
pressed MSAA: STATE_SYSTEM_PRESSED is true when checked. ATK: ATK_STATE_PRESSED is true when checked
readonly MSAA:STATE_SYSTEM_READONLY ATK:ATK_STATE_READONLY=inverse of readonly
required MSAA: There is no mapping.

User agent must make available through the [DOM] or a specialized API.

Note: While optional could be combined with required this is kept to be consistent with CSS3 pseudo classes and [XForms].

ATK: There is no mapping.
selected MSAA:STATE_SYSTEM_SELECTED ATK:ATK_STATE_SELECTED
unknown MSAA:mixed ATK:indeterminate
value MSAA: should return the value for getValue(). ATK: should return this as part of the AccessibleValue structure.
(As yet) unmapped properties are:

4.4. References

[AAC]
Apple Accessibility for Cocoa™. Available at: http://developer.apple.com/documentation/Cocoa/Conceptual/Accessibility/index.html.
[ARIA-ROLE]
Roles for Accessible Rich Internet Applications (WAI-ARIA Roles), L. Seeman, Editor. World Wide Web Consortium, 26 September 2006. This version of WAI-ARIA Roles is available at http://www.w3.org/TR/2006/WD-aria-role-20060926/. The latest version of WAI-ARIA Roles is available at http://www.w3.org/TR/aria-role/.
[ARIA-ROADMAP]
Roadmap for Accessible Rich Internet Applications (WAI-ARIA Roadmap), R. Schwerdtfeger, Editor. World Wide Web Consortium, 26 September 2006. This version of WAI-ARIA Roadmap is available at http://www.w3.org/TR/2006/WD-aria-roadmap-20060926/. The latest version of WAI-ARIA Roadmap is available at http://www.w3.org/TR/aria-roadmap/.
[CSS]
Cascading Style Sheets, level 2 (CSS2) Specification, I. Jacobs, B. Bos, H. Lie, C. Lilley, Editors, W3C Recommendation, 12 May 1998, http://www.w3.org/TR/1998/REC-CSS2-19980512/. Latest version available at http://www.w3.org/TR/REC-CSS2/.
[DOM]
Document Object Model (DOM) Level 2 Core Specification, L. Wood, G. Nicol, A. Le Hors, J. Robie, S. Byrne, P. Le Hégaret, M. Champion, Editors, W3C Recommendation, 13 November 2000, http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/. Latest version available at http://www.w3.org/TR/DOM-Level-2-Core/.
 
[GAP]
Gnome Accessibility Project (GAP) State and StateSets. Available at: http://developer.gnome.org/projects/gap/tech-docs/at-spi-docs/at-spi-cspi-state-and-statesets.html.
[JAPI]
Java Accessibility API (JAPI). Available at: http://java.sun.com/products/jfc/accessibility/index.jsp.
[MSAA]
Microsoft Active Accessibility (MSAA). Available at: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msaa/msaastart_9w2t.asp.
[RFC2119]
"Key words for use in RFCs to indicate requirement levels", RFC 2119, S. Bradner, March 1997. Available at: http://www.rfc-editor.org/rfc/rfc2119.txt.
[SMIL]
Synchronized Multimedia Integration Language (SMIL) 1.0 Specification, P. Hoschka, Editor, W3C Recommendation, 15 June 1998, http://www.w3.org/TR/1998/REC-smil-19980615/. Latest version available at http://www.w3.org/TR/REC-smil/.
[SVG]
Scalable Vector Graphics (SVG) 1.1 Specification, D. Jackson, J. Ferraiolo, 藤沢, Editors, W3C Recommendation, 14 January 2003, http://www.w3.org/TR/2003/REC-SVG11-20030114/. Latest version available at http://www.w3.org/TR/SVG11/.
[UAAG]
User Agent Accessibility Guidelines 1.0, I. Jacobs, J. Gunderson, E. Hansen, Editors, W3C Recommendation, 17 December 2002, http://www.w3.org/TR/2002/REC-UAAG10-20021217/. Latest version available at http://www.w3.org/TR/UAAG10/.
[XFORMS]
XForms 1.0 (Second Edition), R. Merrick, M. Dubinko, T. V. Raman, J. Boyer, D. Landwehr, L. L. Klotz, Editors, W3C Recommendation, 14 March 2006, http://www.w3.org/TR/2006/REC-xforms-20060314/. Latest version available at http://www.w3.org/TR/xforms/.
[XHTML]
XHTML™ 1.0 The Extensible HyperText Markup Language (Second Edition), S. Pemberton, Editor, W3C Recommendation, 1 August 2002, http://www.w3.org/TR/2002/REC-xhtml1-20020801/. Latest version available at http://www.w3.org/TR/xhtml1/.
[XHTMLMOD]
XHTML™ Modularization 1.1 , M. Altheim, F. Boumphrey, S. McCarron, S. Schnitzenbaumer, S. Dooley, T. Wugofski, Editors, W3C Working Draft (work in progress), 5 July 2006, http://www.w3.org/TR/2006/WD-xhtml-modularization-20060705/. Latest version available at http://www.w3.org/TR/xhtml-modularization/.
[XML]
Extensible Markup Language (XML) 1.0 (Fourth Edition) , T. Bray, J. Paoli, E. Maler, C. M. Sperberg-McQueen, F. Yergeau, Editors, W3C Recommendation, 16 August 2006, http://www.w3.org/TR/2006/REC-xml-20060816/. Latest version available at http://www.w3.org/TR/xml/.
[XML-EVENTS]
XML Events, S. McCarron, S. Pemberton, T. V. Raman, Editors, W3C Recommendation, 14 October 2003, http://www.w3.org/TR/2003/REC-xml-events-20031014/. Latest version available at http://www.w3.org/TR/xml-events/.
[XML-NAMES]
Namespaces in XML 1.0 (Second Edition) , D. Hollander, A. Layman, R. Tobin, T. Bray, Editors, W3C Recommendation, 16 August 2006, http://www.w3.org/TR/2006/REC-xml-names-20060816/. Latest version available at http://www.w3.org/TR/xml-names/.
 

4.5. Acknowledgments (Non-Normative)

This section is informative.

The following contributed to the development of this document.

4.5.1 Participants active in the PFWG at the time of publication

4.5.2 Other previously active PFWG participants and other contributors to States and Properties Module for Accessible Rich Internet Applications

Special thanks to Aaron Leventhal for effort and insight as he implemented a working prototype of accessibility API bindings.

Christian Cohrs, Becky Gibson, Ari Gruen, Barbara Hartel, Jael Kurz, Vitaly Sourikov.

4.5.3 Enabling funders

This publication has been funded in part with Federal funds from the U.S. Department of Education under contract number ED05CO0039. 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.