Cross-root Aria Delegation

Unofficial Proposal Draft,

This version:
https://leobalter.github.io/cross-root-aria-delegation/
Issue Tracking:
GitHub
Editor:
Leo Balter (Salesforce)

Abstract

A shadowRoot delegation API to allow for ARIA attributes and properties set on a Web Component to be forwarded to elements inside of its shadowroot.

1. Introduction

Content on the web be accessible is critically important. Maintaining accessibility within web components is challenging as the shadow root encapsulation prevents references between elements in different roots. These references are fundamental to enable assistive technologies within web applications.

Today, a web application can be composed by many web components that are connected through different relationships. ARIA is the appropriate standard to describe those relationships. Unfortunately, it’s not possible to natively connect ARIA attributes from elements belonging to different DOM trees belonging to the main page and one or many web components. Because of that, some complex and not fully successful workarounds need to be applied.

1.1. This proposal

This proposal introduces a delegation API to allow for ARIA attributes and properties set on a Web Component to be forwarded to elements inside of its shadowroot.

This mechanism will allow users to apply standard best practices for ARIA and resolve a large margin of accessibility use cases for applications of native Web components and native Shadow DOM. This API is most suited for one-to-one delegation, but should also work for one-to-many scenarios. There is no mechanism for directly relating two elements in different shadowroots together, but this will still be possible manually with the element reflection API.

The proposed extension adds a new `delegates*` (e.g.: `delegatesAriaLabel`, `delegatesAriaDescribedBy`) options to the `.attachShadow` method similarly to the `delegatesFocus`, while introducing a new content attribute `auto*` (e.g.: `autoarialabel`, `autoariadescribedby`) to be used in the shadowroot inner elements. This has an advantage that it works with Declarative Shadow DOM as well, and it is consistent with `delegatesFocus`. Even though, it requires another set of html attributes in the declarative shadow root template. The declarative form works better with common developer paradigm where you may not necessarily have access to a DOM node right where you’re creating / declaring it.

The attributes names such as `shadowrootdelegates*` are very long and some consideration for shorter names by removing the `shadowroot` prefix can be discussed as long the discussion is sync’ed with the stakeholders of the respective Declarative Shadow DOM proposal.

2. IDL Interface

Conforming user agents MUST implement the following IDL interface.

2.1. Interface Mixin AutoARIAMixin

interface mixin AutoARIAMixin {
  attribute DOMString? autoAriaAtomic;
  attribute DOMString? autoAriaAutoComplete;
  attribute DOMString? autoAriaBusy;
  attribute DOMString? autoAriaChecked;
  attribute DOMString? autoAriaColCount;
  attribute DOMString? autoAriaColIndex;
  attribute DOMString? autoAriaColIndexText;
  attribute DOMString? autoAriaColSpan;
  attribute DOMString? autoAriaCurrent;
  attribute DOMString? autoAriaDescription;
  attribute DOMString? autoAriaDisabled;
  attribute DOMString? autoAriaExpanded;
  attribute DOMString? autoAriaHasPopup;
  attribute DOMString? autoAriaHidden;
  attribute DOMString? autoAriaInvalid;
  attribute DOMString? autoAriaKeyShortcuts;
  attribute DOMString? autoAriaLabel;
  attribute DOMString? autoAriaLevel;
  attribute DOMString? autoAriaLive;
  attribute DOMString? autoAriaModal;
  attribute DOMString? autoAriaMultiLine;
  attribute DOMString? autoAriaMultiSelectable;
  attribute DOMString? autoAriaOrientation;
  attribute DOMString? autoAriaPlaceholder;
  attribute DOMString? autoAriaPosInSet;
  attribute DOMString? autoAriaPressed;
  attribute DOMString? autoAriaReadOnly;
  attribute DOMString? autoAriaRequired;
  attribute DOMString? autoAriaRoleDescription;
  attribute DOMString? autoAriaRowCount;
  attribute DOMString? autoAriaRowIndex;
  attribute DOMString? autoAriaRowIndexText;
  attribute DOMString? autoAriaRowSpan;
  attribute DOMString? autoAriaSelected;
  attribute DOMString? autoAriaSetSize;
  attribute DOMString? autoAriaSort;
  attribute DOMString? autoAriaValueMax;
  attribute DOMString? autoAriaValueMin;
  attribute DOMString? autoAriaValueNow;
  attribute DOMString? autoAriaValueText;
};

Interfaces that include `AutoARIAMixin` must provide the following algorithms:

For every IDL attribute idlAttribute defined in `AutoARIAMixin`, on getting, it must perform the following steps:

  1. Let contentAttribute be the AutoARIA content attribute determined by looking up idlAttribute in the AutoARIA Attribute Correspondence table.

  2. Return the result of running the `AutoARIAMixin` getter steps, given this, idlAttribute, and contentAttribute.

Similarly, on setting, it must perform the following steps:

  1. Let contentAttribute be the AutoARIA content attribute determined by looking up idlAttribute in the AutoARIA Attribute Correspondence table.

  2. Run the `AutoARIAMixin` setter steps, given this, idlAttribute, contentAttribute, and the given value.

2.2. AutoARIA Attribute Correspondence

The following table provides a correspondence between IDL attribute names and content attribute names, for use by `AutoARIAMixin`.

IDL Attribute Reflected AutoARIA Content Attribute
autoAriaAtomic autoariaatomic
autoAriaAutoComplete autoariaautocomplete
autoAriaBusy autoariabusy
autoAriaChecked autoariachecked
autoAriaColCount autoariacolcount
autoAriaColIndex autoariacolindex
autoAriaColIndexText autoariacolindextext
autoAriaColSpan autoariacolspan
autoAriaCurrent autoariacurrent
autoAriaDescription autoariadescription
autoAriaDisabled autoariadisabled
autoAriaExpanded autoariaexpanded
autoAriaHasPopup autoariahaspopup
autoAriaHidden autoariahidden
autoAriaInvalid autoariainvalid
autoAriaKeyShortcuts autoariakeyshortcuts
autoAriaLabel autoarialabel
autoAriaLevel autoarialevel
autoAriaLive autoarialive
autoAriaModal autoariamodal
autoAriaMultiLine autoariamultiline
autoAriaMultiSelectable autoariamultiselectable
autoAriaOrientation autoariaorientation
autoAriaPlaceholder autoariaplaceholder
autoAriaPosInSet autoariaposinset
autoAriaPressed autoariapressed
autoAriaReadOnly autoariareadonly
autoAriaRequired autoariarequired
autoAriaRoleDescription autoariaroledescription
autoAriaRowCount autoariarowcount
autoAriaRowIndex autoariarowindex
autoAriaRowIndexText autoariarowindextext
autoAriaRowSpan autoariarowspan
autoAriaSelected autoariaselected
autoAriaSetSize autoariasetsize
autoAriaSort autoariasort
autoAriaValueMax autoariavaluemax
autoAriaValueMin autoariavaluemin
autoAriaValueNow autoariavaluenow
autoAriaValueText autoariavaluetext

2.3. `AutoARIAMixin` Mixed in to `Element`

User agents MUST include `AutoARIAMixin` on `Element`:

Element includes AutoARIAMixin;

For `Element`:

Note: In practice, this means that, e.g., the `autoAriaAtomic` IDL on `Element` reflects the `autoariaatomic` content attribute;


2.4. Interface Mixin ShadowRootMixin

interface mixin ShadowRootMixin {
  attribute DOMString? delegatesAriaAtomic;
  attribute DOMString? delegatesAriaAutoComplete;
  attribute DOMString? delegatesAriaBusy;
  attribute DOMString? delegatesAriaChecked;
  attribute DOMString? delegatesAriaColCount;
  attribute DOMString? delegatesAriaColIndex;
  attribute DOMString? delegatesAriaColIndexText;
  attribute DOMString? delegatesAriaColSpan;
  attribute DOMString? delegatesAriaCurrent;
  attribute DOMString? delegatesAriaDescription;
  attribute DOMString? delegatesAriaDisabled;
  attribute DOMString? delegatesAriaExpanded;
  attribute DOMString? delegatesAriaHasPopup;
  attribute DOMString? delegatesAriaHidden;
  attribute DOMString? delegatesAriaInvalid;
  attribute DOMString? delegatesAriaKeyShortcuts;
  attribute DOMString? delegatesAriaLabel;
  attribute DOMString? delegatesAriaLevel;
  attribute DOMString? delegatesAriaLive;
  attribute DOMString? delegatesAriaModal;
  attribute DOMString? delegatesAriaMultiLine;
  attribute DOMString? delegatesAriaMultiSelectable;
  attribute DOMString? delegatesAriaOrientation;
  attribute DOMString? delegatesAriaPlaceholder;
  attribute DOMString? delegatesAriaPosInSet;
  attribute DOMString? delegatesAriaPressed;
  attribute DOMString? delegatesAriaReadOnly;
  attribute DOMString? delegatesAriaRequired;
  attribute DOMString? delegatesAriaRoleDescription;
  attribute DOMString? delegatesAriaRowCount;
  attribute DOMString? delegatesAriaRowIndex;
  attribute DOMString? delegatesAriaRowIndexText;
  attribute DOMString? delegatesAriaRowSpan;
  attribute DOMString? delegatesAriaSelected;
  attribute DOMString? delegatesAriaSetSize;
  attribute DOMString? delegatesAriaSort;
  attribute DOMString? delegatesAriaValueMax;
  attribute DOMString? delegatesAriaValueMin;
  attribute DOMString? delegatesAriaValueNow;
  attribute DOMString? delegatesAriaValueText;
};

Interfaces that include `ShadowRootMixin` must provide the following algorithms:

For every IDL attribute idlAttribute defined in `ShadowRootMixin`, on getting, it must perform the following steps:

  1. Let contentAttribute be the AutoARIA content attribute determined by looking up idlAttribute in the AutoARIA Attribute Correspondence table.

  2. Return the result of running the `ShadowRootMixin` getter steps, given this, idlAttribute, and contentAttribute.

Similarly, on setting, it must perform the following steps:

  1. Let contentAttribute be the AutoARIA content attribute determined by looking up idlAttribute in the AutoARIA Attribute Correspondence table.

  2. Run the `ShadowRootMixin` setter steps, given this, idlAttribute, contentAttribute, and the given value.

2.5. ShadowRoot Attribute Correspondence

The following table provides a correspondence between IDL attribute names and content attribute names, for use by `ShadowRootMixin`.

IDL Attribute Reflected ShadowRoot Content Attribute
delegatesAriaAtomic delegatesariaatomic
delegatesAriaAutoComplete delegatesariaautocomplete
delegatesAriaBusy delegatesariabusy
delegatesAriaChecked delegatesariachecked
delegatesAriaColCount delegatesariacolcount
delegatesAriaColIndex delegatesariacolindex
delegatesAriaColIndexText delegatesariacolindextext
delegatesAriaColSpan delegatesariacolspan
delegatesAriaCurrent delegatesariacurrent
delegatesAriaDescription delegatesariadescription
delegatesAriaDisabled delegatesariadisabled
delegatesAriaExpanded delegatesariaexpanded
delegatesAriaHasPopup delegatesariahaspopup
delegatesAriaHidden delegatesariahidden
delegatesAriaInvalid delegatesariainvalid
delegatesAriaKeyShortcuts delegatesariakeyshortcuts
delegatesAriaLabel delegatesarialabel
delegatesAriaLevel delegatesarialevel
delegatesAriaLive delegatesarialive
delegatesAriaModal delegatesariamodal
delegatesAriaMultiLine delegatesariamultiline
delegatesAriaMultiSelectable delegatesariamultiselectable
delegatesAriaOrientation delegatesariaorientation
delegatesAriaPlaceholder delegatesariaplaceholder
delegatesAriaPosInSet delegatesariaposinset
delegatesAriaPressed delegatesariapressed
delegatesAriaReadOnly delegatesariareadonly
delegatesAriaRequired delegatesariarequired
delegatesAriaRoleDescription delegatesariaroledescription
delegatesAriaRowCount delegatesariarowcount
delegatesAriaRowIndex delegatesariarowindex
delegatesAriaRowIndexText delegatesariarowindextext
delegatesAriaRowSpan delegatesariarowspan
delegatesAriaSelected delegatesariaselected
delegatesAriaSetSize delegatesariasetsize
delegatesAriaSort delegatesariasort
delegatesAriaValueMax delegatesariavaluemax
delegatesAriaValueMin delegatesariavaluemin
delegatesAriaValueNow delegatesariavaluenow
delegatesAriaValueText delegatesariavaluetext

2.6. `ShadowRootMixin` Mixed in to `ShadowRoot`

User agents MUST include `ShadowRootMixin` on `ShadowRoot`:

ShadowRoot includes ShadowRootMixin;

For `ShadowRoot`:

Note: In practice, this means that, e.g., the `delegatesAriaAtomic` IDL on `ShadowRoot` reflects the `delegatesariaatomic` content attribute; etc

2.7. ShadowRootExtInit

[Exposed=Window]
dictionary ShadowRootExtInit: ShadowRootInit {
  boolean delegatesAriaDescribedBy = false;
  boolean delegatesAriaAtomic = false;
  boolean delegatesAriaAutoComplete = false;
  boolean delegatesAriaBusy = false;
  boolean delegatesAriaChecked = false;
  boolean delegatesAriaColCount = false;
  boolean delegatesAriaColIndex = false;
  boolean delegatesAriaColIndexText = false;
  boolean delegatesAriaColSpan = false;
  boolean delegatesAriaCurrent = false;
  boolean delegatesAriaDescription = false;
  boolean delegatesAriaDisabled = false;
  boolean delegatesAriaExpanded = false;
  boolean delegatesAriaHasPopup = false;
  boolean delegatesAriaHidden = false;
  boolean delegatesAriaInvalid = false;
  boolean delegatesAriaKeyShortcuts = false;
  boolean delegatesAriaLabel = false;
  boolean delegatesAriaLevel = false;
  boolean delegatesAriaLive = false;
  boolean delegatesAriaModal = false;
  boolean delegatesAriaMultiLine = false;
  boolean delegatesAriaMultiSelectable = false;
  boolean delegatesAriaOrientation = false;
  boolean delegatesAriaPlaceholder = false;
  boolean delegatesAriaPosInSet = false;
  boolean delegatesAriaPressed = false;
  boolean delegatesAriaReadOnly = false;
  boolean delegatesAriaRequired = false;
  boolean delegatesAriaRoleDescription = false;
  boolean delegatesAriaRowCount = false;
  boolean delegatesAriaRowIndex = false;
  boolean delegatesAriaRowIndexText = false;
  boolean delegatesAriaRowSpan = false;
  boolean delegatesAriaSelected = false;
  boolean delegatesAriaSetSize = false;
  boolean delegatesAriaSort = false;
  boolean delegatesAriaValueMax = false;
  boolean delegatesAriaValueMin = false;
  boolean delegatesAriaValueNow = false;
  boolean delegatesAriaValueText = false;
};

2.8. attachShadow Signature

User agents MUST update the attachShadow method signature in the Element with the ShadowRootExtInit option, as the following:

ShadowRoot attachShadow(ShadowRootExtInit init);

2.9. attachShadow Extension

The `attachShadow` method steps have their last 2 steps with:

  1. Set each attribute in the § 2.9.1 Delegates Aria Attribute Correspondence {#delegates-correspondence} table into shadow to the corresponding init[delegates attribute].

  2. Set this’s shadow root to shadow.

  3. Return shadow.

2.9.1. Delegates Aria Attribute Correspondence {#delegates-correspondence}

Attribute Delegates
delegates ariaDescribedBy delegatesAriaDescribedBy
delegates ariaAtomic delegatesAriaAtomic
delegates ariaAutoComplete delegatesAriaAutoComplete
delegates ariaBusy delegatesAriaBusy
delegates ariaChecked delegatesAriaChecked
delegates ariaColCount delegatesAriaColCount
delegates ariaColIndex delegatesAriaColIndex
delegates ariaColIndexText delegatesAriaColIndexText
delegates ariaColSpan delegatesAriaColSpan
delegates ariaCurrent delegatesAriaCurrent
delegates ariaDescription delegatesAriaDescription
delegates ariaDisabled delegatesAriaDisabled
delegates ariaExpanded delegatesAriaExpanded
delegates ariaHasPopup delegatesAriaHasPopup
delegates ariaHidden delegatesAriaHidden
delegates ariaInvalid delegatesAriaInvalid
delegates ariaKeyShortcuts delegatesAriaKeyShortcuts
delegates ariaLabel delegatesAriaLabel
delegates ariaLevel delegatesAriaLevel
delegates ariaLive delegatesAriaLive
delegates ariaModal delegatesAriaModal
delegates ariaMultiLine delegatesAriaMultiLine
delegates ariaMultiSelectable delegatesAriaMultiSelectable
delegates ariaOrientation delegatesAriaOrientation
delegates ariaPlaceholder delegatesAriaPlaceholder
delegates ariaPosInSet delegatesAriaPosInSet
delegates ariaPressed delegatesAriaPressed
delegates ariaReadOnly delegatesAriaReadOnly
delegates ariaRequired delegatesAriaRequired
delegates ariaRoleDescription delegatesAriaRoleDescription
delegates ariaRowCount delegatesAriaRowCount
delegates ariaRowIndex delegatesAriaRowIndex
delegates ariaRowIndexText delegatesAriaRowIndexText
delegates ariaRowSpan delegatesAriaRowSpan
delegates ariaSelected delegatesAriaSelected
delegates ariaSetSize delegatesAriaSetSize
delegates ariaSort delegatesAriaSort
delegates ariaValueMax delegatesAriaValueMax
delegates ariaValueMin delegatesAriaValueMin
delegates ariaValueNow delegatesAriaValueNow
delegates ariaValueText delegatesAriaValueText

3. Appendix

3.1. Original Threads

Conformance

Conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in the normative parts of this document are to be interpreted as described in RFC 2119. However, for readability, these words do not appear in all uppercase letters in this specification.

All of the text of this specification is normative except sections explicitly marked as non-normative, examples, and notes. [RFC2119]

Examples in this specification are introduced with the words “for example” or are set apart from the normative text with class="example", like this:

This is an example of an informative example.

Informative notes begin with the word “Note” and are set apart from the normative text with class="note", like this:

Note, this is an informative note.

Index

Terms defined by this specification

Terms defined by reference

References

Normative References

[DOM]
Anne van Kesteren. DOM Standard. Living Standard. URL: https://dom.spec.whatwg.org/
[RFC2119]
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://tools.ietf.org/html/rfc2119
[WebIDL]
Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/

IDL Index

interface mixin AutoARIAMixin {
  attribute DOMString? autoAriaAtomic;
  attribute DOMString? autoAriaAutoComplete;
  attribute DOMString? autoAriaBusy;
  attribute DOMString? autoAriaChecked;
  attribute DOMString? autoAriaColCount;
  attribute DOMString? autoAriaColIndex;
  attribute DOMString? autoAriaColIndexText;
  attribute DOMString? autoAriaColSpan;
  attribute DOMString? autoAriaCurrent;
  attribute DOMString? autoAriaDescription;
  attribute DOMString? autoAriaDisabled;
  attribute DOMString? autoAriaExpanded;
  attribute DOMString? autoAriaHasPopup;
  attribute DOMString? autoAriaHidden;
  attribute DOMString? autoAriaInvalid;
  attribute DOMString? autoAriaKeyShortcuts;
  attribute DOMString? autoAriaLabel;
  attribute DOMString? autoAriaLevel;
  attribute DOMString? autoAriaLive;
  attribute DOMString? autoAriaModal;
  attribute DOMString? autoAriaMultiLine;
  attribute DOMString? autoAriaMultiSelectable;
  attribute DOMString? autoAriaOrientation;
  attribute DOMString? autoAriaPlaceholder;
  attribute DOMString? autoAriaPosInSet;
  attribute DOMString? autoAriaPressed;
  attribute DOMString? autoAriaReadOnly;
  attribute DOMString? autoAriaRequired;
  attribute DOMString? autoAriaRoleDescription;
  attribute DOMString? autoAriaRowCount;
  attribute DOMString? autoAriaRowIndex;
  attribute DOMString? autoAriaRowIndexText;
  attribute DOMString? autoAriaRowSpan;
  attribute DOMString? autoAriaSelected;
  attribute DOMString? autoAriaSetSize;
  attribute DOMString? autoAriaSort;
  attribute DOMString? autoAriaValueMax;
  attribute DOMString? autoAriaValueMin;
  attribute DOMString? autoAriaValueNow;
  attribute DOMString? autoAriaValueText;
};

Element includes AutoARIAMixin;

interface mixin ShadowRootMixin {
  attribute DOMString? delegatesAriaAtomic;
  attribute DOMString? delegatesAriaAutoComplete;
  attribute DOMString? delegatesAriaBusy;
  attribute DOMString? delegatesAriaChecked;
  attribute DOMString? delegatesAriaColCount;
  attribute DOMString? delegatesAriaColIndex;
  attribute DOMString? delegatesAriaColIndexText;
  attribute DOMString? delegatesAriaColSpan;
  attribute DOMString? delegatesAriaCurrent;
  attribute DOMString? delegatesAriaDescription;
  attribute DOMString? delegatesAriaDisabled;
  attribute DOMString? delegatesAriaExpanded;
  attribute DOMString? delegatesAriaHasPopup;
  attribute DOMString? delegatesAriaHidden;
  attribute DOMString? delegatesAriaInvalid;
  attribute DOMString? delegatesAriaKeyShortcuts;
  attribute DOMString? delegatesAriaLabel;
  attribute DOMString? delegatesAriaLevel;
  attribute DOMString? delegatesAriaLive;
  attribute DOMString? delegatesAriaModal;
  attribute DOMString? delegatesAriaMultiLine;
  attribute DOMString? delegatesAriaMultiSelectable;
  attribute DOMString? delegatesAriaOrientation;
  attribute DOMString? delegatesAriaPlaceholder;
  attribute DOMString? delegatesAriaPosInSet;
  attribute DOMString? delegatesAriaPressed;
  attribute DOMString? delegatesAriaReadOnly;
  attribute DOMString? delegatesAriaRequired;
  attribute DOMString? delegatesAriaRoleDescription;
  attribute DOMString? delegatesAriaRowCount;
  attribute DOMString? delegatesAriaRowIndex;
  attribute DOMString? delegatesAriaRowIndexText;
  attribute DOMString? delegatesAriaRowSpan;
  attribute DOMString? delegatesAriaSelected;
  attribute DOMString? delegatesAriaSetSize;
  attribute DOMString? delegatesAriaSort;
  attribute DOMString? delegatesAriaValueMax;
  attribute DOMString? delegatesAriaValueMin;
  attribute DOMString? delegatesAriaValueNow;
  attribute DOMString? delegatesAriaValueText;
};

ShadowRoot includes ShadowRootMixin;

[Exposed=Window]
dictionary ShadowRootExtInit: ShadowRootInit {
  boolean delegatesAriaDescribedBy = false;
  boolean delegatesAriaAtomic = false;
  boolean delegatesAriaAutoComplete = false;
  boolean delegatesAriaBusy = false;
  boolean delegatesAriaChecked = false;
  boolean delegatesAriaColCount = false;
  boolean delegatesAriaColIndex = false;
  boolean delegatesAriaColIndexText = false;
  boolean delegatesAriaColSpan = false;
  boolean delegatesAriaCurrent = false;
  boolean delegatesAriaDescription = false;
  boolean delegatesAriaDisabled = false;
  boolean delegatesAriaExpanded = false;
  boolean delegatesAriaHasPopup = false;
  boolean delegatesAriaHidden = false;
  boolean delegatesAriaInvalid = false;
  boolean delegatesAriaKeyShortcuts = false;
  boolean delegatesAriaLabel = false;
  boolean delegatesAriaLevel = false;
  boolean delegatesAriaLive = false;
  boolean delegatesAriaModal = false;
  boolean delegatesAriaMultiLine = false;
  boolean delegatesAriaMultiSelectable = false;
  boolean delegatesAriaOrientation = false;
  boolean delegatesAriaPlaceholder = false;
  boolean delegatesAriaPosInSet = false;
  boolean delegatesAriaPressed = false;
  boolean delegatesAriaReadOnly = false;
  boolean delegatesAriaRequired = false;
  boolean delegatesAriaRoleDescription = false;
  boolean delegatesAriaRowCount = false;
  boolean delegatesAriaRowIndex = false;
  boolean delegatesAriaRowIndexText = false;
  boolean delegatesAriaRowSpan = false;
  boolean delegatesAriaSelected = false;
  boolean delegatesAriaSetSize = false;
  boolean delegatesAriaSort = false;
  boolean delegatesAriaValueMax = false;
  boolean delegatesAriaValueMin = false;
  boolean delegatesAriaValueNow = false;
  boolean delegatesAriaValueText = false;
};