@@ -4803,6 +4803,8 @@ interface CSSStyleDeclaration {
48034803    pointerEvents: string;
48044804    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
48054805    position: string;
4806+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
4807+     positionArea: string;
48064808    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
48074809    printColorAdjust: string;
48084810    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
@@ -10145,7 +10147,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
1014510147     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
1014610148     */
1014710149    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+      */
1014910155    formAction: string;
1015010156    /** Used to override the encoding (formEnctype attribute) specified on the form element. */
1015110157    formEnctype: string;
@@ -11411,7 +11417,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1141111417     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
1141211418     */
1141311419    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+      */
1141511425    formAction: string;
1141611426    /** Used to override the encoding (formEnctype attribute) specified on the form element. */
1141711427    formEnctype: string;
@@ -19307,7 +19317,11 @@ interface Request extends Body {
1930719317     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
1930819318     */
1930919319    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+      */
1931119325    readonly keepalive: boolean;
1931219326    /**
1931319327     * Returns request's HTTP method, which is "GET" by default.
0 commit comments