@@ -8983,7 +8983,7 @@ interface GlobalEventHandlers {
89838983 onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
89848984 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
89858985 onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
8986- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement /beforeinput_event) */
8986+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element /beforeinput_event) */
89878987 onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
89888988 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
89898989 onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -9124,7 +9124,7 @@ interface GlobalEventHandlers {
91249124 onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
91259125 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
91269126 ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
9127- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement /input_event) */
9127+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element /input_event) */
91289128 oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
91299129 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
91309130 oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -9178,7 +9178,7 @@ interface GlobalEventHandlers {
91789178 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
91799179 */
91809180 onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9181- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document /lostpointercapture_event) */
9181+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement /lostpointercapture_event) */
91829182 onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
91839183 /**
91849184 * Fires when the user clicks the object with either mouse button.
@@ -14477,7 +14477,11 @@ interface KeyboardEvent extends UIEvent {
1447714477 readonly shiftKey: boolean;
1447814478 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/getModifierState) */
1447914479 getModifierState(keyArg: string): boolean;
14480- /** @deprecated */
14480+ /**
14481+ * @deprecated
14482+ *
14483+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/initKeyboardEvent)
14484+ */
1448114485 initKeyboardEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, keyArg?: string, locationArg?: number, ctrlKey?: boolean, altKey?: boolean, shiftKey?: boolean, metaKey?: boolean): void;
1448214486 readonly DOM_KEY_LOCATION_STANDARD: 0x00;
1448314487 readonly DOM_KEY_LOCATION_LEFT: 0x01;
@@ -23307,7 +23311,6 @@ declare var WebGL2RenderingContext: {
2330723311 readonly STENCIL: 0x1802;
2330823312 readonly RED: 0x1903;
2330923313 readonly RGB8: 0x8051;
23310- readonly RGBA8: 0x8058;
2331123314 readonly RGB10_A2: 0x8059;
2331223315 readonly TEXTURE_BINDING_3D: 0x806A;
2331323316 readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -23818,6 +23821,7 @@ declare var WebGL2RenderingContext: {
2381823821 readonly RENDERBUFFER: 0x8D41;
2381923822 readonly RGBA4: 0x8056;
2382023823 readonly RGB5_A1: 0x8057;
23824+ readonly RGBA8: 0x8058;
2382123825 readonly RGB565: 0x8D62;
2382223826 readonly DEPTH_COMPONENT16: 0x81A5;
2382323827 readonly STENCIL_INDEX8: 0x8D48;
@@ -24052,7 +24056,6 @@ interface WebGL2RenderingContextBase {
2405224056 readonly STENCIL: 0x1802;
2405324057 readonly RED: 0x1903;
2405424058 readonly RGB8: 0x8051;
24055- readonly RGBA8: 0x8058;
2405624059 readonly RGB10_A2: 0x8059;
2405724060 readonly TEXTURE_BINDING_3D: 0x806A;
2405824061 readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -24725,6 +24728,7 @@ declare var WebGLRenderingContext: {
2472524728 readonly RENDERBUFFER: 0x8D41;
2472624729 readonly RGBA4: 0x8056;
2472724730 readonly RGB5_A1: 0x8057;
24731+ readonly RGBA8: 0x8058;
2472824732 readonly RGB565: 0x8D62;
2472924733 readonly DEPTH_COMPONENT16: 0x81A5;
2473024734 readonly STENCIL_INDEX8: 0x8D48;
@@ -25300,6 +25304,7 @@ interface WebGLRenderingContextBase {
2530025304 readonly RENDERBUFFER: 0x8D41;
2530125305 readonly RGBA4: 0x8056;
2530225306 readonly RGB5_A1: 0x8057;
25307+ readonly RGBA8: 0x8058;
2530325308 readonly RGB565: 0x8D62;
2530425309 readonly DEPTH_COMPONENT16: 0x81A5;
2530525310 readonly STENCIL_INDEX8: 0x8D48;
@@ -27615,7 +27620,7 @@ declare var onanimationiteration: ((this: Window, ev: AnimationEvent) => any) |
2761527620declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
2761627621/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
2761727622declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
27618- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement /beforeinput_event) */
27623+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element /beforeinput_event) */
2761927624declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
2762027625/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
2762127626declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
@@ -27756,7 +27761,7 @@ declare var onfocus: ((this: Window, ev: FocusEvent) => any) | null;
2775627761declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
2775727762/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
2775827763declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
27759- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement /input_event) */
27764+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element /input_event) */
2776027765declare var oninput: ((this: Window, ev: Event) => any) | null;
2776127766/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
2776227767declare var oninvalid: ((this: Window, ev: Event) => any) | null;
@@ -27810,7 +27815,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
2781027815 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
2781127816 */
2781227817declare var onloadstart: ((this: Window, ev: Event) => any) | null;
27813- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document /lostpointercapture_event) */
27818+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement /lostpointercapture_event) */
2781427819declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
2781527820/**
2781627821 * Fires when the user clicks the object with either mouse button.
0 commit comments