summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/UserTiming/PerformanceMeasure.idl
blob: a3df4281bb532570fc9d70108d6cf41a074eef06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <PerformanceTimeline/PerformanceEntry.idl>

[Exposed=(Window,Worker), UseNewAKString]
interface PerformanceMeasure : PerformanceEntry {
    readonly attribute any detail;
};

dictionary PerformanceMeasureOptions {
    any detail;
    (DOMString or DOMHighResTimeStamp) start;
    DOMHighResTimeStamp duration;
    (DOMString or DOMHighResTimeStamp) end;
};