From 5a1ef385fee313528928edccefb57a3d6604c666 Mon Sep 17 00:00:00 2001 From: orta <49038+orta@users.noreply.github.com> Date: Thu, 26 Mar 2026 08:27:30 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Update=20core=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baselines/dom.generated.d.ts | 30 +-- baselines/serviceworker.generated.d.ts | 14 +- baselines/sharedworker.generated.d.ts | 14 +- baselines/ts5.5/dom.generated.d.ts | 30 +-- baselines/ts5.5/serviceworker.generated.d.ts | 14 +- baselines/ts5.5/sharedworker.generated.d.ts | 14 +- baselines/ts5.5/webworker.generated.d.ts | 14 +- baselines/ts5.6/dom.generated.d.ts | 30 +-- baselines/ts5.6/serviceworker.generated.d.ts | 14 +- baselines/ts5.6/sharedworker.generated.d.ts | 14 +- baselines/ts5.6/webworker.generated.d.ts | 14 +- baselines/ts5.9/dom.generated.d.ts | 30 +-- baselines/ts5.9/serviceworker.generated.d.ts | 14 +- baselines/ts5.9/sharedworker.generated.d.ts | 14 +- baselines/ts5.9/webworker.generated.d.ts | 14 +- baselines/webworker.generated.d.ts | 14 +- inputfiles/mdn.json | 218 ++++++------------- package-lock.json | 24 +- 18 files changed, 129 insertions(+), 401 deletions(-) diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 67df663b2..d0eae37d1 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -9260,7 +9260,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ vectorEffect: string; /** - * The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box. + * The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align) */ @@ -11465,7 +11465,7 @@ declare var DOMException: { */ interface DOMImplementation { /** - * The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument. + * The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument) */ @@ -12961,13 +12961,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ close(): void; /** - * 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. + * The **`createAttribute()`** method of the Document interface creates a new attribute node. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute) */ createAttribute(localName: string): Attr; /** - * 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. + * The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS) */ @@ -12991,7 +12991,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ createDocumentFragment(): DocumentFragment; /** - * In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized. + * The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement) */ @@ -13000,7 +13000,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve createElement(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K]; createElement(tagName: string, options?: ElementCreationOptions): HTMLElement; /** - * Creates an element with the specified namespace URI and qualified name. + * The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS) */ @@ -13973,7 +13973,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp */ setPointerCapture(pointerId: number): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute) */ @@ -30010,7 +30010,7 @@ interface RTCSctpTransport extends EventTarget { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */ - readonly maxMessageSize: number; + readonly maxMessageSize: number | null; /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */ onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null; /** @@ -34945,7 +34945,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -41168,12 +41168,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -41186,12 +41180,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/serviceworker.generated.d.ts b/baselines/serviceworker.generated.d.ts index d1f341b8f..161d1d5e2 100644 --- a/baselines/serviceworker.generated.d.ts +++ b/baselines/serviceworker.generated.d.ts @@ -8490,7 +8490,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -12291,12 +12291,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -12309,12 +12303,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/sharedworker.generated.d.ts b/baselines/sharedworker.generated.d.ts index 27b210acd..dbca83fd4 100644 --- a/baselines/sharedworker.generated.d.ts +++ b/baselines/sharedworker.generated.d.ts @@ -8073,7 +8073,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -11834,12 +11834,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -11852,12 +11846,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index fcab6f0c9..c258ef901 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -9250,7 +9250,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ vectorEffect: string; /** - * The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box. + * The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align) */ @@ -11454,7 +11454,7 @@ declare var DOMException: { */ interface DOMImplementation { /** - * The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument. + * The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument) */ @@ -12950,13 +12950,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ close(): void; /** - * 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. + * The **`createAttribute()`** method of the Document interface creates a new attribute node. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute) */ createAttribute(localName: string): Attr; /** - * 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. + * The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS) */ @@ -12980,7 +12980,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ createDocumentFragment(): DocumentFragment; /** - * In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized. + * The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement) */ @@ -12989,7 +12989,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve createElement(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K]; createElement(tagName: string, options?: ElementCreationOptions): HTMLElement; /** - * Creates an element with the specified namespace URI and qualified name. + * The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS) */ @@ -13960,7 +13960,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp */ setPointerCapture(pointerId: number): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute) */ @@ -29986,7 +29986,7 @@ interface RTCSctpTransport extends EventTarget { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */ - readonly maxMessageSize: number; + readonly maxMessageSize: number | null; /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */ onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null; /** @@ -34920,7 +34920,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -41142,12 +41142,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -41160,12 +41154,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.5/serviceworker.generated.d.ts b/baselines/ts5.5/serviceworker.generated.d.ts index ae05b3ddf..0d4933f6e 100644 --- a/baselines/ts5.5/serviceworker.generated.d.ts +++ b/baselines/ts5.5/serviceworker.generated.d.ts @@ -8487,7 +8487,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -12288,12 +12288,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -12306,12 +12300,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.5/sharedworker.generated.d.ts b/baselines/ts5.5/sharedworker.generated.d.ts index 227dc54d1..8e2faba9a 100644 --- a/baselines/ts5.5/sharedworker.generated.d.ts +++ b/baselines/ts5.5/sharedworker.generated.d.ts @@ -8070,7 +8070,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -11831,12 +11831,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -11849,12 +11843,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.5/webworker.generated.d.ts b/baselines/ts5.5/webworker.generated.d.ts index 3298efb4c..47abe0e4e 100644 --- a/baselines/ts5.5/webworker.generated.d.ts +++ b/baselines/ts5.5/webworker.generated.d.ts @@ -9610,7 +9610,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -13743,12 +13743,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -13761,12 +13755,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 628f2f92d..c30d25b95 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -9257,7 +9257,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ vectorEffect: string; /** - * The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box. + * The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align) */ @@ -11462,7 +11462,7 @@ declare var DOMException: { */ interface DOMImplementation { /** - * The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument. + * The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument) */ @@ -12958,13 +12958,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ close(): void; /** - * 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. + * The **`createAttribute()`** method of the Document interface creates a new attribute node. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute) */ createAttribute(localName: string): Attr; /** - * 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. + * The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS) */ @@ -12988,7 +12988,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ createDocumentFragment(): DocumentFragment; /** - * In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized. + * The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement) */ @@ -12997,7 +12997,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve createElement(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K]; createElement(tagName: string, options?: ElementCreationOptions): HTMLElement; /** - * Creates an element with the specified namespace URI and qualified name. + * The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS) */ @@ -13970,7 +13970,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp */ setPointerCapture(pointerId: number): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute) */ @@ -30007,7 +30007,7 @@ interface RTCSctpTransport extends EventTarget { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */ - readonly maxMessageSize: number; + readonly maxMessageSize: number | null; /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */ onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null; /** @@ -34942,7 +34942,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -41165,12 +41165,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -41183,12 +41177,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.6/serviceworker.generated.d.ts b/baselines/ts5.6/serviceworker.generated.d.ts index ae05b3ddf..0d4933f6e 100644 --- a/baselines/ts5.6/serviceworker.generated.d.ts +++ b/baselines/ts5.6/serviceworker.generated.d.ts @@ -8487,7 +8487,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -12288,12 +12288,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -12306,12 +12300,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.6/sharedworker.generated.d.ts b/baselines/ts5.6/sharedworker.generated.d.ts index 227dc54d1..8e2faba9a 100644 --- a/baselines/ts5.6/sharedworker.generated.d.ts +++ b/baselines/ts5.6/sharedworker.generated.d.ts @@ -8070,7 +8070,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -11831,12 +11831,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -11849,12 +11843,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.6/webworker.generated.d.ts b/baselines/ts5.6/webworker.generated.d.ts index 3298efb4c..47abe0e4e 100644 --- a/baselines/ts5.6/webworker.generated.d.ts +++ b/baselines/ts5.6/webworker.generated.d.ts @@ -9610,7 +9610,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -13743,12 +13743,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -13761,12 +13755,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.9/dom.generated.d.ts b/baselines/ts5.9/dom.generated.d.ts index fca24b564..a893951a5 100644 --- a/baselines/ts5.9/dom.generated.d.ts +++ b/baselines/ts5.9/dom.generated.d.ts @@ -9257,7 +9257,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase { */ vectorEffect: string; /** - * The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box. + * The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box. * * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align) */ @@ -11462,7 +11462,7 @@ declare var DOMException: { */ interface DOMImplementation { /** - * The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument. + * The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument) */ @@ -12958,13 +12958,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ close(): void; /** - * 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. + * The **`createAttribute()`** method of the Document interface creates a new attribute node. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute) */ createAttribute(localName: string): Attr; /** - * 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. + * The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS) */ @@ -12988,7 +12988,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve */ createDocumentFragment(): DocumentFragment; /** - * In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized. + * The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement) */ @@ -12997,7 +12997,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve createElement(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K]; createElement(tagName: string, options?: ElementCreationOptions): HTMLElement; /** - * Creates an element with the specified namespace URI and qualified name. + * The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS) */ @@ -13970,7 +13970,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp */ setPointerCapture(pointerId: number): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute) */ @@ -30007,7 +30007,7 @@ interface RTCSctpTransport extends EventTarget { * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */ - readonly maxMessageSize: number; + readonly maxMessageSize: number | null; /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */ onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null; /** @@ -34942,7 +34942,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -41165,12 +41165,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -41183,12 +41177,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.9/serviceworker.generated.d.ts b/baselines/ts5.9/serviceworker.generated.d.ts index 138cf77bd..6d2a52b8c 100644 --- a/baselines/ts5.9/serviceworker.generated.d.ts +++ b/baselines/ts5.9/serviceworker.generated.d.ts @@ -8487,7 +8487,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -12288,12 +12288,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -12306,12 +12300,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.9/sharedworker.generated.d.ts b/baselines/ts5.9/sharedworker.generated.d.ts index 281c12ff4..64b694200 100644 --- a/baselines/ts5.9/sharedworker.generated.d.ts +++ b/baselines/ts5.9/sharedworker.generated.d.ts @@ -8070,7 +8070,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -11831,12 +11831,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -11849,12 +11843,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/ts5.9/webworker.generated.d.ts b/baselines/ts5.9/webworker.generated.d.ts index f72c42764..0b370af19 100644 --- a/baselines/ts5.9/webworker.generated.d.ts +++ b/baselines/ts5.9/webworker.generated.d.ts @@ -9610,7 +9610,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -13743,12 +13743,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -13761,12 +13755,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/baselines/webworker.generated.d.ts b/baselines/webworker.generated.d.ts index 66b300868..12d33f5e1 100644 --- a/baselines/webworker.generated.d.ts +++ b/baselines/webworker.generated.d.ts @@ -9613,7 +9613,7 @@ interface SecurityPolicyViolationEvent extends Event { */ readonly blockedURI: string; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber) */ @@ -13746,12 +13746,6 @@ declare var WebTransportBidirectionalStream: { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream) */ interface WebTransportDatagramDuplexStream { - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark) - */ - incomingHighWaterMark: number; /** * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds. * @@ -13764,12 +13758,6 @@ interface WebTransportDatagramDuplexStream { * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize) */ readonly maxDatagramSize: number; - /** - * 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. - * - * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark) - */ - outgoingHighWaterMark: number; /** * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds. * diff --git a/inputfiles/mdn.json b/inputfiles/mdn.json index cc3b5d2ef..619adb371 100644 --- a/inputfiles/mdn.json +++ b/inputfiles/mdn.json @@ -3800,69 +3800,64 @@ "summary": "The CryptoKeyPair dictionary of the Web Crypto API represents a key pair for an asymmetric cryptography algorithm, also known as a public-key algorithm." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport", "pageType": "web-api-interface", - "summary": "The CSPViolationReportBody interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report." + "summary": "The CSPViolationReport dictionary of the Reporting API represents a report that is generated when a document violates its Content Security Policy (CSP)." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/blockedURL", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/blockedURL", "pageType": "web-api-instance-property", - "summary": "The blockedURL read-only property of the CSPViolationReportBody interface is a string value that represents the resource that was blocked because it violates a Content Security Policy (CSP)." + "summary": "The blockedURL property of the CSPViolationReport dictionary is a string value that represents the resource that was blocked because it violates a Content Security Policy (CSP)." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/columnNumber", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/columnNumber", "pageType": "web-api-instance-property", - "summary": "The columnNumber read-only property of the CSPViolationReportBody interface indicates the column number in the source file that triggered the Content Security Policy (CSP) violation." + "summary": "The columnNumber property of the CSPViolationReport dictionary indicates the character position in the source file line that triggered the Content Security Policy (CSP) violation." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/disposition", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/disposition", "pageType": "web-api-instance-property", - "summary": "The disposition read-only property of the CSPViolationReportBody interface indicates whether the user agent is configured to enforce Content Security Policy (CSP) violations or only report them." + "summary": "The disposition property of the CSPViolationReport dictionary indicates whether the user agent is configured to enforce Content Security Policy (CSP) violations or only report them." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/documentURL", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/documentURL", "pageType": "web-api-instance-property", - "summary": "The documentURL read-only property of the CSPViolationReportBody interface is a string that represents the URL of the document or worker that violated the Content Security Policy (CSP)." + "summary": "The documentURL property of the CSPViolationReport dictionary is a string that represents the URL of the document or worker that violated the Content Security Policy (CSP)." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/effectiveDirective", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/effectiveDirective", "pageType": "web-api-instance-property", - "summary": "The effectiveDirective read-only property of the CSPViolationReportBody interface is a string that represents the effective Content Security Policy (CSP) directive that was violated." + "summary": "The effectiveDirective property of the CSPViolationReport dictionary is a string that represents the effective Content Security Policy (CSP) directive that was violated." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/lineNumber", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/lineNumber", "pageType": "web-api-instance-property", - "summary": "The lineNumber read-only property of the CSPViolationReportBody interface indicates the line number in the source file that triggered the Content Security Policy (CSP) violation." + "summary": "The lineNumber property of the CSPViolationReport dictionary indicates the line number in the source file where the Content Security Policy (CSP) violation was triggered." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/originalPolicy", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/originalPolicy", "pageType": "web-api-instance-property", - "summary": "The originalPolicy read-only property of the CSPViolationReportBody interface is a string that represents the Content Security Policy (CSP) whose enforcement uncovered the violation." + "summary": "The originalPolicy property of the CSPViolationReport dictionary is a string that represents the Content Security Policy (CSP) whose enforcement uncovered the violation." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/referrer", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/referrer", "pageType": "web-api-instance-property", - "summary": "The referrer read-only property of the CSPViolationReportBody interface is a string that represents the URL of the referring page of the resource who's Content Security Policy (CSP) was violated." + "summary": "The referrer property of the CSPViolationReport dictionary is a string that represents the URL of the referring page of the resource who's Content Security Policy (CSP) was violated." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/sample", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/sample", "pageType": "web-api-instance-property", - "summary": "The sample read-only property of the CSPViolationReportBody interface is a string that contains a part of the resource that violated the Content Security Policy (CSP)." + "summary": "The sample property of the CSPViolationReport dictionary is a string that contains a part of the resource that violated the Content Security Policy (CSP)." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/sourceFile", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/sourceFile", "pageType": "web-api-instance-property", - "summary": "The sourceFile read-only property of the CSPViolationReportBody interface indicates the URL of the source file that violated the Content Security Policy (CSP)." + "summary": "The sourceFile property of the CSPViolationReport dictionary indicates the URL of the source file that violated the Content Security Policy (CSP)." }, { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/statusCode", + "mdn_url": "/en-US/docs/Web/API/CSPViolationReport/statusCode", "pageType": "web-api-instance-property", - "summary": "The statusCode read-only property of the CSPViolationReportBody interface is a number representing the HTTP status code of the response to the request that triggered a Content Security Policy (CSP) violation (when loading a window or worker)." - }, - { - "mdn_url": "/en-US/docs/Web/API/CSPViolationReportBody/toJSON", - "pageType": "web-api-instance-method", - "summary": "The toJSON() method of the CSPViolationReportBody interface is a serializer, which returns a JSON representation of the CSPViolationReportBody object." + "summary": "The statusCode property of the CSPViolationReport dictionary is a number representing the HTTP status code of the response to the request that triggered a Content Security Policy (CSP) violation (when loading a window or worker)." }, { "mdn_url": "/en-US/docs/Web/API/CSS", @@ -4597,7 +4592,7 @@ { "mdn_url": "/en-US/docs/Web/API/CSSNumericValue/to", "pageType": "web-api-instance-method", - "summary": "The to() method of the\nCSSNumericValue interface converts a numeric value from one unit to\nanother." + "summary": "The to() method of the CSSNumericValue interface converts a numeric value from one unit to another." }, { "mdn_url": "/en-US/docs/Web/API/CSSNumericValue/toSum", @@ -5362,7 +5357,7 @@ { "mdn_url": "/en-US/docs/Web/API/CustomElementRegistry/whenDefined", "pageType": "web-api-instance-method", - "summary": "The whenDefined() method of the\nCustomElementRegistry interface returns a Promise that\nresolves when the named element is defined." + "summary": "The whenDefined() method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined." }, { "mdn_url": "/en-US/docs/Web/API/CustomEvent", @@ -5680,44 +5675,9 @@ "summary": "The updateInkTrailStartPoint() method of the DelegatedInkTrailPresenter interface indicates which PointerEvent was used as the last rendering point for the current frame, allowing the OS-level compositor to render a delegated ink trail ahead of the next pointer event being dispatched." }, { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody", + "mdn_url": "/en-US/docs/Web/API/DeprecationReport", "pageType": "web-api-interface", - "summary": "The DeprecationReportBody interface of the Reporting API represents the body of a deprecation report." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/anticipatedRemoval", - "pageType": "web-api-instance-property", - "summary": "The anticipatedRemoval read-only property of the DeprecationReportBody interface returns the date that the browser version which removes the feature will ship. This value can be used to prioritize warnings. If this property returns null because the date is unknown, then the deprecation should be considered low priority." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/columnNumber", - "pageType": "web-api-instance-property", - "summary": "The columnNumber read-only property of the DeprecationReportBody interface returns the line in the source file in which the deprecated feature was used." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/id", - "pageType": "web-api-instance-property", - "summary": "The id read-only property of the DeprecationReportBody interface returns a string representing the feature or API that is deprecated. This can be used to group or count related reports." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/lineNumber", - "pageType": "web-api-instance-property", - "summary": "The lineNumber read-only property of the DeprecationReportBody interface returns the line in the source file in which the deprecated feature was used." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/message", - "pageType": "web-api-instance-property", - "summary": "The message read-only property of the DeprecationReportBody interface returns a human-readable description of the deprecation. This typically matches the message a browser will display in its DevTools console regarding a deprecated feature." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/sourceFile", - "pageType": "web-api-instance-property", - "summary": "The sourceFile read-only property of the DeprecationReportBody interface returns the path to the source file where the deprecated feature was used." - }, - { - "mdn_url": "/en-US/docs/Web/API/DeprecationReportBody/toJSON", - "pageType": "web-api-instance-method", - "summary": "The toJSON() method of the DeprecationReportBody interface is a serializer, and returns a JSON representation of the InterventionReportBody object." + "summary": "The DeprecationReport dictionary of the Reporting API represents a deprecation report." }, { "mdn_url": "/en-US/docs/Web/API/Device_Memory_API", @@ -6057,12 +6017,12 @@ { "mdn_url": "/en-US/docs/Web/API/Document/createAttribute", "pageType": "web-api-instance-method", - "summary": "The Document.createAttribute() method creates a new\nattribute node, and returns it. The object created is a node implementing the\nAttr interface. The DOM does not enforce what sort of attributes can be\nadded to a particular element in this manner." + "summary": "The createAttribute() method of the Document interface creates a new attribute node." }, { "mdn_url": "/en-US/docs/Web/API/Document/createAttributeNS", "pageType": "web-api-instance-method", - "summary": "The Document.createAttributeNS() method creates a new attribute node\nwith the specified namespace URI and qualified name, and returns it.\nThe object created is a node implementing the\nAttr interface. The DOM does not enforce what sort of attributes can be\nadded to a particular element in this manner." + "summary": "The createAttributeNS() method of the Document interface creates a new attribute node with the specified namespace URI and qualified name." }, { "mdn_url": "/en-US/docs/Web/API/Document/createCDATASection", @@ -6082,12 +6042,12 @@ { "mdn_url": "/en-US/docs/Web/API/Document/createElement", "pageType": "web-api-instance-method", - "summary": "In an HTML document, the document.createElement() method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized." + "summary": "The createElement() method of the Document interface creates a new HTMLElement that has the specified localName." }, { "mdn_url": "/en-US/docs/Web/API/Document/createElementNS", "pageType": "web-api-instance-method", - "summary": "Creates an element with the specified namespace URI and qualified name." + "summary": "The createElementNS() method of the Document interface creates a new element with the specified namespace URI and qualified name." }, { "mdn_url": "/en-US/docs/Web/API/Document/createEvent", @@ -6852,7 +6812,7 @@ { "mdn_url": "/en-US/docs/Web/API/DOMImplementation/createDocument", "pageType": "web-api-instance-method", - "summary": "The DOMImplementation.createDocument() method creates and\nreturns an XMLDocument." + "summary": "The createDocument() method of the DOMImplementation interface creates and returns an XMLDocument." }, { "mdn_url": "/en-US/docs/Web/API/DOMImplementation/createDocumentType", @@ -8612,7 +8572,7 @@ { "mdn_url": "/en-US/docs/Web/API/Element/toggleAttribute", "pageType": "web-api-instance-method", - "summary": "The toggleAttribute() method of the\nElement interface toggles a Boolean attribute (removing it if it is\npresent and adding it if it is not present) on the given element." + "summary": "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." }, { "mdn_url": "/en-US/docs/Web/API/Element/touchcancel_event", @@ -12324,6 +12284,11 @@ "pageType": "web-api-interface", "summary": "The HTMLAnchorElement interface represents hyperlink elements and provides special properties and methods (beyond those of the regular HTMLElement object interface that they inherit from) for manipulating the layout and presentation of such elements. This interface corresponds to element; not to be confused with , which is represented by HTMLLinkElement." }, + { + "mdn_url": "/en-US/docs/Web/API/HTMLAnchorElement/attributionSourceId", + "pageType": "web-api-instance-property", + "summary": "The attributionSourceId property of the HTMLAnchorElement interface gets and sets the attributionsourceid HTML attribute on an element." + }, { "mdn_url": "/en-US/docs/Web/API/HTMLAnchorElement/attributionSrc", "pageType": "web-api-instance-property", @@ -14399,6 +14364,11 @@ "pageType": "web-api-instance-method", "summary": "The HTMLMediaElement.fastSeek() method quickly seeks the\nmedia to the new time with precision tradeoff." }, + { + "mdn_url": "/en-US/docs/Web/API/HTMLMediaElement/getStartDate", + "pageType": "web-api-instance-method", + "summary": "The getStartDate() method of the HTMLMediaElement interface returns a new Date object representing the real-world date and time corresponding to the beginning of the media." + }, { "mdn_url": "/en-US/docs/Web/API/HTMLMediaElement/load", "pageType": "web-api-instance-method", @@ -14929,6 +14899,11 @@ "pageType": "web-api-instance-property", "summary": "The read-only htmlFor property of the HTMLOutputElement returns a live DOMTokenList object containing a list of ids of those elements contributing input values to (or otherwise affected) the calculation. It reflects the element's for content attribute." }, + { + "mdn_url": "/en-US/docs/Web/API/HTMLOutputElement/HTMLOutputElement", + "pageType": "web-api-constructor", + "summary": "The HTMLOutputElement() constructor creates a new HTMLOutputElement object." + }, { "mdn_url": "/en-US/docs/Web/API/HTMLOutputElement/labels", "pageType": "web-api-instance-property", @@ -16990,9 +16965,9 @@ "summary": "The InstallEvent() constructor creates a new InstallEvent object." }, { - "mdn_url": "/en-US/docs/Web/API/IntegrityViolationReportBody", + "mdn_url": "/en-US/docs/Web/API/IntegrityViolationReport", "pageType": "web-api-interface", - "summary": "The IntegrityViolationReportBody dictionary is an extension of the Reporting API that represents the body of an Integrity Policy violation report." + "summary": "The IntegrityViolationReport dictionary of the Reporting API represents a report that is generated when a document violates its Integrity Policy." }, { "mdn_url": "/en-US/docs/Web/API/InterestEvent", @@ -17125,39 +17100,9 @@ "summary": "The time read-only property of the IntersectionObserverEntry interface is a DOMHighResTimeStamp that indicates the time at which the intersection change occurred relative to the time at which the document was created." }, { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody", + "mdn_url": "/en-US/docs/Web/API/InterventionReport", "pageType": "web-api-interface", - "summary": "The InterventionReportBody interface of the Reporting API represents the body of an intervention report." - }, - { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody/columnNumber", - "pageType": "web-api-instance-property", - "summary": "The columnNumber read-only property of the InterventionReportBody interface returns the line in the source file in which the intervention occurred." - }, - { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody/id", - "pageType": "web-api-instance-property", - "summary": "The id read-only property of the InterventionReportBody interface returns a string identifying the intervention that generated the report. This can be used to group reports." - }, - { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody/lineNumber", - "pageType": "web-api-instance-property", - "summary": "The lineNumber read-only property of the InterventionReportBody interface returns the line in the source file in which the intervention occurred." - }, - { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody/message", - "pageType": "web-api-instance-property", - "summary": "The message read-only property of the InterventionReportBody interface returns a human-readable description of the intervention, including information such as how the intervention could be avoided. This typically matches the message a browser will display in its DevTools console when an intervention is imposed, if one is available." - }, - { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody/sourceFile", - "pageType": "web-api-instance-property", - "summary": "The sourceFile read-only property of the InterventionReportBody interface returns the path to the source file where the intervention occurred." - }, - { - "mdn_url": "/en-US/docs/Web/API/InterventionReportBody/toJSON", - "pageType": "web-api-instance-method", - "summary": "The toJSON() method of the InterventionReportBody interface is a serializer, and returns a JSON representation of the InterventionReportBody object." + "summary": "The InterventionReport dictionary of the Reporting API represents an intervention report." }, { "mdn_url": "/en-US/docs/Web/API/Invoker_Commands_API", @@ -20557,7 +20502,7 @@ { "mdn_url": "/en-US/docs/Web/API/Node/compareDocumentPosition", "pageType": "web-api-instance-method", - "summary": "The compareDocumentPosition() method of the Node interface\nreports the position of its argument node relative to the node on which it is called." + "summary": "The compareDocumentPosition() method of the Node interface reports the position of its argument node relative to the node on which it is called." }, { "mdn_url": "/en-US/docs/Web/API/Node/contains", @@ -20834,6 +20779,11 @@ "pageType": "web-api-static-property", "summary": "The maxActions read-only static property of the\nNotification interface returns the maximum number of actions supported by\nthe device and the User Agent. Effectively, this is the maximum number of elements in\nNotification.actions array which will be respected by the User Agent." }, + { + "mdn_url": "/en-US/docs/Web/API/Notification/navigate", + "pageType": "web-api-instance-property", + "summary": "The navigate read-only property of the Notification interface contains the URL the user agent will navigate to when the user activates the notification." + }, { "mdn_url": "/en-US/docs/Web/API/Notification/Notification", "pageType": "web-api-constructor", @@ -20912,12 +20862,12 @@ { "mdn_url": "/en-US/docs/Web/API/Notifications_API", "pageType": "web-api-overview", - "summary": "The Notifications API allows web pages to control the display of system notifications to the end user. These are outside the top-level browsing context viewport, so therefore can be displayed even when the user has switched tabs or moved to a different app. The API is designed to be compatible with existing notification systems, across different platforms." + "summary": "The Notifications API allows web pages to control the display of system notifications to the end user.\nThese are outside the top-level browsing context viewport, so therefore can be displayed even when the user has switched tabs or moved to a different app.\nThe API is designed to be compatible with existing notification systems, across different platforms." }, { "mdn_url": "/en-US/docs/Web/API/Notifications_API/Using_the_Notifications_API", "pageType": "guide", - "summary": "The Notifications API lets a web page or app send notifications that are displayed outside the page at the system level; this lets web apps send information to a user even if the application is idle or in the background. This article looks at the basics of using this API in your own apps." + "summary": "The Notifications API lets a web page or app send notifications that are displayed outside the page at the system level; this lets web apps send information to a user even if the application is idle or in the background.\nThis article looks at the basics of using this API in your own apps." }, { "mdn_url": "/en-US/docs/Web/API/NotRestoredReasonDetails", @@ -23929,36 +23879,6 @@ "pageType": "web-api-instance-method", "summary": "The watchAvailability() method of the RemotePlayback interface watches the list of available remote playback devices and returns a Promise that resolves with the callbackId of a remote playback device." }, - { - "mdn_url": "/en-US/docs/Web/API/Report", - "pageType": "web-api-interface", - "summary": "The Report interface of the Reporting API represents a single report." - }, - { - "mdn_url": "/en-US/docs/Web/API/Report/body", - "pageType": "web-api-instance-property", - "summary": "The body read-only property of the Report\ninterface returns the body of the report, which is a ReportBody object\ncontaining the detailed report information." - }, - { - "mdn_url": "/en-US/docs/Web/API/Report/type", - "pageType": "web-api-instance-property", - "summary": "The type read-only property of the Report\ninterface returns the type of report generated, e.g., deprecation or\nintervention." - }, - { - "mdn_url": "/en-US/docs/Web/API/Report/url", - "pageType": "web-api-instance-property", - "summary": "The url read-only property of the Report\ninterface returns the URL of the document that generated the report." - }, - { - "mdn_url": "/en-US/docs/Web/API/ReportBody", - "pageType": "web-api-interface", - "summary": "The ReportBody interface of the Reporting API represents the body of a report. Individual report types inherit from this interface, adding specific attributes relevant to the particular report." - }, - { - "mdn_url": "/en-US/docs/Web/API/ReportBody/toJSON", - "pageType": "web-api-instance-method", - "summary": "The toJSON() method of the ReportBody interface is a serializer, and returns a JSON representation of the ReportBody object." - }, { "mdn_url": "/en-US/docs/Web/API/Reporting_API", "pageType": "web-api-overview", @@ -23972,22 +23892,22 @@ { "mdn_url": "/en-US/docs/Web/API/ReportingObserver/disconnect", "pageType": "web-api-instance-method", - "summary": "The disconnect() method of the\nReportingObserver interface stops a reporting observer that had\npreviously started observing from collecting reports." + "summary": "The disconnect() method of the ReportingObserver interface stops a reporting observer that had previously started observing from collecting reports." }, { "mdn_url": "/en-US/docs/Web/API/ReportingObserver/observe", "pageType": "web-api-instance-method", - "summary": "The observe() method of the\nReportingObserver interface instructs a reporting observer to start\ncollecting reports in its report queue." + "summary": "The observe() method of the ReportingObserver interface instructs a reporting observer to start collecting reports in its report queue." }, { "mdn_url": "/en-US/docs/Web/API/ReportingObserver/ReportingObserver", "pageType": "web-api-constructor", - "summary": "The ReportingObserver() constructor of the Reporting API creates a new\nReportingObserver object instance, which can be used to collect and\naccess reports." + "summary": "The ReportingObserver() constructor of the Reporting API creates a new ReportingObserver object instance, which can be used to collect and access reports." }, { "mdn_url": "/en-US/docs/Web/API/ReportingObserver/takeRecords", "pageType": "web-api-instance-method", - "summary": "The takeRecords() method of the\nReportingObserver interface returns the current list of reports contained\nin the observer's report queue, and empties the queue." + "summary": "The takeRecords() method of the ReportingObserver interface returns the current list of reports contained in the observer's report queue, and empties the queue." }, { "mdn_url": "/en-US/docs/Web/API/Request", @@ -26932,7 +26852,7 @@ { "mdn_url": "/en-US/docs/Web/API/SecurityPolicyViolationEvent/columnNumber", "pageType": "web-api-instance-property", - "summary": "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." + "summary": "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." }, { "mdn_url": "/en-US/docs/Web/API/SecurityPolicyViolationEvent/disposition", @@ -37562,7 +37482,7 @@ { "mdn_url": "/en-US/docs/Web/API/Window/structuredClone", "pageType": "web-api-instance-method", - "summary": "The structuredClone() method of the Window interface creates a deep clone of a given value using the structured clone algorithm." + "summary": "The structuredClone() method of the Window interface creates a deep clone of a value using the structured clone algorithm." }, { "mdn_url": "/en-US/docs/Web/API/Window/toolbar", @@ -42396,8 +42316,8 @@ }, { "mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/vertical-align", - "pageType": "css-property", - "summary": "The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box." + "pageType": "css-shorthand-property", + "summary": "The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box." }, { "mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/view-timeline", diff --git a/package-lock.json b/package-lock.json index 1fb71dfb3..a693b9ca4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -331,9 +331,9 @@ } }, "node_modules/@mdn/browser-compat-data": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-7.3.7.tgz", - "integrity": "sha512-5SOIC+Km3h9GGvirsvIZ09sqK41Vq+1II3dgpg4bEl6lb9ckVKvrEtOJ4vuoJh2X7/TK2TooSVqtrJCqbEQEAw==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-7.3.8.tgz", + "integrity": "sha512-NxKcWM1ydMiJC2fvox3TpWstn5LmkM1wQ6Maw1BVqsVvmFR80TD4GVXT/qBRCGDhpNSxanuJp25DYkdAXJrFJQ==", "dev": true, "license": "CC0-1.0" }, @@ -1074,9 +1074,9 @@ ] }, "node_modules/@webref/css": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/@webref/css/-/css-8.4.1.tgz", - "integrity": "sha512-8DTncc0dhWJ4lVbi9rhLVyMNm+YEYrsFLRbdjgMxPupjNHcAdXiT1s4ZWJXzN4ckUvYQKTjLJKtZWc6tsR4FIQ==", + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@webref/css/-/css-8.5.1.tgz", + "integrity": "sha512-i+LdAd8oXjbquyQLKGcCbUiR9Zr+eVpfzihLk2FpxjLtJKDbxZQoUbiGZnh41jI7KJcTBc/SiNCx43bbGqoQIQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -1091,16 +1091,16 @@ "license": "MIT" }, "node_modules/@webref/events": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/@webref/events/-/events-1.22.0.tgz", - "integrity": "sha512-fQrrkG0wL30BKhDnngnVkOf+eo4kFazixgjRnJLTv9GbNRHV/VEjkdM5bNq1kmwAuL/SzYbrZGazUQU5dB/I1g==", + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/@webref/events/-/events-1.22.1.tgz", + "integrity": "sha512-UUypBtgLviCHkPxkigj0vclgG+gYIoHpLSvk05nXBFDMSiDOwPJjK66OkCh0hjiDG/dMzzUz1D1ngzJTU9OEEQ==", "dev": true, "license": "MIT" }, "node_modules/@webref/idl": { - "version": "3.74.0", - "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.74.0.tgz", - "integrity": "sha512-s811S8wjI6sWE5kH2CFeGdh5+fAYH3uIPJH63YSeVk4eEbXH/Yc3CpdsDsPMA8HBCmItXGN8HednEktZLiXvfw==", + "version": "3.75.0", + "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.75.0.tgz", + "integrity": "sha512-elNqHSpNHTzaS368irlla8Dbp7neH7FhV0Cz3E9d/7GKTELdvGobA3i6tsg91w1CGy80kBmBpOCJM/3Z8KZUhw==", "dev": true, "license": "MIT", "peerDependencies": {