@@ -270,6 +270,10 @@ interface ConstrainULongRange extends ULongRange {
270270 ideal?: number;
271271}
272272
273+ interface ContentVisibilityAutoStateChangeEventInit extends EventInit {
274+ skipped?: boolean;
275+ }
276+
273277interface ConvolverOptions extends AudioNodeOptions {
274278 buffer?: AudioBuffer | null;
275279 disableNormalization?: boolean;
@@ -4090,6 +4094,8 @@ interface CSSStyleDeclaration {
40904094 containerType: string;
40914095 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
40924096 content: string;
4097+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content-visibility) */
4098+ contentVisibility: string;
40934099 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
40944100 counterIncrement: string;
40954101 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
@@ -4591,6 +4597,7 @@ interface CSSStyleDeclaration {
45914597 textUnderlinePosition: string;
45924598 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
45934599 textWrap: string;
4600+ textWrapMode: string;
45944601 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
45954602 top: string;
45964603 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
@@ -5813,6 +5820,17 @@ declare var ConstantSourceNode: {
58135820 new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;
58145821};
58155822
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+
58165834/**
58175835 * 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.
58185836 *
@@ -5974,6 +5992,16 @@ declare var CustomEvent: {
59745992 new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
59755993};
59765994
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+
59776005/**
59786006 * An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
59796007 *
@@ -7162,6 +7190,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
71627190 createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
71637191 createEvent(eventInterface: "CloseEvent"): CloseEvent;
71647192 createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
7193+ createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
71657194 createEvent(eventInterface: "CustomEvent"): CustomEvent;
71667195 createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
71677196 createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
@@ -7939,6 +7968,8 @@ interface ElementInternals extends ARIAMixin {
79397968 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)
79407969 */
79417970 readonly shadowRoot: ShadowRoot | null;
7971+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/states) */
7972+ readonly states: CustomStateSet;
79427973 /**
79437974 * Returns the error message that would be shown to the user if internals's target element was to be checked for validity.
79447975 *
@@ -21488,6 +21519,8 @@ interface ShadowRootEventMap {
2148821519
2148921520/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
2149021521interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
21522+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable) */
21523+ readonly clonable: boolean;
2149121524 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
2149221525 readonly delegatesFocus: boolean;
2149321526 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
@@ -26018,7 +26051,11 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
2601826051 readonly window: Window & typeof globalThis;
2601926052 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
2602026053 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+ */
2602226059 blur(): void;
2602326060 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
2602426061 cancelIdleCallback(handle: number): void;
@@ -27643,7 +27680,11 @@ declare var visualViewport: VisualViewport | null;
2764327680declare var window: Window & typeof globalThis;
2764427681/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
2764527682declare 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+ */
2764727688declare function blur(): void;
2764827689/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
2764927690declare function cancelIdleCallback(handle: number): void;
0 commit comments