@@ -8466,11 +8466,13 @@ declare var EncodedVideoChunk: {
84668466 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
84678467 */
84688468interface ErrorEvent extends Event {
8469+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
84698470 readonly colno: number;
84708471 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
84718472 readonly error: any;
84728473 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
84738474 readonly filename: string;
8475+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
84748476 readonly lineno: number;
84758477 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
84768478 readonly message: string;
@@ -10156,7 +10158,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
1015610158 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
1015710159 */
1015810160 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+ */
1016010166 formEnctype: string;
1016110167 /**
1016210168 * Overrides the submit method attribute previously specified on a form element.
@@ -11434,7 +11440,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1143411440 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
1143511441 */
1143611442 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+ */
1143811448 formEnctype: string;
1143911449 /**
1144011450 * Overrides the submit method attribute previously specified on a form element.
@@ -25380,6 +25390,7 @@ interface WebGLRenderingContextBase {
2538025390 readonly drawingBufferHeight: GLsizei;
2538125391 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
2538225392 readonly drawingBufferWidth: GLsizei;
25393+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
2538325394 unpackColorSpace: PredefinedColorSpace;
2538425395 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
2538525396 activeTexture(texture: GLenum): void;
0 commit comments