@@ -2324,6 +2324,8 @@ declare var AbortSignal: {
2324
2324
new(): AbortSignal;
2325
2325
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) */
2326
2326
abort(reason?: any): AbortSignal;
2327
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
2328
+ any(signals: AbortSignal[]): AbortSignal;
2327
2329
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) */
2328
2330
timeout(milliseconds: number): AbortSignal;
2329
2331
};
@@ -3773,6 +3775,16 @@ declare var CSSScale: {
3773
3775
new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
3774
3776
};
3775
3777
3778
+ interface CSSScopeRule extends CSSGroupingRule {
3779
+ readonly end: string | null;
3780
+ readonly start: string | null;
3781
+ }
3782
+
3783
+ declare var CSSScopeRule: {
3784
+ prototype: CSSScopeRule;
3785
+ new(): CSSScopeRule;
3786
+ };
3787
+
3776
3788
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew) */
3777
3789
interface CSSSkew extends CSSTransformComponent {
3778
3790
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax) */
@@ -4033,6 +4045,7 @@ interface CSSStyleDeclaration {
4033
4045
clipRule: string;
4034
4046
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */
4035
4047
color: string;
4048
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-interpolation) */
4036
4049
colorInterpolation: string;
4037
4050
colorInterpolationFilters: string;
4038
4051
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */
@@ -4592,6 +4605,8 @@ interface CSSStyleDeclaration {
4592
4605
transformStyle: string;
4593
4606
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */
4594
4607
transition: string;
4608
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-behavior) */
4609
+ transitionBehavior: string;
4595
4610
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */
4596
4611
transitionDelay: string;
4597
4612
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */
@@ -5013,6 +5028,8 @@ interface CSSStyleDeclaration {
5013
5028
webkitUserSelect: string;
5014
5029
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */
5015
5030
whiteSpace: string;
5031
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space-collapse) */
5032
+ whiteSpaceCollapse: string;
5016
5033
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */
5017
5034
widows: string;
5018
5035
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */
@@ -7406,6 +7423,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7406
7423
declare var Document: {
7407
7424
prototype: Document;
7408
7425
new(): Document;
7426
+ parseHTMLUnsafe(html: string): Document;
7409
7427
};
7410
7428
7411
7429
/**
@@ -7856,6 +7874,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
7856
7874
setAttributeNode(attr: Attr): Attr | null;
7857
7875
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
7858
7876
setAttributeNodeNS(attr: Attr): Attr | null;
7877
+ setHTMLUnsafe(html: string): void;
7859
7878
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
7860
7879
setPointerCapture(pointerId: number): void;
7861
7880
/**
@@ -11113,7 +11132,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11113
11132
src: string;
11114
11133
/** Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field. */
11115
11134
step: string;
11116
- /** Returns the content type of the object. */
11135
+ /**
11136
+ * Returns the content type of the object.
11137
+ *
11138
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/type)
11139
+ */
11117
11140
type: string;
11118
11141
/**
11119
11142
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
@@ -11928,6 +11951,7 @@ interface HTMLObjectElement extends HTMLElement {
11928
11951
type: string;
11929
11952
/**
11930
11953
* Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
11954
+ * @deprecated
11931
11955
*
11932
11956
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
11933
11957
*/
@@ -13258,7 +13282,11 @@ interface HTMLTextAreaElement extends HTMLElement {
13258
13282
selectionStart: number;
13259
13283
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
13260
13284
readonly textLength: number;
13261
- /** Retrieves the type of control. */
13285
+ /**
13286
+ * Retrieves the type of control.
13287
+ *
13288
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/type)
13289
+ */
13262
13290
readonly type: string;
13263
13291
/** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
13264
13292
readonly validationMessage: string;
@@ -21438,6 +21466,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
21438
21466
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
21439
21467
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
21440
21468
readonly slotAssignment: SlotAssignmentMode;
21469
+ setHTMLUnsafe(html: string): void;
21441
21470
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
21442
21471
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21443
21472
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments