mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 04:08:08 +00:00
14 lines
365 B
Plaintext
14 lines
365 B
Plaintext
#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;
|
|
};
|