@@ -2513,7 +2513,9 @@ declare var AnimationEvent: {
25132513};
25142514
25152515interface AnimationFrameProvider {
2516+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
25162517 cancelAnimationFrame(handle: number): void;
2518+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
25172519 requestAnimationFrame(callback: FrameRequestCallback): number;
25182520}
25192521
@@ -4882,7 +4884,11 @@ interface CSSStyleDeclaration {
48824884 * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)
48834885 */
48844886 webkitMaskClip: string;
4885- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite) */
4887+ /**
4888+ * @deprecated This is a legacy alias of `maskComposite`.
4889+ *
4890+ * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite)
4891+ */
48864892 webkitMaskComposite: string;
48874893 /**
48884894 * @deprecated This is a legacy alias of `maskImage`.
@@ -11528,6 +11534,7 @@ interface HTMLMediaElement extends HTMLElement {
1152811534 preservesPitch: boolean;
1152911535 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/readyState) */
1153011536 readonly readyState: number;
11537+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/remote) */
1153111538 readonly remote: RemotePlayback;
1153211539 /**
1153311540 * Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.
@@ -12501,6 +12508,8 @@ interface HTMLSelectElement extends HTMLElement {
1250112508 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/setCustomValidity)
1250212509 */
1250312510 setCustomValidity(error: string): void;
12511+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/showPicker) */
12512+ showPicker(): void;
1250412513 addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1250512514 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1250612515 removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -21266,6 +21275,7 @@ interface ServiceWorkerContainer extends EventTarget {
2126621275 oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
2126721276 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
2126821277 onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
21278+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
2126921279 onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
2127021280 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
2127121281 readonly ready: Promise<ServiceWorkerRegistration>;
@@ -25679,6 +25689,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
2567925689 "DOMContentLoaded": Event;
2568025690 "devicemotion": DeviceMotionEvent;
2568125691 "deviceorientation": DeviceOrientationEvent;
25692+ "deviceorientationabsolute": DeviceOrientationEvent;
2568225693 "gamepadconnected": GamepadEvent;
2568325694 "gamepaddisconnected": GamepadEvent;
2568425695 "orientationchange": Event;
@@ -25767,6 +25778,12 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
2576725778 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
2576825779 */
2576925780 ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
25781+ /**
25782+ * Available only in secure contexts.
25783+ *
25784+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
25785+ */
25786+ ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
2577025787 /**
2577125788 * @deprecated
2577225789 *
@@ -26011,7 +26028,11 @@ interface WindowEventHandlers {
2601126028 onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
2601226029 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
2601326030 onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
26014- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
26031+ /**
26032+ * @deprecated
26033+ *
26034+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
26035+ */
2601526036 onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
2601626037 addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2601726038 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -27382,6 +27403,12 @@ declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | nul
2738227403 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
2738327404 */
2738427405declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
27406+ /**
27407+ * Available only in secure contexts.
27408+ *
27409+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
27410+ */
27411+ declare var ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
2738527412/**
2738627413 * @deprecated
2738727414 *
@@ -27565,7 +27592,9 @@ declare function toString(): string;
2756527592 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
2756627593 */
2756727594declare function dispatchEvent(event: Event): boolean;
27595+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
2756827596declare function cancelAnimationFrame(handle: number): void;
27597+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
2756927598declare function requestAnimationFrame(callback: FrameRequestCallback): number;
2757027599/**
2757127600 * Fires when the user aborts the download.
@@ -28035,7 +28064,11 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
2803528064declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
2803628065/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
2803728066declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
28038- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
28067+ /**
28068+ * @deprecated
28069+ *
28070+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
28071+ */
2803928072declare var onunload: ((this: Window, ev: Event) => any) | null;
2804028073/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
2804128074declare var localStorage: Storage;
0 commit comments