@@ -8983,7 +8983,7 @@ interface GlobalEventHandlers {
8983
8983
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
8984
8984
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
8985
8985
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) */
8987
8987
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
8988
8988
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
8989
8989
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -9124,7 +9124,7 @@ interface GlobalEventHandlers {
9124
9124
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
9125
9125
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
9126
9126
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) */
9128
9128
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9129
9129
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
9130
9130
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -9178,7 +9178,7 @@ interface GlobalEventHandlers {
9178
9178
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
9179
9179
*/
9180
9180
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) */
9182
9182
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
9183
9183
/**
9184
9184
* Fires when the user clicks the object with either mouse button.
@@ -14477,7 +14477,11 @@ interface KeyboardEvent extends UIEvent {
14477
14477
readonly shiftKey: boolean;
14478
14478
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/getModifierState) */
14479
14479
getModifierState(keyArg: string): boolean;
14480
- /** @deprecated */
14480
+ /**
14481
+ * @deprecated
14482
+ *
14483
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/initKeyboardEvent)
14484
+ */
14481
14485
initKeyboardEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, keyArg?: string, locationArg?: number, ctrlKey?: boolean, altKey?: boolean, shiftKey?: boolean, metaKey?: boolean): void;
14482
14486
readonly DOM_KEY_LOCATION_STANDARD: 0x00;
14483
14487
readonly DOM_KEY_LOCATION_LEFT: 0x01;
@@ -23307,7 +23311,6 @@ declare var WebGL2RenderingContext: {
23307
23311
readonly STENCIL: 0x1802;
23308
23312
readonly RED: 0x1903;
23309
23313
readonly RGB8: 0x8051;
23310
- readonly RGBA8: 0x8058;
23311
23314
readonly RGB10_A2: 0x8059;
23312
23315
readonly TEXTURE_BINDING_3D: 0x806A;
23313
23316
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -23818,6 +23821,7 @@ declare var WebGL2RenderingContext: {
23818
23821
readonly RENDERBUFFER: 0x8D41;
23819
23822
readonly RGBA4: 0x8056;
23820
23823
readonly RGB5_A1: 0x8057;
23824
+ readonly RGBA8: 0x8058;
23821
23825
readonly RGB565: 0x8D62;
23822
23826
readonly DEPTH_COMPONENT16: 0x81A5;
23823
23827
readonly STENCIL_INDEX8: 0x8D48;
@@ -24052,7 +24056,6 @@ interface WebGL2RenderingContextBase {
24052
24056
readonly STENCIL: 0x1802;
24053
24057
readonly RED: 0x1903;
24054
24058
readonly RGB8: 0x8051;
24055
- readonly RGBA8: 0x8058;
24056
24059
readonly RGB10_A2: 0x8059;
24057
24060
readonly TEXTURE_BINDING_3D: 0x806A;
24058
24061
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -24725,6 +24728,7 @@ declare var WebGLRenderingContext: {
24725
24728
readonly RENDERBUFFER: 0x8D41;
24726
24729
readonly RGBA4: 0x8056;
24727
24730
readonly RGB5_A1: 0x8057;
24731
+ readonly RGBA8: 0x8058;
24728
24732
readonly RGB565: 0x8D62;
24729
24733
readonly DEPTH_COMPONENT16: 0x81A5;
24730
24734
readonly STENCIL_INDEX8: 0x8D48;
@@ -25300,6 +25304,7 @@ interface WebGLRenderingContextBase {
25300
25304
readonly RENDERBUFFER: 0x8D41;
25301
25305
readonly RGBA4: 0x8056;
25302
25306
readonly RGB5_A1: 0x8057;
25307
+ readonly RGBA8: 0x8058;
25303
25308
readonly RGB565: 0x8D62;
25304
25309
readonly DEPTH_COMPONENT16: 0x81A5;
25305
25310
readonly STENCIL_INDEX8: 0x8D48;
@@ -27615,7 +27620,7 @@ declare var onanimationiteration: ((this: Window, ev: AnimationEvent) => any) |
27615
27620
declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
27616
27621
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
27617
27622
declare 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) */
27619
27624
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
27620
27625
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
27621
27626
declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
@@ -27756,7 +27761,7 @@ declare var onfocus: ((this: Window, ev: FocusEvent) => any) | null;
27756
27761
declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
27757
27762
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
27758
27763
declare 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) */
27760
27765
declare var oninput: ((this: Window, ev: Event) => any) | null;
27761
27766
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
27762
27767
declare var oninvalid: ((this: Window, ev: Event) => any) | null;
@@ -27810,7 +27815,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
27810
27815
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
27811
27816
*/
27812
27817
declare 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) */
27814
27819
declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
27815
27820
/**
27816
27821
* Fires when the user clicks the object with either mouse button.
0 commit comments