mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-28 12:10:28 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
338 B
Text
7 lines
338 B
Text
// https://w3c.github.io/performance-timeline/#performanceobserverentrylist-interface
|
|
[Exposed=(Window,Worker)]
|
|
interface PerformanceObserverEntryList {
|
|
PerformanceEntryList getEntries();
|
|
PerformanceEntryList getEntriesByType(DOMString type);
|
|
PerformanceEntryList getEntriesByName(DOMString name, optional DOMString type);
|
|
};
|