Skip to content

Commit

Permalink
add [CEReactions] to IDL. (#1766)
Browse files Browse the repository at this point in the history
* add [CEReactions] to IDL.
Co-authored-by: James Nurthen <jnurthen@users.noreply.github.com>
  • Loading branch information
cookiecrook authored and jnurthen committed Aug 31, 2022
1 parent 2adf814 commit 2cd15a0
Showing 1 changed file with 53 additions and 53 deletions.
106 changes: 53 additions & 53 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@

preProcess: [ linkCrossReferences ],
postProcess: [ ariaAttributeReferences ],
xref: ["dom", "accname", "core-aam-1.2", "infra"],
xref: ["dom", "accname", "core-aam-1.2", "infra", "HTML"],
definitionMap: []
};
</script>
Expand Down Expand Up @@ -9668,9 +9668,9 @@ <h4>Example Attribute Usage</h4>
button.ariaPressed = "foo";
button.ariaPressed; // "undefined" (Note: button is no longer a toggle button.)</pre>

</aside>
</aside>
</section>
</section>
</section>
<section data-cite="HTML">
<h2>Translatable Attributes</h2>
<p>The HTML specification states that other specifications can define <a data-cite="html/dom.html#translatable-attributes">translatable attributes</a>. The language and directionality of each attribute value is the same as the <a data-cite="html/dom.html#language">language</a> and <a data-cite="html/dom.html#the-directionality">directionality</a> of the element.</p>
Expand Down Expand Up @@ -12755,56 +12755,56 @@ <h2>IDL Interface</h2>
<h2>Interface Mixin <dfn>ARIAMixin</dfn></h2>
<pre class="idl">
interface mixin ARIAMixin {
attribute DOMString? role;
attribute Element? ariaActiveDescendantElement;
attribute DOMString? ariaAtomic;
attribute DOMString? ariaAutoComplete;
attribute DOMString? ariaBusy;
attribute DOMString? ariaChecked;
attribute DOMString? ariaColCount;
attribute DOMString? ariaColIndex;
<!-- attribute DOMString ariaColIndexText; // Not yet merged into stable. Use this version when merge -->
attribute DOMString? ariaColSpan;
attribute FrozenArray&lt;Element&gt;? ariaControlsElements;
attribute DOMString? ariaCurrent;
attribute FrozenArray&lt;Element&gt;? ariaDescribedByElements;
attribute DOMString? ariaDescription;
attribute FrozenArray&lt;Element&gt;? ariaDetailsElements;
attribute DOMString? ariaDisabled;
attribute Element? ariaErrorMessageElement;
attribute DOMString? ariaExpanded;
attribute FrozenArray&lt;Element&gt;? ariaFlowToElements;
attribute DOMString? ariaHasPopup;
attribute DOMString? ariaHidden;
attribute DOMString? ariaInvalid;
attribute DOMString? ariaKeyShortcuts;
attribute DOMString? ariaLabel;
attribute FrozenArray&lt;Element&gt;? ariaLabelledByElements;
attribute DOMString? ariaLevel;
attribute DOMString? ariaLive;
attribute DOMString? ariaModal;
attribute DOMString? ariaMultiLine;
attribute DOMString? ariaMultiSelectable;
attribute DOMString? ariaOrientation;
attribute FrozenArray&lt;Element&gt;? ariaOwnsElements;
attribute DOMString? ariaPlaceholder;
attribute DOMString? ariaPosInSet;
attribute DOMString? ariaPressed;
attribute DOMString? ariaReadOnly;
<!-- attribute DOMString? ariaRelevant; -->
attribute DOMString? ariaRequired;
attribute DOMString? ariaRoleDescription;
attribute DOMString? ariaRowCount;
attribute DOMString? ariaRowIndex;
<!-- attribute DOMString ariaRowIndexText; // Not yet merged into stable. Use this version when merge-->
attribute DOMString? ariaRowSpan;
attribute DOMString? ariaSelected;
attribute DOMString? ariaSetSize;
attribute DOMString? ariaSort;
attribute DOMString? ariaValueMax;
attribute DOMString? ariaValueMin;
attribute DOMString? ariaValueNow;
attribute DOMString? ariaValueText;
[CEReactions] attribute DOMString? role;
[CEReactions] attribute Element? ariaActiveDescendantElement;
[CEReactions] attribute DOMString? ariaAtomic;
[CEReactions] attribute DOMString? ariaAutoComplete;
[CEReactions] attribute DOMString? ariaBusy;
[CEReactions] attribute DOMString? ariaChecked;
[CEReactions] attribute DOMString? ariaColCount;
[CEReactions] attribute DOMString? ariaColIndex;
<!-- [CEReactions] attribute DOMString? ariaColIndexText; // Not yet merged into stable. Use this version when merge -->
[CEReactions] attribute DOMString? ariaColSpan;
[CEReactions] attribute FrozenArray&lt;Element&gt;? ariaControlsElements;
[CEReactions] attribute DOMString? ariaCurrent;
[CEReactions] attribute FrozenArray&lt;Element&gt;? ariaDescribedByElements;
[CEReactions] attribute DOMString? ariaDescription;
[CEReactions] attribute FrozenArray&lt;Element&gt;? ariaDetailsElements;
[CEReactions] attribute DOMString? ariaDisabled;
[CEReactions] attribute Element? ariaErrorMessageElement;
[CEReactions] attribute DOMString? ariaExpanded;
[CEReactions] attribute FrozenArray&lt;Element&gt;? ariaFlowToElements;
[CEReactions] attribute DOMString? ariaHasPopup;
[CEReactions] attribute DOMString? ariaHidden;
[CEReactions] attribute DOMString? ariaInvalid;
[CEReactions] attribute DOMString? ariaKeyShortcuts;
[CEReactions] attribute DOMString? ariaLabel;
[CEReactions] attribute FrozenArray&lt;Element&gt;? ariaLabelledByElements;
[CEReactions] attribute DOMString? ariaLevel;
[CEReactions] attribute DOMString? ariaLive;
[CEReactions] attribute DOMString? ariaModal;
[CEReactions] attribute DOMString? ariaMultiLine;
[CEReactions] attribute DOMString? ariaMultiSelectable;
[CEReactions] attribute DOMString? ariaOrientation;
[CEReactions] attribute FrozenArray&lt;Element&gt;? ariaOwnsElements;
[CEReactions] attribute DOMString? ariaPlaceholder;
[CEReactions] attribute DOMString? ariaPosInSet;
[CEReactions] attribute DOMString? ariaPressed;
[CEReactions] attribute DOMString? ariaReadOnly;
<!-- [CEReactions] attribute DOMString? ariaRelevant; -->
[CEReactions] attribute DOMString? ariaRequired;
[CEReactions] attribute DOMString? ariaRoleDescription;
[CEReactions] attribute DOMString? ariaRowCount;
[CEReactions] attribute DOMString? ariaRowIndex;
<!-- [CEReactions] attribute DOMString ariaRowIndexText; // Not yet merged into stable. Use this version when merge-->
[CEReactions] attribute DOMString? ariaRowSpan;
[CEReactions] attribute DOMString? ariaSelected;
[CEReactions] attribute DOMString? ariaSetSize;
[CEReactions] attribute DOMString? ariaSort;
[CEReactions] attribute DOMString? ariaValueMax;
[CEReactions] attribute DOMString? ariaValueMin;
[CEReactions] attribute DOMString? ariaValueNow;
[CEReactions] attribute DOMString? ariaValueText;
};
</pre>

Expand Down

0 comments on commit 2cd15a0

Please sign in to comment.