mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 09:11:01 +00:00
12 lines
417 B
Text
12 lines
417 B
Text
|
|
#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();
|
||
|
|
};
|