tor-browser

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

element-timing.idl (884B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Element Timing API (https://w3c.github.io/element-timing/)
      5 
      6 [Exposed=Window]
      7 interface PerformanceElementTiming : PerformanceEntry {
      8    readonly attribute DOMHighResTimeStamp renderTime;
      9    readonly attribute DOMHighResTimeStamp loadTime;
     10    readonly attribute DOMRectReadOnly intersectionRect;
     11    readonly attribute DOMString identifier;
     12    readonly attribute unsigned long naturalWidth;
     13    readonly attribute unsigned long naturalHeight;
     14    readonly attribute DOMString id;
     15    readonly attribute Element? element;
     16    readonly attribute USVString url;
     17    [Default] object toJSON();
     18 };
     19 
     20 PerformanceElementTiming includes PaintTimingMixin;
     21 
     22 partial interface Element {
     23    [CEReactions, Reflect] attribute DOMString elementTiming;
     24 };