Skip to content

Commit 3a1f279

Browse files
authored
Co-authored-by: saschanaz <[email protected]>
1 parent ce6ce7c commit 3a1f279

File tree

6 files changed

+37
-25
lines changed

6 files changed

+37
-25
lines changed

baselines/dom.generated.d.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11345,7 +11345,7 @@ interface ElementCSSInlineStyle {
1134511345
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
1134611346
readonly attributeStyleMap: StylePropertyMap;
1134711347
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
11348-
get style(): CSSStyleDeclaration;
11348+
get style(): CSSStyleProperties;
1134911349
set style(cssText: string);
1135011350
}
1135111351

@@ -20677,8 +20677,11 @@ interface MediaSource extends EventTarget {
2067720677
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
2067820678
*/
2067920679
duration: number;
20680+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
2068020681
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
20682+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
2068120683
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
20684+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
2068220685
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
2068320686
/**
2068420687
* The **`readyState`** read-only property of the current `MediaSource`.
@@ -37094,7 +37097,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3709437097
*
3709537098
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3709637099
*/
37097-
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
37100+
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3709837101
/**
3709937102
* 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.
3710037103
*
@@ -39130,7 +39133,7 @@ declare function focus(): void;
3913039133
*
3913139134
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3913239135
*/
39133-
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
39136+
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3913439137
/**
3913539138
* 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.
3913639139
*

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11335,7 +11335,7 @@ interface ElementCSSInlineStyle {
1133511335
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
1133611336
readonly attributeStyleMap: StylePropertyMap;
1133711337
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
11338-
readonly style: CSSStyleDeclaration;
11338+
readonly style: CSSStyleProperties;
1133911339
}
1134011340

1134111341
interface ElementContentEditable {
@@ -20656,8 +20656,11 @@ interface MediaSource extends EventTarget {
2065620656
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
2065720657
*/
2065820658
duration: number;
20659+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
2065920660
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
20661+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
2066020662
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
20663+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
2066120664
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
2066220665
/**
2066320666
* The **`readyState`** read-only property of the current `MediaSource`.
@@ -37071,7 +37074,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3707137074
*
3707237075
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3707337076
*/
37074-
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
37077+
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3707537078
/**
3707637079
* 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.
3707737080
*
@@ -39107,7 +39110,7 @@ declare function focus(): void;
3910739110
*
3910839111
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3910939112
*/
39110-
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
39113+
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3911139114
/**
3911239115
* 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.
3911339116
*

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11345,7 +11345,7 @@ interface ElementCSSInlineStyle {
1134511345
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
1134611346
readonly attributeStyleMap: StylePropertyMap;
1134711347
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
11348-
get style(): CSSStyleDeclaration;
11348+
get style(): CSSStyleProperties;
1134911349
set style(cssText: string);
1135011350
}
1135111351

@@ -20677,8 +20677,11 @@ interface MediaSource extends EventTarget {
2067720677
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)
2067820678
*/
2067920679
duration: number;
20680+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
2068020681
onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
20682+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
2068120683
onsourceended: ((this: MediaSource, ev: Event) => any) | null;
20684+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
2068220685
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
2068320686
/**
2068420687
* The **`readyState`** read-only property of the current `MediaSource`.
@@ -37094,7 +37097,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3709437097
*
3709537098
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3709637099
*/
37097-
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
37100+
getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3709837101
/**
3709937102
* 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.
3710037103
*
@@ -39130,7 +39133,7 @@ declare function focus(): void;
3913039133
*
3913139134
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3913239135
*/
39133-
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;
39136+
declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleProperties;
3913439137
/**
3913539138
* 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.
3913639139
*

inputfiles/mdn

Submodule mdn updated 481 files

inputfiles/removedTypes.jsonc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -783,9 +783,11 @@
783783
"RTCOutboundRtpStreamStats": {
784784
"members": {
785785
"member": {
786-
"powerEfficientEncoder": null, // Blink only as of 2025-04
787-
"encoderImplementation": null, // Blink only as of 2025-04
788-
"encodingIndex": null // Blink only as of 2025-04
786+
"powerEfficientEncoder": null, // Blink only as of 2025-07
787+
"encoderImplementation": null, // Blink only as of 2025-07
788+
"encodingIndex": null, // Blink only as of 2025-07
789+
"psnrMeasurements": null, // No implementation as of 2025-07
790+
"psnrSum": null // No implementation as of 2025-07
789791
}
790792
}
791793
},
@@ -910,9 +912,10 @@
910912
"WebTransportOptions": {
911913
"members": {
912914
"member": {
913-
"anticipatedConcurrentIncomingBidirectionalStreams": null, // No implementation as of 2024-09
914-
"anticipatedConcurrentIncomingUnidirectionalStreams": null, // No implementation as of 2024-09
915-
"protocols": null // No implementation as of 2024-09
915+
"anticipatedConcurrentIncomingBidirectionalStreams": null, // No implementation as of 2025-07
916+
"anticipatedConcurrentIncomingUnidirectionalStreams": null, // No implementation as of 2025-07
917+
"datagramsReadableMode": null, // No implementation as of 2025-07
918+
"protocols": null // No implementation as of 2025-07
916919
}
917920
}
918921
},

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)