PerformanceObserverEntryList.idl 384 B

123456789
  1. #import <HighResolutionTime/Performance.idl>
  2. // https://w3c.github.io/performance-timeline/#performanceobserverentrylist-interface
  3. [Exposed=(Window,Worker)]
  4. interface PerformanceObserverEntryList {
  5. PerformanceEntryList getEntries();
  6. PerformanceEntryList getEntriesByType(DOMString type);
  7. PerformanceEntryList getEntriesByName(DOMString name, optional DOMString type);
  8. };