2024-09-09 20:15:04 +09:00
|
|
|
// https://w3c.github.io/aria/#ARIAMixin
|
2022-11-28 17:58:13 -06:00
|
|
|
interface mixin ARIAMixin {
|
2024-09-10 11:40:41 +09:00
|
|
|
[CEReactions] attribute DOMString? role;
|
2024-12-27 17:41:18 +09:00
|
|
|
[Reflect=aria-activedescendant, CEReactions] attribute Element? ariaActiveDescendantElement;
|
2024-09-10 11:40:41 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaAtomic;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaAutoComplete;
|
2024-10-23 17:09:39 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaBrailleLabel;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaBrailleRoleDescription;
|
2024-09-10 11:40:41 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaBusy;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaChecked;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaColCount;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaColIndex;
|
2024-10-23 17:09:39 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaColIndexText;
|
2024-09-10 11:40:41 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaColSpan;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaCurrent;
|
2024-10-23 17:09:39 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaDescription;
|
2024-09-10 11:40:41 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaDisabled;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaExpanded;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaHasPopup;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaHidden;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaInvalid;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaKeyShortcuts;
|
|
|
|
|
[CEReactions] attribute DOMString? ariaLabel;
|
|
|
|
|
[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 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;
|
2024-10-23 17:09:39 +09:00
|
|
|
[CEReactions] attribute DOMString? ariaRowIndexText;
|
2024-09-10 11:40:41 +09:00
|
|
|
[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;
|
2022-11-28 17:58:13 -06:00
|
|
|
};
|