tor-browser

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

audio-output.idl (562B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Audio Output Devices API (https://w3c.github.io/mediacapture-output/)
      5 
      6 partial interface HTMLMediaElement {
      7  [SecureContext] readonly attribute DOMString sinkId;
      8  [SecureContext] Promise<undefined> setSinkId (DOMString sinkId);
      9 };
     10 
     11 partial interface MediaDevices {
     12  Promise<MediaDeviceInfo> selectAudioOutput(optional AudioOutputOptions options = {});
     13 };
     14 
     15 dictionary AudioOutputOptions {
     16  DOMString deviceId = "";
     17 };