mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
e86711a5b7
This change makes the aria-relevant content attribute the ariaRelevant IDL/DOM attribute get reflected — which makes the Ladybird behavior interoperable with the implemented behavior in other existing engines. Otherwise, without this change, Ladybird fails the relevant test case in https://wpt.fyi/results/html/dom/aria-attribute-reflection.html — which other existing engines all pass.
54 lines
1.5 KiB
Text
54 lines
1.5 KiB
Text
// 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? ariaRelevant;
|
|
|
|
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;
|
|
};
|