Skip to content
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 @@ -563,6 +563,8 @@ interface GainOptions extends AudioNodeOptions {

interface GamepadEffectParameters {
duration?: number;
leftTrigger?: number;
rightTrigger?: number;
startDelay?: number;
strongMagnitude?: number;
weakMagnitude?: number;
Expand Down Expand Up @@ -1365,8 +1367,8 @@ interface RTCIceCandidateInit {
}

interface RTCIceCandidatePair {
local?: RTCIceCandidate;
remote?: RTCIceCandidate;
local: RTCIceCandidate;
remote: RTCIceCandidate;
}

interface RTCIceCandidatePairStats extends RTCStats {
Expand Down Expand Up @@ -1783,6 +1785,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
interface ShadowRootInit {
delegatesFocus?: boolean;
mode: ShadowRootMode;
serializable?: boolean;
slotAssignment?: SlotAssignmentMode;
}

Expand Down Expand Up @@ -28451,7 +28454,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
type FontFaceSetLoadStatus = "loaded" | "loading";
type FullscreenNavigationUI = "auto" | "hide" | "show";
type GamepadHapticEffectType = "dual-rumble";
type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble";
type GamepadHapticsResult = "complete" | "preempted";
type GamepadMappingType = "" | "standard" | "xr-standard";
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";
Expand Down
10 changes: 9 additions & 1 deletion inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,13 @@
}
}
},
"MediaMetadataInit": {
"members": {
"member": {
"chapterInfo": null // Blink experimental only as of 2024-04
}
}
},
"MediaRecorderOptions": {
"members": {
"member": {
Expand Down Expand Up @@ -711,7 +718,8 @@
"VideoFrameBufferInit": {
"members": {
"member": {
"transfer": null // No implementation as of 2023-06.
"transfer": null, // Blink only as of 2024-04.
"metadata": null // No implementation as of 2024-04. Linked to VideoFrame.metadata()
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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