Skip to content

Commit 9af0a9d

Browse files
authored
Co-authored-by: saschanaz <[email protected]>
1 parent d9c5aa3 commit 9af0a9d

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

baselines/dom.generated.d.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,8 @@ interface GainOptions extends AudioNodeOptions {
563563

564564
interface GamepadEffectParameters {
565565
duration?: number;
566+
leftTrigger?: number;
567+
rightTrigger?: number;
566568
startDelay?: number;
567569
strongMagnitude?: number;
568570
weakMagnitude?: number;
@@ -1365,8 +1367,8 @@ interface RTCIceCandidateInit {
13651367
}
13661368

13671369
interface RTCIceCandidatePair {
1368-
local?: RTCIceCandidate;
1369-
remote?: RTCIceCandidate;
1370+
local: RTCIceCandidate;
1371+
remote: RTCIceCandidate;
13701372
}
13711373

13721374
interface RTCIceCandidatePairStats extends RTCStats {
@@ -1783,6 +1785,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
17831785
interface ShadowRootInit {
17841786
delegatesFocus?: boolean;
17851787
mode: ShadowRootMode;
1788+
serializable?: boolean;
17861789
slotAssignment?: SlotAssignmentMode;
17871790
}
17881791

@@ -28451,7 +28454,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
2845128454
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
2845228455
type FontFaceSetLoadStatus = "loaded" | "loading";
2845328456
type FullscreenNavigationUI = "auto" | "hide" | "show";
28454-
type GamepadHapticEffectType = "dual-rumble";
28457+
type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble";
2845528458
type GamepadHapticsResult = "complete" | "preempted";
2845628459
type GamepadMappingType = "" | "standard" | "xr-standard";
2845728460
type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";

inputfiles/removedTypes.jsonc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,13 @@
327327
}
328328
}
329329
},
330+
"MediaMetadataInit": {
331+
"members": {
332+
"member": {
333+
"chapterInfo": null // Blink experimental only as of 2024-04
334+
}
335+
}
336+
},
330337
"MediaRecorderOptions": {
331338
"members": {
332339
"member": {
@@ -711,7 +718,8 @@
711718
"VideoFrameBufferInit": {
712719
"members": {
713720
"member": {
714-
"transfer": null // No implementation as of 2023-06.
721+
"transfer": null, // Blink only as of 2024-04.
722+
"metadata": null // No implementation as of 2024-04. Linked to VideoFrame.metadata()
715723
}
716724
}
717725
},

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)