@@ -4803,6 +4803,8 @@ interface CSSStyleDeclaration {
4803
4803
pointerEvents: string;
4804
4804
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
4805
4805
position: string;
4806
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
4807
+ positionArea: string;
4806
4808
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
4807
4809
printColorAdjust: string;
4808
4810
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
@@ -10145,7 +10147,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
10145
10147
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
10146
10148
*/
10147
10149
readonly form: HTMLFormElement | null;
10148
- /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
10150
+ /**
10151
+ * Overrides the action attribute (where the data on a form is sent) on the parent form element.
10152
+ *
10153
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10154
+ */
10149
10155
formAction: string;
10150
10156
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
10151
10157
formEnctype: string;
@@ -11411,7 +11417,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11411
11417
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
11412
11418
*/
11413
11419
readonly form: HTMLFormElement | null;
11414
- /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
11420
+ /**
11421
+ * Overrides the action attribute (where the data on a form is sent) on the parent form element.
11422
+ *
11423
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11424
+ */
11415
11425
formAction: string;
11416
11426
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
11417
11427
formEnctype: string;
@@ -19307,7 +19317,11 @@ interface Request extends Body {
19307
19317
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
19308
19318
*/
19309
19319
readonly integrity: string;
19310
- /** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
19320
+ /**
19321
+ * Returns a boolean indicating whether or not request can outlive the global in which it was created.
19322
+ *
19323
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
19324
+ */
19311
19325
readonly keepalive: boolean;
19312
19326
/**
19313
19327
* Returns request's HTTP method, which is "GET" by default.
0 commit comments