summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HighResolutionTime/Performance.idl
blob: 3a869c038201147901e5457b32f9b2b39b85405f (plain)
1
2
3
4
5
6
7
8
9
#import <DOM/EventTarget.idl>
#import <NavigationTiming/PerformanceTiming.idl>

interface Performance : EventTarget {
    double now();
    readonly attribute double timeOrigin;

    readonly attribute PerformanceTiming timing;
};