Skip to content

Commit

Permalink
Update to webref/idl@3.46.1 (#1703)
Browse files Browse the repository at this point in the history
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
  • Loading branch information
saschanaz and saschanaz committed Apr 14, 2024
1 parent d9c5aa3 commit 9af0a9d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
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.

0 comments on commit 9af0a9d

Please sign in to comment.