@@ -8466,11 +8466,13 @@ declare var EncodedVideoChunk: {
8466
8466
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
8467
8467
*/
8468
8468
interface ErrorEvent extends Event {
8469
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
8469
8470
readonly colno: number;
8470
8471
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
8471
8472
readonly error: any;
8472
8473
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
8473
8474
readonly filename: string;
8475
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
8474
8476
readonly lineno: number;
8475
8477
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
8476
8478
readonly message: string;
@@ -10156,7 +10158,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
10156
10158
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10157
10159
*/
10158
10160
formAction: string;
10159
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
10161
+ /**
10162
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
10163
+ *
10164
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
10165
+ */
10160
10166
formEnctype: string;
10161
10167
/**
10162
10168
* Overrides the submit method attribute previously specified on a form element.
@@ -11434,7 +11440,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11434
11440
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11435
11441
*/
11436
11442
formAction: string;
11437
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
11443
+ /**
11444
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
11445
+ *
11446
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
11447
+ */
11438
11448
formEnctype: string;
11439
11449
/**
11440
11450
* Overrides the submit method attribute previously specified on a form element.
@@ -25380,6 +25390,7 @@ interface WebGLRenderingContextBase {
25380
25390
readonly drawingBufferHeight: GLsizei;
25381
25391
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
25382
25392
readonly drawingBufferWidth: GLsizei;
25393
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
25383
25394
unpackColorSpace: PredefinedColorSpace;
25384
25395
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
25385
25396
activeTexture(texture: GLenum): void;
0 commit comments