blob: d612550ce6a6decc9a13fef9bd255ebc7ca37a89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#import <HighResolutionTime/DOMHighResTimeStamp.idl>
// https://www.w3.org/TR/performance-timeline/#dom-performanceentry
[Exposed=(Window,Worker), UseNewAKString]
interface PerformanceEntry {
readonly attribute DOMString name;
readonly attribute DOMString entryType;
readonly attribute DOMHighResTimeStamp startTime;
readonly attribute DOMHighResTimeStamp duration;
[Default] object toJSON();
};
|