Newer
Older
minerva / Userland / Libraries / LibWeb / UserTiming / PerformanceMeasure.idl
@minerva minerva on 13 Jul 477 bytes Initial commit
#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;
};