Skip to content

Commit a54d7e7

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 4a002c9 commit a54d7e7

22 files changed

+561
-224
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -831,6 +831,18 @@ declare var MessagePort: {
831831
new(): MessagePort;
832832
};
833833

834+
interface Origin {
835+
readonly opaque: boolean;
836+
isSameOrigin(other: Origin): boolean;
837+
isSameSite(other: Origin): boolean;
838+
}
839+
840+
declare var Origin: {
841+
prototype: Origin;
842+
new(): Origin;
843+
from(value: any): Origin;
844+
};
845+
834846
/**
835847
* The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
836848
*

baselines/dom.generated.d.ts

Lines changed: 39 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3195,6 +3195,11 @@ interface WindowPostMessageOptions extends StructuredSerializeOptions {
31953195
targetOrigin?: string;
31963196
}
31973197

3198+
interface WorkerAndParameters {
3199+
type?: RTCRtpScriptTransformType;
3200+
worker: Worker;
3201+
}
3202+
31983203
interface WorkerOptions {
31993204
credentials?: RequestCredentials;
32003205
name?: string;
@@ -9299,7 +9304,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
92999304
*/
93009305
vectorEffect: string;
93019306
/**
9302-
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
9307+
* The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box.
93039308
*
93049309
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
93059310
*/
@@ -10494,7 +10499,7 @@ interface CanvasRect {
1049410499
*/
1049510500
interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
1049610501
/**
10497-
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context. It might be null if there is no associated <canvas> element.
10502+
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
1049810503
*
1049910504
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
1050010505
*/
@@ -11504,7 +11509,7 @@ declare var DOMException: {
1150411509
*/
1150511510
interface DOMImplementation {
1150611511
/**
11507-
* The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.
11512+
* The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument.
1150811513
*
1150911514
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
1151011515
*/
@@ -13000,13 +13005,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1300013005
*/
1300113006
close(): void;
1300213007
/**
13003-
* The **`Document.createAttribute()`** method creates a new attribute node, and returns it. The object created is a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
13008+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
1300413009
*
1300513010
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)
1300613011
*/
1300713012
createAttribute(localName: string): Attr;
1300813013
/**
13009-
* The **`Document.createAttributeNS()`** method creates a new attribute node with the specified namespace URI and qualified name, and returns it. The object created is a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
13014+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
1301013015
*
1301113016
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)
1301213017
*/
@@ -13030,7 +13035,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1303013035
*/
1303113036
createDocumentFragment(): DocumentFragment;
1303213037
/**
13033-
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
13038+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
1303413039
*
1303513040
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)
1303613041
*/
@@ -13039,7 +13044,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1303913044
createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
1304013045
createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
1304113046
/**
13042-
* Creates an element with the specified namespace URI and qualified name.
13047+
* The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name.
1304313048
*
1304413049
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)
1304513050
*/
@@ -14012,7 +14017,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1401214017
*/
1401314018
setPointerCapture(pointerId: number): void;
1401414019
/**
14015-
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element.
14020+
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute on the given element, removing it if present and adding it if not present.
1401614021
*
1401714022
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
1401814023
*/
@@ -18529,7 +18534,7 @@ interface HTMLIFrameElement extends HTMLElement {
1852918534
*/
1853018535
height: string;
1853118536
/**
18532-
* The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the user agent indicating whether the iframe should be loaded immediately on page load, or only when it is needed.
18537+
* The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the browser indicating whether the iframe should be loaded immediately on page load, or only when it is needed.
1853318538
*
1853418539
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
1853518540
*/
@@ -18672,7 +18677,7 @@ interface HTMLImageElement extends HTMLElement {
1867218677
*/
1867318678
isMap: boolean;
1867418679
/**
18675-
* The **`loading`** property of the HTMLImageElement interface provides a hint to the user agent on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
18680+
* The **`loading`** property of the HTMLImageElement interface provides a hint to the browser on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
1867618681
*
1867718682
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/loading)
1867818683
*/
@@ -26940,6 +26945,18 @@ declare var OffscreenCanvasRenderingContext2D: {
2694026945
new(): OffscreenCanvasRenderingContext2D;
2694126946
};
2694226947

26948+
interface Origin {
26949+
readonly opaque: boolean;
26950+
isSameOrigin(other: Origin): boolean;
26951+
isSameSite(other: Origin): boolean;
26952+
}
26953+
26954+
declare var Origin: {
26955+
prototype: Origin;
26956+
new(): Origin;
26957+
from(value: any): Origin;
26958+
};
26959+
2694326960
/**
2694426961
* The **`OscillatorNode`** interface represents a periodic waveform, such as a sine wave. It is an AudioScheduledSourceNode audio-processing module that causes a specified frequency of a given wave to be created—in effect, a constant tone.
2694526962
*
@@ -27064,7 +27081,9 @@ declare var PageTransitionEvent: {
2706427081
};
2706527082

2706627083
interface PaintTimingMixin {
27084+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/paintTime) */
2706727085
readonly paintTime: DOMHighResTimeStamp;
27086+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/presentationTime) */
2706827087
readonly presentationTime: DOMHighResTimeStamp | null;
2706927088
}
2707027089

@@ -28046,6 +28065,12 @@ interface PerformanceResourceTiming extends PerformanceEntry {
2804628065
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)
2804728066
*/
2804828067
readonly connectStart: DOMHighResTimeStamp;
28068+
/**
28069+
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
28070+
*
28071+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/contentType)
28072+
*/
28073+
readonly contentType: string;
2804928074
/**
2805028075
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
2805128076
*
@@ -29909,7 +29934,7 @@ interface RTCRtpScriptTransform {
2990929934

2991029935
declare var RTCRtpScriptTransform: {
2991129936
prototype: RTCRtpScriptTransform;
29912-
new(worker: Worker, options?: any, transfer?: any[]): RTCRtpScriptTransform;
29937+
new(workerOrWorkerAndParameters: WorkerOrWorkerAndParameters, options?: any, transfer?: any[]): RTCRtpScriptTransform;
2991329938
};
2991429939

2991529940
/**
@@ -34996,7 +35021,7 @@ interface SecurityPolicyViolationEvent extends Event {
3499635021
*/
3499735022
readonly blockedURI: string;
3499835023
/**
34999-
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
35024+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
3500035025
*
3500135026
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
3500235027
*/
@@ -44468,6 +44493,7 @@ type URLPatternInput = string | URLPatternInit;
4446844493
type Uint32List = Uint32Array<ArrayBufferLike> | GLuint[];
4446944494
type VibratePattern = number | number[];
4447044495
type WindowProxy = Window;
44496+
type WorkerOrWorkerAndParameters = Worker | WorkerAndParameters;
4447144497
type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;
4447244498
type AacBitstreamFormat = "aac" | "adts";
4447344499
type AlignSetting = "center" | "end" | "left" | "right" | "start";
@@ -44650,6 +44676,7 @@ type RTCPeerConnectionState = "closed" | "connected" | "connecting" | "disconnec
4465044676
type RTCPriorityType = "high" | "low" | "medium" | "very-low";
4465144677
type RTCQualityLimitationReason = "bandwidth" | "cpu" | "none" | "other";
4465244678
type RTCRtcpMuxPolicy = "require";
44679+
type RTCRtpScriptTransformType = "sframe";
4465344680
type RTCRtpTransceiverDirection = "inactive" | "recvonly" | "sendonly" | "sendrecv" | "stopped";
4465444681
type RTCSctpTransportState = "closed" | "connected" | "connecting";
4465544682
type RTCSdpType = "answer" | "offer" | "pranswer" | "rollback";

baselines/serviceworker.generated.d.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7267,6 +7267,18 @@ declare var OffscreenCanvasRenderingContext2D: {
72677267
new(): OffscreenCanvasRenderingContext2D;
72687268
};
72697269

7270+
interface Origin {
7271+
readonly opaque: boolean;
7272+
isSameOrigin(other: Origin): boolean;
7273+
isSameSite(other: Origin): boolean;
7274+
}
7275+
7276+
declare var Origin: {
7277+
prototype: Origin;
7278+
new(): Origin;
7279+
from(value: any): Origin;
7280+
};
7281+
72707282
/**
72717283
* The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
72727284
*
@@ -7548,6 +7560,12 @@ interface PerformanceResourceTiming extends PerformanceEntry {
75487560
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)
75497561
*/
75507562
readonly connectStart: DOMHighResTimeStamp;
7563+
/**
7564+
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
7565+
*
7566+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/contentType)
7567+
*/
7568+
readonly contentType: string;
75517569
/**
75527570
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
75537571
*
@@ -8490,7 +8508,7 @@ interface SecurityPolicyViolationEvent extends Event {
84908508
*/
84918509
readonly blockedURI: string;
84928510
/**
8493-
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
8511+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
84948512
*
84958513
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
84968514
*/

baselines/sharedworker.generated.d.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6925,6 +6925,18 @@ declare var OffscreenCanvasRenderingContext2D: {
69256925
new(): OffscreenCanvasRenderingContext2D;
69266926
};
69276927

6928+
interface Origin {
6929+
readonly opaque: boolean;
6930+
isSameOrigin(other: Origin): boolean;
6931+
isSameSite(other: Origin): boolean;
6932+
}
6933+
6934+
declare var Origin: {
6935+
prototype: Origin;
6936+
new(): Origin;
6937+
from(value: any): Origin;
6938+
};
6939+
69286940
/**
69296941
* The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
69306942
*
@@ -7206,6 +7218,12 @@ interface PerformanceResourceTiming extends PerformanceEntry {
72067218
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)
72077219
*/
72087220
readonly connectStart: DOMHighResTimeStamp;
7221+
/**
7222+
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
7223+
*
7224+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/contentType)
7225+
*/
7226+
readonly contentType: string;
72097227
/**
72107228
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
72117229
*
@@ -8073,7 +8091,7 @@ interface SecurityPolicyViolationEvent extends Event {
80738091
*/
80748092
readonly blockedURI: string;
80758093
/**
8076-
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
8094+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
80778095
*
80788096
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
80798097
*/

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,18 @@ declare var MessagePort: {
828828
new(): MessagePort;
829829
};
830830

831+
interface Origin {
832+
readonly opaque: boolean;
833+
isSameOrigin(other: Origin): boolean;
834+
isSameSite(other: Origin): boolean;
835+
}
836+
837+
declare var Origin: {
838+
prototype: Origin;
839+
new(): Origin;
840+
from(value: any): Origin;
841+
};
842+
831843
/**
832844
* The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
833845
*

0 commit comments

Comments
 (0)