@@ -6851,6 +6851,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
68516851 textAlignLast: string;
68526852 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
68536853 textAnchor: string;
6854+ textAutospace: string;
68546855 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
68556856 textBox: string;
68566857 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box-edge) */
@@ -12405,6 +12406,12 @@ interface FontFace {
1240512406 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
1240612407 */
1240712408 unicodeRange: string;
12409+ /**
12410+ * The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
12411+ *
12412+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
12413+ */
12414+ variationSettings: string;
1240812415 /**
1240912416 * The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
1241012417 *
@@ -13575,7 +13582,7 @@ declare var HTMLBodyElement: {
1357513582 *
1357613583 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1357713584 */
13578- interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13585+ interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
1357913586 /**
1358013587 * The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1358113588 *
@@ -15026,7 +15033,7 @@ declare var HTMLImageElement: {
1502615033 *
1502715034 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1502815035 */
15029- interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15036+ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1503015037 /**
1503115038 * The **`accept`** property of the HTMLInputElement interface reflects the input element's `accept` attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an `<input>` of type `file`.
1503215039 *
@@ -19598,7 +19605,11 @@ interface LargestContentfulPaint extends PerformanceEntry {
1959819605 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime)
1959919606 */
1960019607 readonly loadTime: DOMHighResTimeStamp;
19601- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
19608+ /**
19609+ * The **`renderTime`** read-only property of the LargestContentfulPaint interface represents the time that the element was rendered to the screen.
19610+ *
19611+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime)
19612+ */
1960219613 readonly renderTime: DOMHighResTimeStamp;
1960319614 /**
1960419615 * The **`size`** read-only property of the LargestContentfulPaint interface returns the intrinsic size of the element that is the largest contentful paint.
@@ -21888,55 +21899,23 @@ interface NavigatorCookies {
2188821899}
2188921900
2189021901interface NavigatorID {
21891- /**
21892- * @deprecated
21893- *
21894- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName)
21895- */
21902+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
2189621903 readonly appCodeName: string;
21897- /**
21898- * @deprecated
21899- *
21900- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appName)
21901- */
21904+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appName) */
2190221905 readonly appName: string;
21903- /**
21904- * @deprecated
21905- *
21906- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appVersion)
21907- */
21906+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appVersion) */
2190821907 readonly appVersion: string;
21909- /**
21910- * @deprecated
21911- *
21912- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/platform)
21913- */
21908+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/platform) */
2191421909 readonly platform: string;
21915- /**
21916- * @deprecated
21917- *
21918- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/product)
21919- */
21910+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/product) */
2192021911 readonly product: string;
21921- /**
21922- * @deprecated
21923- *
21924- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/productSub)
21925- */
21912+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/productSub) */
2192621913 readonly productSub: string;
2192721914 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/userAgent) */
2192821915 readonly userAgent: string;
21929- /**
21930- * @deprecated
21931- *
21932- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vendor)
21933- */
21916+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vendor) */
2193421917 readonly vendor: string;
21935- /**
21936- * @deprecated
21937- *
21938- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vendorSub)
21939- */
21918+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vendorSub) */
2194021919 readonly vendorSub: string;
2194121920}
2194221921
@@ -21979,25 +21958,13 @@ interface NavigatorOnLine {
2197921958}
2198021959
2198121960interface NavigatorPlugins {
21982- /**
21983- * @deprecated
21984- *
21985- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mimeTypes)
21986- */
21961+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mimeTypes) */
2198721962 readonly mimeTypes: MimeTypeArray;
2198821963 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/pdfViewerEnabled) */
2198921964 readonly pdfViewerEnabled: boolean;
21990- /**
21991- * @deprecated
21992- *
21993- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/plugins)
21994- */
21965+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/plugins) */
2199521966 readonly plugins: PluginArray;
21996- /**
21997- * @deprecated
21998- *
21999- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/javaEnabled)
22000- */
21967+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/javaEnabled) */
2200121968 javaEnabled(): boolean;
2200221969}
2200321970
@@ -24499,7 +24466,7 @@ declare var PopStateEvent: {
2449924466 new(type: string, eventInitDict?: PopStateEventInit): PopStateEvent;
2450024467};
2450124468
24502- interface PopoverInvokerElement {
24469+ interface PopoverTargetAttributes {
2450324470 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetAction) */
2450424471 popoverTargetAction: string;
2450524472 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetElement) */
0 commit comments