@@ -2513,7 +2513,9 @@ declare var AnimationEvent: {
2513
2513
};
2514
2514
2515
2515
interface AnimationFrameProvider {
2516
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
2516
2517
cancelAnimationFrame(handle: number): void;
2518
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
2517
2519
requestAnimationFrame(callback: FrameRequestCallback): number;
2518
2520
}
2519
2521
@@ -4882,7 +4884,11 @@ interface CSSStyleDeclaration {
4882
4884
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)
4883
4885
*/
4884
4886
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
+ */
4886
4892
webkitMaskComposite: string;
4887
4893
/**
4888
4894
* @deprecated This is a legacy alias of `maskImage`.
@@ -11528,6 +11534,7 @@ interface HTMLMediaElement extends HTMLElement {
11528
11534
preservesPitch: boolean;
11529
11535
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/readyState) */
11530
11536
readonly readyState: number;
11537
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/remote) */
11531
11538
readonly remote: RemotePlayback;
11532
11539
/**
11533
11540
* 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 {
12501
12508
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/setCustomValidity)
12502
12509
*/
12503
12510
setCustomValidity(error: string): void;
12511
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/showPicker) */
12512
+ showPicker(): void;
12504
12513
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12505
12514
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
12506
12515
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 {
21266
21275
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
21267
21276
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
21268
21277
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
21278
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
21269
21279
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
21270
21280
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
21271
21281
readonly ready: Promise<ServiceWorkerRegistration>;
@@ -25679,6 +25689,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
25679
25689
"DOMContentLoaded": Event;
25680
25690
"devicemotion": DeviceMotionEvent;
25681
25691
"deviceorientation": DeviceOrientationEvent;
25692
+ "deviceorientationabsolute": DeviceOrientationEvent;
25682
25693
"gamepadconnected": GamepadEvent;
25683
25694
"gamepaddisconnected": GamepadEvent;
25684
25695
"orientationchange": Event;
@@ -25767,6 +25778,12 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
25767
25778
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
25768
25779
*/
25769
25780
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;
25770
25787
/**
25771
25788
* @deprecated
25772
25789
*
@@ -26011,7 +26028,11 @@ interface WindowEventHandlers {
26011
26028
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
26012
26029
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
26013
26030
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
+ */
26015
26036
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
26016
26037
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
26017
26038
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -27382,6 +27403,12 @@ declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | nul
27382
27403
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
27383
27404
*/
27384
27405
declare 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;
27385
27412
/**
27386
27413
* @deprecated
27387
27414
*
@@ -27565,7 +27592,9 @@ declare function toString(): string;
27565
27592
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
27566
27593
*/
27567
27594
declare function dispatchEvent(event: Event): boolean;
27595
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
27568
27596
declare function cancelAnimationFrame(handle: number): void;
27597
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
27569
27598
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
27570
27599
/**
27571
27600
* Fires when the user aborts the download.
@@ -28035,7 +28064,11 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
28035
28064
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
28036
28065
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
28037
28066
declare 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
+ */
28039
28072
declare var onunload: ((this: Window, ev: Event) => any) | null;
28040
28073
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
28041
28074
declare var localStorage: Storage;
0 commit comments