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
4 changes: 2 additions & 2 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,7 @@ declare var AnimationPlaybackEvent: {
};

interface AnimationTimeline {
readonly currentTime: number | null;
readonly currentTime: CSSNumberish | null;
}

declare var AnimationTimeline: {
Expand Down Expand Up @@ -5587,7 +5587,7 @@ interface FormData {

declare var FormData: {
prototype: FormData;
new(form?: HTMLFormElement): FormData;
new(form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;
};

interface FormDataEvent extends Event {
Expand Down
10 changes: 2 additions & 8 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,8 @@
"RTCEncodedAudioFrameMetadata": {
"members": {
"member": {
"payloadType": null
"payloadType": null, // Blink only as of 2023-02
"sequenceNumber": null // Blink only as of 2023-02
}
}
},
Expand Down Expand Up @@ -547,13 +548,6 @@
}
}
},
"RTCRtpCodecCapability": {
"members": {
"member": {
"scalabilityModes": null
}
}
},
"RTCRtpEncodingParameters": {
"members": {
"member": {
Expand Down
Loading