Skip to content

Commit 07c4492

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent c3a81ac commit 07c4492

21 files changed

+479
-15
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1649,6 +1649,8 @@ declare namespace WebAssembly {
16491649
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow)
16501650
*/
16511651
grow(delta: AddressValue): AddressValue;
1652+
toFixedLengthBuffer(): ArrayBuffer;
1653+
toResizableBuffer(): ArrayBuffer;
16521654
}
16531655

16541656
var Memory: {

baselines/dom.generated.d.ts

Lines changed: 111 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2276,6 +2276,31 @@ interface SVGBoundingBoxOptions {
22762276
stroke?: boolean;
22772277
}
22782278

2279+
interface SanitizerAttributeNamespace {
2280+
name: string;
2281+
namespace?: string | null;
2282+
}
2283+
2284+
interface SanitizerConfig {
2285+
attributes?: SanitizerAttribute[];
2286+
comments?: boolean;
2287+
dataAttributes?: boolean;
2288+
elements?: SanitizerElementWithAttributes[];
2289+
removeAttributes?: SanitizerAttribute[];
2290+
removeElements?: SanitizerElement[];
2291+
replaceWithChildrenElements?: SanitizerElement[];
2292+
}
2293+
2294+
interface SanitizerElementNamespace {
2295+
name: string;
2296+
namespace?: string | null;
2297+
}
2298+
2299+
interface SanitizerElementNamespaceWithAttributes extends SanitizerElementNamespace {
2300+
attributes?: SanitizerAttribute[];
2301+
removeAttributes?: SanitizerAttribute[];
2302+
}
2303+
22792304
interface SchedulerPostTaskOptions {
22802305
delay?: number;
22812306
priority?: TaskPriority;
@@ -6264,7 +6289,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
62646289
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/anchor-name)
62656290
*/
62666291
anchorName: string;
6267-
/** The anchor-scope CSS property can be used to limit the scope in which a positioned element can be associated with anchor elements to a particular subtree. */
6292+
/**
6293+
* The anchor-scope CSS property can be used to limit the scope in which a positioned element can be associated with anchor elements to a particular subtree.
6294+
*
6295+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/anchor-scope)
6296+
*/
62686297
anchorScope: string;
62696298
/**
62706299
* The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, animation-play-state, and animation-timeline.
@@ -7274,7 +7303,6 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
72747303
fontSizeAdjust: string;
72757304
/**
72767305
* The font-stretch CSS property selects a normal, condensed, or expanded face from a font.
7277-
* @deprecated
72787306
*
72797307
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-stretch)
72807308
*/
@@ -8686,6 +8714,12 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
86868714
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-indent)
86878715
*/
86888716
textIndent: string;
8717+
/**
8718+
* The text-justify CSS property sets what type of justification should be applied to text when text-align: justify; is set on an element.
8719+
*
8720+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-justify)
8721+
*/
8722+
textJustify: string;
86898723
/**
86908724
* The text-orientation CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when writing-mode is not horizontal-tb). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
86918725
*
@@ -26404,7 +26438,11 @@ interface Performance extends EventTarget {
2640426438
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/eventCounts)
2640526439
*/
2640626440
readonly eventCounts: EventCounts;
26407-
/** The read-only **`performance.interactionCount`** property represents the number of real-user interactions that have occurred on the page since it was loaded. */
26441+
/**
26442+
* The read-only **`performance.interactionCount`** property represents the number of real-user interactions that have occurred on the page since it was loaded.
26443+
*
26444+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/interactionCount)
26445+
*/
2640826446
readonly interactionCount: number;
2640926447
/**
2641026448
* The legacy **`Performance.navigation`** read-only property returns a PerformanceNavigation object representing the type of navigation that occurs in the given browsing context, such as the number of redirections needed to fetch the resource.
@@ -28032,6 +28070,7 @@ interface RTCDtlsTransport extends EventTarget {
2803228070
readonly iceTransport: RTCIceTransport;
2803328071
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/error_event) */
2803428072
onerror: ((this: RTCDtlsTransport, ev: RTCErrorEvent) => any) | null;
28073+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/statechange_event) */
2803528074
onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
2803628075
/**
2803728076
* The **`state`** read-only property of the RTCDtlsTransport interface provides information which describes a Datagram Transport Layer Security (DTLS) transport state.
@@ -33517,6 +33556,69 @@ declare var SVGViewElement: {
3351733556
new(): SVGViewElement;
3351833557
};
3351933558

33559+
/** The **`Sanitizer`** interface of the HTML Sanitizer API defines a configuration object that specifies what elements, attributes and comments are allowed or should be removed when inserting strings of HTML into an Element or ShadowRoot, or when parsing an HTML string into a Document. */
33560+
interface Sanitizer {
33561+
/**
33562+
* The **`allowAttribute()`** method of the Sanitizer interface sets an attribute to be allowed on all elements when the sanitizer is used.
33563+
*
33564+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/allowAttribute)
33565+
*/
33566+
allowAttribute(attribute: SanitizerAttribute): boolean;
33567+
/**
33568+
* The **`allowElement()`** method of the Sanitizer interface sets that the specified element is allowed in the output when the sanitizer is used.
33569+
*
33570+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/allowElement)
33571+
*/
33572+
allowElement(element: SanitizerElementWithAttributes): boolean;
33573+
/**
33574+
* The **`get()`** method of the Sanitizer interface returns a SanitizerConfig dictionary instance that represents the current Sanitizer configuration.
33575+
*
33576+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/get)
33577+
*/
33578+
get(): SanitizerConfig;
33579+
/**
33580+
* The **`removeAttribute()`** method of the Sanitizer interface sets an attribute to be removed from all elements when the sanitizer is used.
33581+
*
33582+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeAttribute)
33583+
*/
33584+
removeAttribute(attribute: SanitizerAttribute): boolean;
33585+
/**
33586+
* The **`removeElement()`** method of the Sanitizer interface sets the specified element be removed from the output when the sanitizer is used.
33587+
*
33588+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeElement)
33589+
*/
33590+
removeElement(element: SanitizerElement): boolean;
33591+
/**
33592+
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
33593+
*
33594+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
33595+
*/
33596+
removeUnsafe(): boolean;
33597+
/**
33598+
* The **`replaceElementWithChildren()`** method of the Sanitizer interface sets an element to be replaced by its child HTML elements when the sanitizer is used. This is primarily used for stripping styles from text.
33599+
*
33600+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/replaceElementWithChildren)
33601+
*/
33602+
replaceElementWithChildren(element: SanitizerElement): boolean;
33603+
/**
33604+
* The **`setComments()`** method of the Sanitizer interface sets whether comments will be allowed or removed by the sanitizer.
33605+
*
33606+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/setComments)
33607+
*/
33608+
setComments(allow: boolean): boolean;
33609+
/**
33610+
* The **`setDataAttributes()`** method of the Sanitizer interface sets whether all data-* attributes will be allowed by the sanitizer, or if they must be individually specified.
33611+
*
33612+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/setDataAttributes)
33613+
*/
33614+
setDataAttributes(allow: boolean): boolean;
33615+
}
33616+
33617+
declare var Sanitizer: {
33618+
prototype: Sanitizer;
33619+
new(configuration?: SanitizerConfig | SanitizerPresets): Sanitizer;
33620+
};
33621+
3352033622
/**
3352133623
* The **`Scheduler`** interface of the Prioritized Task Scheduling API provides methods for scheduling prioritized tasks.
3352233624
*
@@ -41481,6 +41583,8 @@ declare namespace WebAssembly {
4148141583
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow)
4148241584
*/
4148341585
grow(delta: AddressValue): AddressValue;
41586+
toFixedLengthBuffer(): ArrayBuffer;
41587+
toResizableBuffer(): ArrayBuffer;
4148441588
}
4148541589

4148641590
var Memory: {
@@ -43091,6 +43195,9 @@ type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBY
4309143195
type RenderingContext = CanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
4309243196
type ReportList = Report[];
4309343197
type RequestInfo = Request | string;
43198+
type SanitizerAttribute = string | SanitizerAttributeNamespace;
43199+
type SanitizerElement = string | SanitizerElementNamespace;
43200+
type SanitizerElementWithAttributes = string | SanitizerElementNamespaceWithAttributes;
4309443201
type SelectionDirection = "forward" | "backward" | "none";
4309543202
type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
4309643203
type TimerHandler = string | Function;
@@ -43278,6 +43385,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
4327843385
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
4327943386
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
4328043387
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
43388+
type SanitizerPresets = "default";
4328143389
type ScrollAxis = "block" | "inline" | "x" | "y";
4328243390
type ScrollBehavior = "auto" | "instant" | "smooth";
4328343391
type ScrollLogicalPosition = "center" | "end" | "nearest" | "start";

baselines/serviceworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11803,6 +11803,8 @@ declare namespace WebAssembly {
1180311803
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow)
1180411804
*/
1180511805
grow(delta: AddressValue): AddressValue;
11806+
toFixedLengthBuffer(): ArrayBuffer;
11807+
toResizableBuffer(): ArrayBuffer;
1180611808
}
1180711809

1180811810
var Memory: {

baselines/sharedworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11510,6 +11510,8 @@ declare namespace WebAssembly {
1151011510
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow)
1151111511
*/
1151211512
grow(delta: AddressValue): AddressValue;
11513+
toFixedLengthBuffer(): ArrayBuffer;
11514+
toResizableBuffer(): ArrayBuffer;
1151311515
}
1151411516

1151511517
var Memory: {

baselines/ts5.5/audioworklet.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1646,6 +1646,8 @@ declare namespace WebAssembly {
16461646
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow)
16471647
*/
16481648
grow(delta: AddressValue): AddressValue;
1649+
toFixedLengthBuffer(): ArrayBuffer;
1650+
toResizableBuffer(): ArrayBuffer;
16491651
}
16501652

16511653
var Memory: {

0 commit comments

Comments
 (0)