mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 14:18:15 +00: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;
|
|
};
|