tor-browser

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

is-input-pending.idl (500B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Early detection of input events (https://wicg.github.io/is-input-pending/)
      5 
      6 dictionary IsInputPendingOptions {
      7  boolean includeContinuous = false;
      8 };
      9 
     10 [Exposed=Window] interface Scheduling {
     11   boolean isInputPending(optional IsInputPendingOptions isInputPendingOptions = {});
     12 };
     13 
     14 partial interface Navigator {
     15  readonly attribute Scheduling scheduling;
     16 };