Skip to content

Commit 5a1ef38

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 1a37a85 commit 5a1ef38

18 files changed

+129
-401
lines changed

baselines/dom.generated.d.ts

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9260,7 +9260,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
92609260
*/
92619261
vectorEffect: string;
92629262
/**
9263-
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
9263+
* The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box.
92649264
*
92659265
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
92669266
*/
@@ -11465,7 +11465,7 @@ declare var DOMException: {
1146511465
*/
1146611466
interface DOMImplementation {
1146711467
/**
11468-
* The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.
11468+
* The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument.
1146911469
*
1147011470
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
1147111471
*/
@@ -12961,13 +12961,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1296112961
*/
1296212962
close(): void;
1296312963
/**
12964-
* 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.
12964+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
1296512965
*
1296612966
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)
1296712967
*/
1296812968
createAttribute(localName: string): Attr;
1296912969
/**
12970-
* 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.
12970+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
1297112971
*
1297212972
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)
1297312973
*/
@@ -12991,7 +12991,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1299112991
*/
1299212992
createDocumentFragment(): DocumentFragment;
1299312993
/**
12994-
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
12994+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
1299512995
*
1299612996
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)
1299712997
*/
@@ -13000,7 +13000,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1300013000
createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
1300113001
createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
1300213002
/**
13003-
* Creates an element with the specified namespace URI and qualified name.
13003+
* The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name.
1300413004
*
1300513005
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)
1300613006
*/
@@ -13973,7 +13973,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1397313973
*/
1397413974
setPointerCapture(pointerId: number): void;
1397513975
/**
13976-
* 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.
13976+
* 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.
1397713977
*
1397813978
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
1397913979
*/
@@ -30010,7 +30010,7 @@ interface RTCSctpTransport extends EventTarget {
3001030010
*
3001130011
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize)
3001230012
*/
30013-
readonly maxMessageSize: number;
30013+
readonly maxMessageSize: number | null;
3001430014
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */
3001530015
onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;
3001630016
/**
@@ -34945,7 +34945,7 @@ interface SecurityPolicyViolationEvent extends Event {
3494534945
*/
3494634946
readonly blockedURI: string;
3494734947
/**
34948-
* 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.
34948+
* 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.
3494934949
*
3495034950
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
3495134951
*/
@@ -41168,12 +41168,6 @@ declare var WebTransportBidirectionalStream: {
4116841168
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
4116941169
*/
4117041170
interface WebTransportDatagramDuplexStream {
41171-
/**
41172-
* The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
41173-
*
41174-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)
41175-
*/
41176-
incomingHighWaterMark: number;
4117741171
/**
4117841172
* The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.
4117941173
*
@@ -41186,12 +41180,6 @@ interface WebTransportDatagramDuplexStream {
4118641180
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)
4118741181
*/
4118841182
readonly maxDatagramSize: number;
41189-
/**
41190-
* The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
41191-
*
41192-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)
41193-
*/
41194-
outgoingHighWaterMark: number;
4119541183
/**
4119641184
* The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
4119741185
*

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8490,7 +8490,7 @@ interface SecurityPolicyViolationEvent extends Event {
84908490
*/
84918491
readonly blockedURI: string;
84928492
/**
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.
8493+
* 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.
84948494
*
84958495
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
84968496
*/
@@ -12291,12 +12291,6 @@ declare var WebTransportBidirectionalStream: {
1229112291
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
1229212292
*/
1229312293
interface WebTransportDatagramDuplexStream {
12294-
/**
12295-
* The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
12296-
*
12297-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)
12298-
*/
12299-
incomingHighWaterMark: number;
1230012294
/**
1230112295
* The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.
1230212296
*
@@ -12309,12 +12303,6 @@ interface WebTransportDatagramDuplexStream {
1230912303
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)
1231012304
*/
1231112305
readonly maxDatagramSize: number;
12312-
/**
12313-
* The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
12314-
*
12315-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)
12316-
*/
12317-
outgoingHighWaterMark: number;
1231812306
/**
1231912307
* The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
1232012308
*

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8073,7 +8073,7 @@ interface SecurityPolicyViolationEvent extends Event {
80738073
*/
80748074
readonly blockedURI: string;
80758075
/**
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.
8076+
* 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.
80778077
*
80788078
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
80798079
*/
@@ -11834,12 +11834,6 @@ declare var WebTransportBidirectionalStream: {
1183411834
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
1183511835
*/
1183611836
interface WebTransportDatagramDuplexStream {
11837-
/**
11838-
* The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
11839-
*
11840-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)
11841-
*/
11842-
incomingHighWaterMark: number;
1184311837
/**
1184411838
* The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.
1184511839
*
@@ -11852,12 +11846,6 @@ interface WebTransportDatagramDuplexStream {
1185211846
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)
1185311847
*/
1185411848
readonly maxDatagramSize: number;
11855-
/**
11856-
* The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
11857-
*
11858-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)
11859-
*/
11860-
outgoingHighWaterMark: number;
1186111849
/**
1186211850
* The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
1186311851
*

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

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9250,7 +9250,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
92509250
*/
92519251
vectorEffect: string;
92529252
/**
9253-
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
9253+
* The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box.
92549254
*
92559255
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
92569256
*/
@@ -11454,7 +11454,7 @@ declare var DOMException: {
1145411454
*/
1145511455
interface DOMImplementation {
1145611456
/**
11457-
* The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.
11457+
* The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument.
1145811458
*
1145911459
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
1146011460
*/
@@ -12950,13 +12950,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1295012950
*/
1295112951
close(): void;
1295212952
/**
12953-
* 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.
12953+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
1295412954
*
1295512955
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)
1295612956
*/
1295712957
createAttribute(localName: string): Attr;
1295812958
/**
12959-
* 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.
12959+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
1296012960
*
1296112961
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)
1296212962
*/
@@ -12980,7 +12980,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1298012980
*/
1298112981
createDocumentFragment(): DocumentFragment;
1298212982
/**
12983-
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
12983+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
1298412984
*
1298512985
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)
1298612986
*/
@@ -12989,7 +12989,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1298912989
createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
1299012990
createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
1299112991
/**
12992-
* Creates an element with the specified namespace URI and qualified name.
12992+
* The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name.
1299312993
*
1299412994
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)
1299512995
*/
@@ -13960,7 +13960,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1396013960
*/
1396113961
setPointerCapture(pointerId: number): void;
1396213962
/**
13963-
* 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.
13963+
* 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.
1396413964
*
1396513965
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
1396613966
*/
@@ -29986,7 +29986,7 @@ interface RTCSctpTransport extends EventTarget {
2998629986
*
2998729987
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize)
2998829988
*/
29989-
readonly maxMessageSize: number;
29989+
readonly maxMessageSize: number | null;
2999029990
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */
2999129991
onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;
2999229992
/**
@@ -34920,7 +34920,7 @@ interface SecurityPolicyViolationEvent extends Event {
3492034920
*/
3492134921
readonly blockedURI: string;
3492234922
/**
34923-
* 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.
34923+
* 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.
3492434924
*
3492534925
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
3492634926
*/
@@ -41142,12 +41142,6 @@ declare var WebTransportBidirectionalStream: {
4114241142
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
4114341143
*/
4114441144
interface WebTransportDatagramDuplexStream {
41145-
/**
41146-
* The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
41147-
*
41148-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)
41149-
*/
41150-
incomingHighWaterMark: number;
4115141145
/**
4115241146
* The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.
4115341147
*
@@ -41160,12 +41154,6 @@ interface WebTransportDatagramDuplexStream {
4116041154
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)
4116141155
*/
4116241156
readonly maxDatagramSize: number;
41163-
/**
41164-
* The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
41165-
*
41166-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)
41167-
*/
41168-
outgoingHighWaterMark: number;
4116941157
/**
4117041158
* The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
4117141159
*

0 commit comments

Comments
 (0)