tor-browser

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

input-events.idl (451B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Input Events Level 2 (https://w3c.github.io/input-events/)
      5 
      6 partial interface InputEvent {
      7   readonly attribute DataTransfer? dataTransfer;
      8   sequence<StaticRange> getTargetRanges();
      9 };
     10 
     11 partial dictionary InputEventInit {
     12   DataTransfer? dataTransfer = null;
     13   sequence<StaticRange> targetRanges = [];
     14 };