diff --git a/index.html b/index.html index 00406eaf8..1725f4664 100644 --- a/index.html +++ b/index.html @@ -12281,7 +12281,7 @@
interface mixin AriaAttributes { - attribute DOMString? ariaActiveDescendant; + attribute Element? ariaActiveDescendantElement; attribute DOMString? ariaAtomic; attribute DOMString? ariaAutoComplete; attribute DOMString? ariaBusy; @@ -12289,27 +12289,27 @@Interface Mixin AriaAttributes
attribute DOMString? ariaColCount; attribute DOMString? ariaColIndex; attribute DOMString? ariaColSpan; - attribute DOMString? ariaControls; + attribute FrozenArray<Element>? ariaControlsElements; attribute DOMString? ariaCurrent; - attribute DOMString? ariaDescribedBy; - attribute DOMString? ariaDetails; + attribute FrozenArray<Element>? ariaDescribedByElements; + attribute Element? ariaDetailsElement; attribute DOMString? ariaDisabled; - attribute DOMString? ariaErrorMessage; + attribute Element? ariaErrorMessageElement; attribute DOMString? ariaExpanded; - attribute DOMString? ariaFlowTo; + attribute FrozenArray<Element>? ariaFlowToElements; attribute DOMString? ariaHasPopup; attribute DOMString? ariaHidden; attribute DOMString? ariaInvalid; attribute DOMString? ariaKeyShortcuts; attribute DOMString? ariaLabel; - attribute DOMString? ariaLabelledBy; + attribute FrozenArray<Element>? ariaLabelledByElements; attribute DOMString? ariaLevel; attribute DOMString? ariaLive; attribute DOMString? ariaModal; attribute DOMString? ariaMultiLine; attribute DOMString? ariaMultiSelectable; attribute DOMString? ariaOrientation; - attribute DOMString? ariaOwns; + attribute FrozenArray<Element>? ariaOwnsElements; attribute DOMString? ariaPlaceholder; attribute DOMString? ariaPosInSet; attribute DOMString? ariaPressed; @@ -12335,7 +12335,7 @@ARIA Attribute Reflection
User agents MUST reflect the following content attributes to each of the corresponding IDL attributes.
IDL Attribute | Reflected ARIA Content Attribute |
---|---|
ariaActiveDescendant | |
ariaActiveDescendantElement | |
ariaAtomic | |
ariaAutoComplete | |
ariaBusy | |
ariaColCount | |
ariaColIndex | |
ariaColSpan | |
ariaControls | |
ariaControlsElements | |
ariaCurrent | |
ariaDescribedBy | |
ariaDetails | |
ariaDescribedByElements | |
ariaDetailsElement | |
ariaDisabled | |
ariaErrorMessage | |
ariaErrorMessageElement | |
ariaExpanded | |
ariaFlowTo | |
ariaFlowToElements | |
ariaHasPopup | |
ariaHidden | |
ariaInvalid | |
ariaKeyShortcuts | |
ariaLabel | |
ariaLabelledBy | |
ariaLabelledByElements | |
ariaLevel | |
ariaLive | |
ariaModal | |
ariaMultiLine | |
ariaMultiSelectable | |
ariaOrientation | |
ariaOwns | |
ariaOwnsElements | |
ariaPlaceholder | |
ariaPosInSet | |
ariaPressed |