@@ -2502,6 +2502,7 @@ interface ANGLE_instanced_arrays {
2502
2502
}
2503
2503
2504
2504
interface ARIAMixin {
2505
+ ariaActiveDescendantElement: Element | null;
2505
2506
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */
2506
2507
ariaAtomic: string | null;
2507
2508
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
@@ -2522,14 +2523,19 @@ interface ARIAMixin {
2522
2523
ariaColIndexText: string | null;
2523
2524
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
2524
2525
ariaColSpan: string | null;
2526
+ ariaControlsElements: ReadonlyArray<Element> | null;
2525
2527
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
2526
2528
ariaCurrent: string | null;
2529
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
2527
2530
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
2528
2531
ariaDescription: string | null;
2532
+ ariaDetailsElements: ReadonlyArray<Element> | null;
2529
2533
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
2530
2534
ariaDisabled: string | null;
2535
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
2531
2536
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
2532
2537
ariaExpanded: string | null;
2538
+ ariaFlowToElements: ReadonlyArray<Element> | null;
2533
2539
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */
2534
2540
ariaHasPopup: string | null;
2535
2541
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) */
@@ -2539,6 +2545,7 @@ interface ARIAMixin {
2539
2545
ariaKeyShortcuts: string | null;
2540
2546
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */
2541
2547
ariaLabel: string | null;
2548
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
2542
2549
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */
2543
2550
ariaLevel: string | null;
2544
2551
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) */
@@ -2551,6 +2558,7 @@ interface ARIAMixin {
2551
2558
ariaMultiSelectable: string | null;
2552
2559
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */
2553
2560
ariaOrientation: string | null;
2561
+ ariaOwnsElements: ReadonlyArray<Element> | null;
2554
2562
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */
2555
2563
ariaPlaceholder: string | null;
2556
2564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) */
@@ -4712,6 +4720,8 @@ interface CSSStyleDeclaration {
4712
4720
height: string;
4713
4721
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */
4714
4722
hyphenateCharacter: string;
4723
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-limit-chars) */
4724
+ hyphenateLimitChars: string;
4715
4725
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */
4716
4726
hyphens: string;
4717
4727
/**
@@ -4874,8 +4884,12 @@ interface CSSStyleDeclaration {
4874
4884
overflow: string;
4875
4885
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */
4876
4886
overflowAnchor: string;
4887
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-block) */
4888
+ overflowBlock: string;
4877
4889
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */
4878
4890
overflowClipMargin: string;
4891
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-inline) */
4892
+ overflowInline: string;
4879
4893
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */
4880
4894
overflowWrap: string;
4881
4895
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */
0 commit comments