Skip to content

Commit bb377ef

Browse files
dependabot[bot]saschanaz
authored andcommitted
Bump @webref/idl from 3.68.4 to 3.69.0
Bumps [@webref/idl](https://github.com/w3c/webref) from 3.68.4 to 3.69.0. - [Commits](https://github.com/w3c/webref/compare/@webref/[email protected]...@webref/[email protected]) --- updated-dependencies: - dependency-name: "@webref/idl" dependency-version: 3.69.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7cbed05 commit bb377ef

File tree

10 files changed

+50
-50
lines changed

10 files changed

+50
-50
lines changed

baselines/dom.generated.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ interface EffectTiming {
627627
}
628628

629629
interface ElementCreationOptions {
630-
customElementRegistry?: CustomElementRegistry;
630+
customElementRegistry?: CustomElementRegistry | null;
631631
is?: string;
632632
}
633633

@@ -27025,7 +27025,7 @@ interface RTCEncodedVideoFrame {
2702527025
*
2702627026
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
2702727027
*/
27028-
readonly type: RTCEncodedVideoFrameType;
27028+
readonly type: EncodedVideoChunkType;
2702927029
/**
2703027030
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
2703127031
*
@@ -42080,7 +42080,6 @@ type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
4208042080
type RTCDegradationPreference = "balanced" | "maintain-framerate" | "maintain-resolution";
4208142081
type RTCDtlsRole = "client" | "server" | "unknown";
4208242082
type RTCDtlsTransportState = "closed" | "connected" | "connecting" | "failed" | "new";
42083-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
4208442083
type RTCErrorDetailType = "data-channel-failure" | "dtls-failure" | "fingerprint-failure" | "hardware-encoder-error" | "hardware-encoder-not-available" | "sctp-failure" | "sdp-syntax-error";
4208542084
type RTCIceCandidateType = "host" | "prflx" | "relay" | "srflx";
4208642085
type RTCIceComponent = "rtcp" | "rtp";

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ interface EffectTiming {
624624
}
625625

626626
interface ElementCreationOptions {
627-
customElementRegistry?: CustomElementRegistry;
627+
customElementRegistry?: CustomElementRegistry | null;
628628
is?: string;
629629
}
630630

@@ -27001,7 +27001,7 @@ interface RTCEncodedVideoFrame {
2700127001
*
2700227002
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
2700327003
*/
27004-
readonly type: RTCEncodedVideoFrameType;
27004+
readonly type: EncodedVideoChunkType;
2700527005
/**
2700627006
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
2700727007
*
@@ -42054,7 +42054,6 @@ type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
4205442054
type RTCDegradationPreference = "balanced" | "maintain-framerate" | "maintain-resolution";
4205542055
type RTCDtlsRole = "client" | "server" | "unknown";
4205642056
type RTCDtlsTransportState = "closed" | "connected" | "connecting" | "failed" | "new";
42057-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
4205842057
type RTCErrorDetailType = "data-channel-failure" | "dtls-failure" | "fingerprint-failure" | "hardware-encoder-error" | "hardware-encoder-not-available" | "sctp-failure" | "sdp-syntax-error";
4205942058
type RTCIceCandidateType = "host" | "prflx" | "relay" | "srflx";
4206042059
type RTCIceComponent = "rtcp" | "rtp";

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7462,7 +7462,7 @@ interface RTCEncodedVideoFrame {
74627462
*
74637463
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
74647464
*/
7465-
readonly type: RTCEncodedVideoFrameType;
7465+
readonly type: EncodedVideoChunkType;
74667466
/**
74677467
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
74687468
*
@@ -13502,7 +13502,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
1350213502
type PremultiplyAlpha = "default" | "none" | "premultiply";
1350313503
type PushEncryptionKeyName = "auth" | "p256dh";
1350413504
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
13505-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
1350613505
type ReadableStreamReaderMode = "byob";
1350713506
type ReadableStreamType = "bytes";
1350813507
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ interface EffectTiming {
624624
}
625625

626626
interface ElementCreationOptions {
627-
customElementRegistry?: CustomElementRegistry;
627+
customElementRegistry?: CustomElementRegistry | null;
628628
is?: string;
629629
}
630630

@@ -27022,7 +27022,7 @@ interface RTCEncodedVideoFrame {
2702227022
*
2702327023
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
2702427024
*/
27025-
readonly type: RTCEncodedVideoFrameType;
27025+
readonly type: EncodedVideoChunkType;
2702627026
/**
2702727027
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
2702827028
*
@@ -42077,7 +42077,6 @@ type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
4207742077
type RTCDegradationPreference = "balanced" | "maintain-framerate" | "maintain-resolution";
4207842078
type RTCDtlsRole = "client" | "server" | "unknown";
4207942079
type RTCDtlsTransportState = "closed" | "connected" | "connecting" | "failed" | "new";
42080-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
4208142080
type RTCErrorDetailType = "data-channel-failure" | "dtls-failure" | "fingerprint-failure" | "hardware-encoder-error" | "hardware-encoder-not-available" | "sctp-failure" | "sdp-syntax-error";
4208242081
type RTCIceCandidateType = "host" | "prflx" | "relay" | "srflx";
4208342082
type RTCIceComponent = "rtcp" | "rtp";

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7462,7 +7462,7 @@ interface RTCEncodedVideoFrame {
74627462
*
74637463
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
74647464
*/
7465-
readonly type: RTCEncodedVideoFrameType;
7465+
readonly type: EncodedVideoChunkType;
74667466
/**
74677467
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
74687468
*
@@ -13502,7 +13502,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
1350213502
type PremultiplyAlpha = "default" | "none" | "premultiply";
1350313503
type PushEncryptionKeyName = "auth" | "p256dh";
1350413504
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
13505-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
1350613505
type ReadableStreamReaderMode = "byob";
1350713506
type ReadableStreamType = "bytes";
1350813507
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ interface EffectTiming {
624624
}
625625

626626
interface ElementCreationOptions {
627-
customElementRegistry?: CustomElementRegistry;
627+
customElementRegistry?: CustomElementRegistry | null;
628628
is?: string;
629629
}
630630

@@ -27022,7 +27022,7 @@ interface RTCEncodedVideoFrame {
2702227022
*
2702327023
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
2702427024
*/
27025-
readonly type: RTCEncodedVideoFrameType;
27025+
readonly type: EncodedVideoChunkType;
2702627026
/**
2702727027
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
2702827028
*
@@ -42077,7 +42077,6 @@ type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
4207742077
type RTCDegradationPreference = "balanced" | "maintain-framerate" | "maintain-resolution";
4207842078
type RTCDtlsRole = "client" | "server" | "unknown";
4207942079
type RTCDtlsTransportState = "closed" | "connected" | "connecting" | "failed" | "new";
42080-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
4208142080
type RTCErrorDetailType = "data-channel-failure" | "dtls-failure" | "fingerprint-failure" | "hardware-encoder-error" | "hardware-encoder-not-available" | "sctp-failure" | "sdp-syntax-error";
4208242081
type RTCIceCandidateType = "host" | "prflx" | "relay" | "srflx";
4208342082
type RTCIceComponent = "rtcp" | "rtp";

baselines/ts5.9/webworker.generated.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7462,7 +7462,7 @@ interface RTCEncodedVideoFrame {
74627462
*
74637463
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
74647464
*/
7465-
readonly type: RTCEncodedVideoFrameType;
7465+
readonly type: EncodedVideoChunkType;
74667466
/**
74677467
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
74687468
*
@@ -13502,7 +13502,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
1350213502
type PremultiplyAlpha = "default" | "none" | "premultiply";
1350313503
type PushEncryptionKeyName = "auth" | "p256dh";
1350413504
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
13505-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
1350613505
type ReadableStreamReaderMode = "byob";
1350713506
type ReadableStreamType = "bytes";
1350813507
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7465,7 +7465,7 @@ interface RTCEncodedVideoFrame {
74657465
*
74667466
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
74677467
*/
7468-
readonly type: RTCEncodedVideoFrameType;
7468+
readonly type: EncodedVideoChunkType;
74697469
/**
74707470
* The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
74717471
*
@@ -13505,7 +13505,6 @@ type PredefinedColorSpace = "display-p3" | "srgb";
1350513505
type PremultiplyAlpha = "default" | "none" | "premultiply";
1350613506
type PushEncryptionKeyName = "auth" | "p256dh";
1350713507
type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
13508-
type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
1350913508
type ReadableStreamReaderMode = "byob";
1351013509
type ReadableStreamType = "bytes";
1351113510
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";

inputfiles/patches/html-canvas.kdl

Lines changed: 35 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,40 @@
11
enum GlobalCompositeOperation {
2-
source-over
3-
source-in
4-
source-out
5-
source-atop
6-
destination-over
7-
destination-in
8-
destination-out
9-
destination-atop
10-
lighter
11-
copy
12-
xor
13-
multiply
14-
screen
15-
overlay
16-
darken
17-
lighten
18-
color-dodge
19-
color-burn
20-
hard-light
21-
soft-light
22-
difference
23-
exclusion
24-
hue
25-
saturation
26-
color
27-
luminosity
2+
source-over
3+
source-in
4+
source-out
5+
source-atop
6+
destination-over
7+
destination-in
8+
destination-out
9+
destination-atop
10+
lighter
11+
copy
12+
xor
13+
multiply
14+
screen
15+
overlay
16+
darken
17+
lighten
18+
color-dodge
19+
color-burn
20+
hard-light
21+
soft-light
22+
difference
23+
exclusion
24+
hue
25+
saturation
26+
color
27+
luminosity
2828
}
2929

3030
interface-mixin CanvasCompositing {
31-
property globalCompositeOperation type=GlobalCompositeOperation
31+
property globalCompositeOperation type=GlobalCompositeOperation
32+
}
33+
34+
removals {
35+
// Blink only as of 2025-12
36+
enum PredefinedColorSpace {
37+
srgb-linear
38+
display-p3-linear
39+
}
3240
}

package-lock.json

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

0 commit comments

Comments
 (0)