tor-browser

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

captured-mouse-events.idl (620B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Captured Mouse Events (https://screen-share.github.io/captured-mouse-events/)
      5 
      6 [Exposed=Window]
      7 interface CapturedMouseEvent : Event {
      8  constructor(DOMString type, optional CapturedMouseEventInit eventInitDict = {});
      9  readonly attribute long surfaceX;
     10  readonly attribute long surfaceY;
     11 };
     12 
     13 dictionary CapturedMouseEventInit : EventInit {
     14  long surfaceX = -1;
     15  long surfaceY = -1;
     16 };
     17 
     18 partial interface CaptureController {
     19  attribute EventHandler oncapturedmousechange;
     20 };