tor-browser

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

mediacapture-surface-control.idl (626B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Captured Surface Control (https://w3c.github.io/mediacapture-surface-control/)
      5 
      6 partial interface CaptureController {
      7  sequence<long> getSupportedZoomLevels();
      8  readonly attribute long? zoomLevel;
      9  Promise<undefined> increaseZoomLevel();
     10  Promise<undefined> decreaseZoomLevel();
     11  Promise<undefined> resetZoomLevel();
     12  attribute EventHandler onzoomlevelchange;
     13 };
     14 
     15 partial interface CaptureController {
     16  constructor();
     17  Promise<undefined> forwardWheel(HTMLElement? element);
     18 };