mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
15 lines
477 B
Text
15 lines
477 B
Text
#import <PerformanceTimeline/PerformanceEntry.idl>
|
|
|
|
// https://w3c.github.io/user-timing/#performancemeasure
|
|
[Exposed=(Window,Worker)]
|
|
interface PerformanceMeasure : PerformanceEntry {
|
|
readonly attribute any detail;
|
|
};
|
|
|
|
// https://w3c.github.io/user-timing/#extensions-performance-interface
|
|
dictionary PerformanceMeasureOptions {
|
|
any detail;
|
|
(DOMString or DOMHighResTimeStamp) start;
|
|
DOMHighResTimeStamp duration;
|
|
(DOMString or DOMHighResTimeStamp) end;
|
|
};
|