tor-browser

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

event-timing.idl (970B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Event Timing API (https://w3c.github.io/event-timing/)
      5 
      6 [Exposed=Window]
      7 interface PerformanceEventTiming : PerformanceEntry {
      8    readonly attribute DOMHighResTimeStamp processingStart;
      9    readonly attribute DOMHighResTimeStamp processingEnd;
     10    readonly attribute boolean cancelable;
     11    readonly attribute Node? target;
     12    readonly attribute DOMString targetSelector;
     13    readonly attribute unsigned long long interactionId;
     14    [Default] object toJSON();
     15 };
     16 
     17 [Exposed=Window]
     18 interface EventCounts {
     19    readonly maplike<DOMString, unsigned long long>;
     20 };
     21 
     22 [Exposed=Window]
     23 partial interface Performance {
     24    [SameObject] readonly attribute EventCounts eventCounts;
     25    readonly attribute unsigned long long interactionCount;
     26 };
     27 
     28 partial dictionary PerformanceObserverInit {
     29    DOMHighResTimeStamp durationThreshold;
     30 };