Update DOM and baselines (#52328)

This commit is contained in:
Nathan Shively-Sanders
2023-01-20 16:19:59 -08:00
committed by GitHub
parent a097d55f81
commit 0c2fa391a8
19 changed files with 4035 additions and 3760 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -14,6 +14,10 @@ interface BaseAudioContext {
createPeriodicWave(real: Iterable<number>, imag: Iterable<number>, constraints?: PeriodicWaveConstraints): PeriodicWave;
}
interface CSSKeyframesRule {
[Symbol.iterator](): IterableIterator<CSSKeyframeRule>;
}
interface CSSRuleList {
[Symbol.iterator](): IterableIterator<CSSRule>;
}
@@ -117,6 +121,16 @@ interface IDBObjectStore {
createIndex(name: string, keyPath: string | Iterable<string>, options?: IDBIndexParameters): IDBIndex;
}
interface MIDIInputMap extends ReadonlyMap<string, MIDIInput> {
}
interface MIDIOutput {
send(data: Iterable<number>, timestamp?: DOMHighResTimeStamp): void;
}
interface MIDIOutputMap extends ReadonlyMap<string, MIDIOutput> {
}
interface MediaKeyStatusMap {
[Symbol.iterator](): IterableIterator<[BufferSource, MediaKeyStatus]>;
entries(): IterableIterator<[BufferSource, MediaKeyStatus]>;

File diff suppressed because it is too large Load Diff