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 or sets a value indicating what data should be preloaded, if any. */
7216
7216
preload: "none" | "metadata" | "auto" | "";
7217
+
preservesPitch: boolean;
7217
7218
readonly readyState: number;
7218
7219
readonly remote: RemotePlayback;
7219
7220
/** Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked. */
@@ -7580,16 +7581,25 @@ declare var HTMLParagraphElement: {
7580
7581
new(): HTMLParagraphElement;
7581
7582
};
7582
7583
7583
-
/** Provides special properties (beyond those of the regular HTMLElement object interface it inherits) for manipulating <param> elements, representing a pair of a key and a value that acts as a parameter for an <object> element. */
7584
+
/**
7585
+
* Provides special properties (beyond those of the regular HTMLElement object interface it inherits) for manipulating <param> elements, representing a pair of a key and a value that acts as a parameter for an <object> element.
7586
+
* @deprecated
7587
+
*/
7584
7588
interface HTMLParamElement extends HTMLElement {
7585
-
/** Sets or retrieves the name of an input parameter for an element. */
7589
+
/**
7590
+
* Sets or retrieves the name of an input parameter for an element.
7591
+
* @deprecated
7592
+
*/
7586
7593
name: string;
7587
7594
/**
7588
7595
* Sets or retrieves the content type of the resource designated by the value attribute.
7589
7596
* @deprecated
7590
7597
*/
7591
7598
type: string;
7592
-
/** Sets or retrieves the value of an input parameter for an element. */
7599
+
/**
7600
+
* Sets or retrieves the value of an input parameter for an element.
7601
+
* @deprecated
7602
+
*/
7593
7603
value: string;
7594
7604
/**
7595
7605
* Sets or retrieves the data type of the value attribute.
0 commit comments