@@ -11350,9 +11350,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1135011350    autocomplete: AutoFill;
1135111351    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture) */
1135211352    capture: string;
11353-     /** Sets or retrieves the state of the check box or radio button. */
11353+     /**
11354+      * Sets or retrieves the state of the check box or radio button.
11355+      *
11356+      * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)
11357+      */
1135411358    checked: boolean;
11355-     /** Sets or retrieves the state of the check box or radio button. */
11359+     /**
11360+      * Sets or retrieves the state of the check box or radio button.
11361+      *
11362+      * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)
11363+      */
1135611364    defaultChecked: boolean;
1135711365    /**
1135811366     * Sets or retrieves the initial contents of the object.
@@ -13572,10 +13580,19 @@ interface HTMLTextAreaElement extends HTMLElement {
1357213580     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)
1357313581     */
1357413582    rows: number;
13583+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection) */
1357513584    selectionDirection: "forward" | "backward" | "none";
13576-     /** Gets or sets the end position or offset of a text selection. */
13585+     /**
13586+      * Gets or sets the end position or offset of a text selection.
13587+      *
13588+      * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)
13589+      */
1357713590    selectionEnd: number;
13578-     /** Gets or sets the starting position or offset of a text selection. */
13591+     /**
13592+      * Gets or sets the starting position or offset of a text selection.
13593+      *
13594+      * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
13595+      */
1357913596    selectionStart: number;
1358013597    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
1358113598    readonly textLength: number;
@@ -13619,20 +13636,27 @@ interface HTMLTextAreaElement extends HTMLElement {
1361913636    checkValidity(): boolean;
1362013637    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
1362113638    reportValidity(): boolean;
13622-     /** Highlights the input area of a form element. */
13639+     /**
13640+      * Highlights the input area of a form element.
13641+      *
13642+      * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)
13643+      */
1362313644    select(): void;
1362413645    /**
1362513646     * Sets a custom error message that is displayed when a form is submitted.
1362613647     * @param error Sets a custom error message that is displayed when a form is submitted.
1362713648     */
1362813649    setCustomValidity(error: string): void;
13650+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText) */
1362913651    setRangeText(replacement: string): void;
1363013652    setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
1363113653    /**
1363213654     * Sets the start and end positions of a selection in a text field.
1363313655     * @param start The offset into the text field for the start of the selection.
1363413656     * @param end The offset into the text field for the end of the selection.
1363513657     * @param direction The direction in which the selection is performed.
13658+      *
13659+      * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)
1363613660     */
1363713661    setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
1363813662    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -20612,14 +20636,23 @@ declare var SVGLength: {
2061220636 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)
2061320637 */
2061420638interface SVGLengthList {
20639+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length) */
2061520640    readonly length: number;
20641+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems) */
2061620642    readonly numberOfItems: number;
20643+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem) */
2061720644    appendItem(newItem: SVGLength): SVGLength;
20645+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear) */
2061820646    clear(): void;
20647+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem) */
2061920648    getItem(index: number): SVGLength;
20649+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize) */
2062020650    initialize(newItem: SVGLength): SVGLength;
20651+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore) */
2062120652    insertItemBefore(newItem: SVGLength, index: number): SVGLength;
20653+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem) */
2062220654    removeItem(index: number): SVGLength;
20655+     /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem) */
2062320656    replaceItem(newItem: SVGLength, index: number): SVGLength;
2062420657    [index: number]: SVGLength;
2062520658}
0 commit comments