Skip to content

Update to [email protected] #2069

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11345,7 +11345,7 @@ interface ElementCSSInlineStyle {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
readonly attributeStyleMap: StylePropertyMap;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
get style(): CSSStyleDeclaration;
get style(): CSSStyleProperties;
set style(cssText: string);
}

Expand Down Expand Up @@ -20677,8 +20677,11 @@ interface MediaSource extends EventTarget {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
*/
duration: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
/**
* The **`readyState`** read-only property of the current `MediaSource`.
Expand Down Expand Up @@ -37094,7 +37097,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
/**
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
*
Expand Down Expand Up @@ -39130,7 +39133,7 @@ declare function focus(): void;
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
/**
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
*
Expand Down
9 changes: 6 additions & 3 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11335,7 +11335,7 @@ interface ElementCSSInlineStyle {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
readonly attributeStyleMap: StylePropertyMap;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
readonly style: CSSStyleDeclaration;
readonly style: CSSStyleProperties;
}

interface ElementContentEditable {
Expand Down Expand Up @@ -20656,8 +20656,11 @@ interface MediaSource extends EventTarget {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
*/
duration: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
/**
* The **`readyState`** read-only property of the current `MediaSource`.
Expand Down Expand Up @@ -37071,7 +37074,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
/**
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
*
Expand Down Expand Up @@ -39107,7 +39110,7 @@ declare function focus(): void;
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
/**
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
*
Expand Down
9 changes: 6 additions & 3 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11345,7 +11345,7 @@ interface ElementCSSInlineStyle {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
readonly attributeStyleMap: StylePropertyMap;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
get style(): CSSStyleDeclaration;
get style(): CSSStyleProperties;
set style(cssText: string);
}

Expand Down Expand Up @@ -20677,8 +20677,11 @@ interface MediaSource extends EventTarget {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
*/
duration: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
/**
* The **`readyState`** read-only property of the current `MediaSource`.
Expand Down Expand Up @@ -37094,7 +37097,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
/**
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
*
Expand Down Expand Up @@ -39130,7 +39133,7 @@ declare function focus(): void;
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
/**
* The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.
*
Expand Down
2 changes: 1 addition & 1 deletion inputfiles/mdn
Submodule mdn updated 481 files
15 changes: 9 additions & 6 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -783,9 +783,11 @@
"RTCOutboundRtpStreamStats": {
"members": {
"member": {
"powerEfficientEncoder": null, // Blink only as of 2025-04
"encoderImplementation": null, // Blink only as of 2025-04
"encodingIndex": null // Blink only as of 2025-04
"powerEfficientEncoder": null, // Blink only as of 2025-07
"encoderImplementation": null, // Blink only as of 2025-07
"encodingIndex": null, // Blink only as of 2025-07
"psnrMeasurements": null, // No implementation as of 2025-07
"psnrSum": null // No implementation as of 2025-07
}
}
},
Expand Down Expand Up @@ -910,9 +912,10 @@
"WebTransportOptions": {
"members": {
"member": {
"anticipatedConcurrentIncomingBidirectionalStreams": null, // No implementation as of 2024-09
"anticipatedConcurrentIncomingUnidirectionalStreams": null, // No implementation as of 2024-09
"protocols": null // No implementation as of 2024-09
"anticipatedConcurrentIncomingBidirectionalStreams": null, // No implementation as of 2025-07
"anticipatedConcurrentIncomingUnidirectionalStreams": null, // No implementation as of 2025-07
"datagramsReadableMode": null, // No implementation as of 2025-07
"protocols": null // No implementation as of 2025-07
}
}
},
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.