mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02:00
10 lines
231 B
Plaintext
10 lines
231 B
Plaintext
#import <DOM/EventTarget.idl>
|
|
#import <NavigationTiming/PerformanceTiming.idl>
|
|
|
|
interface Performance : EventTarget {
|
|
double now();
|
|
readonly attribute double timeOrigin;
|
|
|
|
readonly attribute PerformanceTiming timing;
|
|
};
|