From 5adbee0e935f353ccc3beb5c27322332fe3d9e7f Mon Sep 17 00:00:00 2001 From: Huy Date: Tue, 29 Mar 2022 17:35:07 -0700 Subject: [PATCH] fix(48444): Add missing "preservesPitch" field to HTMLMediaElement --- lib/lib.dom.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/lib.dom.d.ts b/lib/lib.dom.d.ts index ca3ce067a05b7..14bd2c71568ed 100644 --- a/lib/lib.dom.d.ts +++ b/lib/lib.dom.d.ts @@ -7477,6 +7477,10 @@ interface HTMLMediaElement extends HTMLElement { * Gets TimeRanges for the current media resource that has been played. */ readonly played: TimeRanges; + /** + * Gets or sets a flag that indicate whether or not the browser should adjust the pitch of the audio to compensate for changes to the playback rate. + */ + preservesPitch: boolean; /** * Gets or sets the current playback position, in seconds. */