mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
8556d47240
ARIA has its own spec and is not part of the DOM spec, which is what the Web::DOM namespace is for (https://www.w3.org/TR/wai-aria-1.2/). This allows us to stay closer to the spec with function names and don't have to add the word "ARIA" to identifiers constantly - the namespace now provides that clarity.
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
// https://www.w3.org/TR/wai-aria-1.2/#ARIAMixin
|
|
interface mixin ARIAMixin {
|
|
attribute DOMString? role;
|
|
|
|
attribute DOMString? ariaAtomic;
|
|
attribute DOMString? ariaAutoComplete;
|
|
attribute DOMString? ariaBusy;
|
|
attribute DOMString? ariaChecked;
|
|
attribute DOMString? ariaColCount;
|
|
attribute DOMString? ariaColIndex;
|
|
|
|
attribute DOMString? ariaColSpan;
|
|
|
|
attribute DOMString? ariaCurrent;
|
|
|
|
|
|
|
|
attribute DOMString? ariaDisabled;
|
|
|
|
attribute DOMString? ariaExpanded;
|
|
|
|
attribute DOMString? ariaHasPopup;
|
|
attribute DOMString? ariaHidden;
|
|
attribute DOMString? ariaInvalid;
|
|
attribute DOMString? ariaKeyShortcuts;
|
|
attribute DOMString? ariaLabel;
|
|
|
|
attribute DOMString? ariaLevel;
|
|
attribute DOMString? ariaLive;
|
|
attribute DOMString? ariaModal;
|
|
attribute DOMString? ariaMultiLine;
|
|
attribute DOMString? ariaMultiSelectable;
|
|
attribute DOMString? ariaOrientation;
|
|
|
|
attribute DOMString? ariaPlaceholder;
|
|
attribute DOMString? ariaPosInSet;
|
|
attribute DOMString? ariaPressed;
|
|
attribute DOMString? ariaReadOnly;
|
|
|
|
attribute DOMString? ariaRequired;
|
|
attribute DOMString? ariaRoleDescription;
|
|
attribute DOMString? ariaRowCount;
|
|
attribute DOMString? ariaRowIndex;
|
|
|
|
attribute DOMString? ariaRowSpan;
|
|
attribute DOMString? ariaSelected;
|
|
attribute DOMString? ariaSetSize;
|
|
attribute DOMString? ariaSort;
|
|
attribute DOMString? ariaValueMax;
|
|
attribute DOMString? ariaValueMin;
|
|
attribute DOMString? ariaValueNow;
|
|
attribute DOMString? ariaValueText;
|
|
};
|