2023-03-22 16:12:57 -03:00
|
|
|
#import <HighResolutionTime/DOMHighResTimeStamp.idl>
|
|
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/performance-timeline/#dom-performanceentry
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=(Window,Worker)]
|
2023-03-22 16:12:57 -03:00
|
|
|
interface PerformanceEntry {
|
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
|
readonly attribute DOMString entryType;
|
|
|
|
|
readonly attribute DOMHighResTimeStamp startTime;
|
|
|
|
|
readonly attribute DOMHighResTimeStamp duration;
|
|
|
|
|
[Default] object toJSON();
|
|
|
|
|
};
|