tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

media-playback-quality.idl (595B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Media Playback Quality (https://w3c.github.io/media-playback-quality/)
      5 
      6 partial interface HTMLVideoElement {
      7  VideoPlaybackQuality getVideoPlaybackQuality();
      8 };
      9 
     10 [Exposed=Window]
     11 interface VideoPlaybackQuality {
     12  readonly attribute DOMHighResTimeStamp creationTime;
     13  readonly attribute unsigned long droppedVideoFrames;
     14  readonly attribute unsigned long totalVideoFrames;
     15 
     16  // Deprecated!
     17  readonly attribute unsigned long corruptedVideoFrames;
     18 };