@@ -270,6 +270,10 @@ interface ConstrainULongRange extends ULongRange {
270
270
ideal?: number;
271
271
}
272
272
273
+ interface ContentVisibilityAutoStateChangeEventInit extends EventInit {
274
+ skipped?: boolean;
275
+ }
276
+
273
277
interface ConvolverOptions extends AudioNodeOptions {
274
278
buffer?: AudioBuffer | null;
275
279
disableNormalization?: boolean;
@@ -4090,6 +4094,8 @@ interface CSSStyleDeclaration {
4090
4094
containerType: string;
4091
4095
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
4092
4096
content: string;
4097
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content-visibility) */
4098
+ contentVisibility: string;
4093
4099
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
4094
4100
counterIncrement: string;
4095
4101
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
@@ -4591,6 +4597,7 @@ interface CSSStyleDeclaration {
4591
4597
textUnderlinePosition: string;
4592
4598
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
4593
4599
textWrap: string;
4600
+ textWrapMode: string;
4594
4601
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
4595
4602
top: string;
4596
4603
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
@@ -5813,6 +5820,17 @@ declare var ConstantSourceNode: {
5813
5820
new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;
5814
5821
};
5815
5822
5823
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent) */
5824
+ interface ContentVisibilityAutoStateChangeEvent extends Event {
5825
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent/skipped) */
5826
+ readonly skipped: boolean;
5827
+ }
5828
+
5829
+ declare var ContentVisibilityAutoStateChangeEvent: {
5830
+ prototype: ContentVisibilityAutoStateChangeEvent;
5831
+ new(type: string, eventInitDict?: ContentVisibilityAutoStateChangeEventInit): ContentVisibilityAutoStateChangeEvent;
5832
+ };
5833
+
5816
5834
/**
5817
5835
* An AudioNode that performs a Linear Convolution on a given AudioBuffer, often used to achieve a reverb effect. A ConvolverNode always has exactly one input and one output.
5818
5836
*
@@ -5974,6 +5992,16 @@ declare var CustomEvent: {
5974
5992
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
5975
5993
};
5976
5994
5995
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomStateSet) */
5996
+ interface CustomStateSet {
5997
+ forEach(callbackfn: (value: string, key: string, parent: CustomStateSet) => void, thisArg?: any): void;
5998
+ }
5999
+
6000
+ declare var CustomStateSet: {
6001
+ prototype: CustomStateSet;
6002
+ new(): CustomStateSet;
6003
+ };
6004
+
5977
6005
/**
5978
6006
* An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
5979
6007
*
@@ -7162,6 +7190,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7162
7190
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
7163
7191
createEvent(eventInterface: "CloseEvent"): CloseEvent;
7164
7192
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
7193
+ createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
7165
7194
createEvent(eventInterface: "CustomEvent"): CustomEvent;
7166
7195
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
7167
7196
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
@@ -7939,6 +7968,8 @@ interface ElementInternals extends ARIAMixin {
7939
7968
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)
7940
7969
*/
7941
7970
readonly shadowRoot: ShadowRoot | null;
7971
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/states) */
7972
+ readonly states: CustomStateSet;
7942
7973
/**
7943
7974
* Returns the error message that would be shown to the user if internals's target element was to be checked for validity.
7944
7975
*
@@ -21488,6 +21519,8 @@ interface ShadowRootEventMap {
21488
21519
21489
21520
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
21490
21521
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
21522
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable) */
21523
+ readonly clonable: boolean;
21491
21524
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
21492
21525
readonly delegatesFocus: boolean;
21493
21526
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
@@ -26018,7 +26051,11 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
26018
26051
readonly window: Window & typeof globalThis;
26019
26052
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
26020
26053
alert(message?: any): void;
26021
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
26054
+ /**
26055
+ * @deprecated
26056
+ *
26057
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
26058
+ */
26022
26059
blur(): void;
26023
26060
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
26024
26061
cancelIdleCallback(handle: number): void;
@@ -27643,7 +27680,11 @@ declare var visualViewport: VisualViewport | null;
27643
27680
declare var window: Window & typeof globalThis;
27644
27681
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
27645
27682
declare function alert(message?: any): void;
27646
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
27683
+ /**
27684
+ * @deprecated
27685
+ *
27686
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
27687
+ */
27647
27688
declare function blur(): void;
27648
27689
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
27649
27690
declare function cancelIdleCallback(handle: number): void;
0 commit comments