@@ -6851,6 +6851,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
6851
6851
textAlignLast: string;
6852
6852
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
6853
6853
textAnchor: string;
6854
+ textAutospace: string;
6854
6855
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
6855
6856
textBox: string;
6856
6857
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box-edge) */
@@ -11068,7 +11069,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11068
11069
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenerror_event) */
11069
11070
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
11070
11071
/**
11071
- * The **`outerHTML`** attribute of the Element DOM interface gets the serialized HTML fragment describing the element including its descendants.
11072
+ * The **`outerHTML`** attribute of the Element interface gets or sets the HTML or XML markup of the element and its descendants, omitting any shadow tree in both cases .
11072
11073
*
11073
11074
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/outerHTML)
11074
11075
*/
@@ -12405,6 +12406,12 @@ interface FontFace {
12405
12406
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
12406
12407
*/
12407
12408
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;
12408
12415
/**
12409
12416
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
12410
12417
*
@@ -12989,7 +12996,7 @@ interface GlobalEventHandlersEventMap {
12989
12996
"focusout": FocusEvent;
12990
12997
"formdata": FormDataEvent;
12991
12998
"gotpointercapture": PointerEvent;
12992
- "input": Event ;
12999
+ "input": InputEvent ;
12993
13000
"invalid": Event;
12994
13001
"keydown": KeyboardEvent;
12995
13002
"keypress": KeyboardEvent;
@@ -13130,7 +13137,7 @@ interface GlobalEventHandlers {
13130
13137
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
13131
13138
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
13132
13139
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
13133
- oninput: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
13140
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent ) => any) | null;
13134
13141
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
13135
13142
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
13136
13143
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
@@ -13575,7 +13582,7 @@ declare var HTMLBodyElement: {
13575
13582
*
13576
13583
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
13577
13584
*/
13578
- interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13585
+ interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13579
13586
/**
13580
13587
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
13581
13588
*
@@ -15026,7 +15033,7 @@ declare var HTMLImageElement: {
15026
15033
*
15027
15034
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
15028
15035
*/
15029
- interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15036
+ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
15030
15037
/**
15031
15038
* 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`.
15032
15039
*
@@ -16403,7 +16410,7 @@ interface HTMLOrSVGElement {
16403
16410
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
16404
16411
readonly dataset: DOMStringMap;
16405
16412
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) */
16406
- nonce? : string;
16413
+ nonce: string;
16407
16414
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) */
16408
16415
tabIndex: number;
16409
16416
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur) */
@@ -19598,7 +19605,11 @@ interface LargestContentfulPaint extends PerformanceEntry {
19598
19605
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime)
19599
19606
*/
19600
19607
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
+ */
19602
19613
readonly renderTime: DOMHighResTimeStamp;
19603
19614
/**
19604
19615
* The **`size`** read-only property of the LargestContentfulPaint interface returns the intrinsic size of the element that is the largest contentful paint.
@@ -19766,8 +19777,8 @@ interface LockManager {
19766
19777
*
19767
19778
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager/request)
19768
19779
*/
19769
- request<T>(name: string, callback: LockGrantedCallback<T>): Promise<T >;
19770
- request<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T >;
19780
+ request<T>(name: string, callback: LockGrantedCallback<T>): Promise<Awaited<T> >;
19781
+ request<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<Awaited<T> >;
19771
19782
}
19772
19783
19773
19784
declare var LockManager: {
@@ -21888,55 +21899,23 @@ interface NavigatorCookies {
21888
21899
}
21889
21900
21890
21901
interface 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) */
21896
21903
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) */
21902
21905
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) */
21908
21907
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) */
21914
21909
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) */
21920
21911
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) */
21926
21913
readonly productSub: string;
21927
21914
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/userAgent) */
21928
21915
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) */
21934
21917
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) */
21940
21919
readonly vendorSub: string;
21941
21920
}
21942
21921
@@ -21979,25 +21958,13 @@ interface NavigatorOnLine {
21979
21958
}
21980
21959
21981
21960
interface 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) */
21987
21962
readonly mimeTypes: MimeTypeArray;
21988
21963
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/pdfViewerEnabled) */
21989
21964
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) */
21995
21966
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) */
22001
21968
javaEnabled(): boolean;
22002
21969
}
22003
21970
@@ -24499,7 +24466,7 @@ declare var PopStateEvent: {
24499
24466
new(type: string, eventInitDict?: PopStateEventInit): PopStateEvent;
24500
24467
};
24501
24468
24502
- interface PopoverInvokerElement {
24469
+ interface PopoverTargetAttributes {
24503
24470
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetAction) */
24504
24471
popoverTargetAction: string;
24505
24472
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetElement) */
@@ -39600,7 +39567,7 @@ declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
39600
39567
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
39601
39568
declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
39602
39569
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
39603
- declare var oninput: ((this: Window, ev: Event ) => any) | null;
39570
+ declare var oninput: ((this: Window, ev: InputEvent ) => any) | null;
39604
39571
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
39605
39572
declare var oninvalid: ((this: Window, ev: Event) => any) | null;
39606
39573
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */
0 commit comments