1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 19:05:07 +00:00
serenity/Userland/Libraries/LibWeb/PerformanceTimeline/PerformanceObserverEntryList.idl
2023-08-27 23:27:44 +02:00

9 lines
400 B
Text

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