@@ -2502,6 +2502,7 @@ interface ANGLE_instanced_arrays {
25022502}
25032503
25042504interface ARIAMixin {
2505+ ariaActiveDescendantElement: Element | null;
25052506 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */
25062507 ariaAtomic: string | null;
25072508 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
@@ -2522,14 +2523,19 @@ interface ARIAMixin {
25222523 ariaColIndexText: string | null;
25232524 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
25242525 ariaColSpan: string | null;
2526+ ariaControlsElements: ReadonlyArray<Element> | null;
25252527 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
25262528 ariaCurrent: string | null;
2529+ ariaDescribedByElements: ReadonlyArray<Element> | null;
25272530 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
25282531 ariaDescription: string | null;
2532+ ariaDetailsElements: ReadonlyArray<Element> | null;
25292533 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
25302534 ariaDisabled: string | null;
2535+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
25312536 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
25322537 ariaExpanded: string | null;
2538+ ariaFlowToElements: ReadonlyArray<Element> | null;
25332539 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */
25342540 ariaHasPopup: string | null;
25352541 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) */
@@ -2539,6 +2545,7 @@ interface ARIAMixin {
25392545 ariaKeyShortcuts: string | null;
25402546 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */
25412547 ariaLabel: string | null;
2548+ ariaLabelledByElements: ReadonlyArray<Element> | null;
25422549 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */
25432550 ariaLevel: string | null;
25442551 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) */
@@ -2551,6 +2558,7 @@ interface ARIAMixin {
25512558 ariaMultiSelectable: string | null;
25522559 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */
25532560 ariaOrientation: string | null;
2561+ ariaOwnsElements: ReadonlyArray<Element> | null;
25542562 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */
25552563 ariaPlaceholder: string | null;
25562564 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) */
@@ -4712,6 +4720,8 @@ interface CSSStyleDeclaration {
47124720 height: string;
47134721 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */
47144722 hyphenateCharacter: string;
4723+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-limit-chars) */
4724+ hyphenateLimitChars: string;
47154725 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */
47164726 hyphens: string;
47174727 /**
@@ -4874,8 +4884,12 @@ interface CSSStyleDeclaration {
48744884 overflow: string;
48754885 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */
48764886 overflowAnchor: string;
4887+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-block) */
4888+ overflowBlock: string;
48774889 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */
48784890 overflowClipMargin: string;
4891+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-inline) */
4892+ overflowInline: string;
48794893 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */
48804894 overflowWrap: string;
48814895 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */
0 commit comments