You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Gets the object that has the focus when the parent document has focus.
4509
-
*/
4510
-
readonly activeElement: Element | null;
4511
4518
/**
4512
4519
* Sets or gets the color of all active links in the document.
4513
4520
*/
@@ -5508,7 +5515,7 @@ interface EventTarget {
5508
5515
*
5509
5516
* When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.
5510
5517
*
5511
-
* When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in §2.8 Observing event listeners.
5518
+
* When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in §2.8 Observing event listeners.
5512
5519
*
5513
5520
* When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.
* Occurs when Internet Explorer begins looking for media data.
6004
6009
* @param ev The event.
@@ -6420,10 +6425,6 @@ declare var HTMLBodyElement: {
6420
6425
6421
6426
/** Provides properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <button> elements. */
6422
6427
interface HTMLButtonElement extends HTMLElement {
6423
-
/**
6424
-
* Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.
6425
-
*/
6426
-
autofocus: boolean;
6427
6428
disabled: boolean;
6428
6429
/**
6429
6430
* Retrieves a reference to the form that the object is embedded in.
* Specifies whether autocomplete is applied to an editable text field.
7271
7272
*/
7272
7273
autocomplete: string;
7273
-
/**
7274
-
* Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.
7275
-
*/
7276
-
autofocus: boolean;
7277
7274
/**
7278
7275
* Sets or retrieves the state of the check box or radio button.
7279
7276
*/
@@ -8159,6 +8156,7 @@ declare var HTMLOptionsCollection: {
8159
8156
};
8160
8157
8161
8158
interface HTMLOrSVGElement {
8159
+
autofocus: boolean;
8162
8160
readonly dataset: DOMStringMap;
8163
8161
nonce?: string;
8164
8162
tabIndex: number;
@@ -8367,10 +8365,6 @@ declare var HTMLScriptElement: {
8367
8365
/** A <select> HTML Element. These elements also share all of the properties and methods of other HTML elements via the HTMLElement interface. */
8368
8366
interface HTMLSelectElement extends HTMLElement {
8369
8367
autocomplete: string;
8370
-
/**
8371
-
* Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.
8372
-
*/
8373
-
autofocus: boolean;
8374
8368
disabled: boolean;
8375
8369
/**
8376
8370
* Retrieves a reference to the form that the object is embedded in.
@@ -8907,10 +8901,6 @@ declare var HTMLTemplateElement: {
8907
8901
/** Provides special properties and methods for manipulating the layout and presentation of <textarea> elements. */
* Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.
/** The pan property takes a unitless value between -1 (full left pan) and 1 (full right pan). This interface was introduced as a much simpler way to apply a simple panning effect than having to use a full PannerNode. */
* When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.
1467
1470
*
1468
-
* When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in §2.8 Observing event listeners.
1471
+
* When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in §2.8 Observing event listeners.
1469
1472
*
1470
1473
* When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.
0 commit comments