2023-08-24 21:26:47 -03:00
|
|
|
#import <HighResolutionTime/Performance.idl>
|
|
|
|
|
|
|
|
|
|
// https://w3c.github.io/performance-timeline/#performanceobserverentrylist-interface
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=(Window,Worker)]
|
2023-08-24 21:26:47 -03:00
|
|
|
interface PerformanceObserverEntryList {
|
|
|
|
|
PerformanceEntryList getEntries();
|
|
|
|
|
PerformanceEntryList getEntriesByType(DOMString type);
|
|
|
|
|
PerformanceEntryList getEntriesByName(DOMString name, optional DOMString type);
|
|
|
|
|
};
|