Revision ec54ac4479d66e039809ac65026a12eb9529d34a authored by Geoffrey Sneddon on 13 March 2018, 15:16:44 UTC, committed by Geoffrey Sneddon on 14 March 2018, 18:08:06 UTC
1 parent 24da741
Raw File
hr-time.idl
typedef double DOMHighResTimeStamp;

[Exposed=(Window,Worker)]
interface Performance : EventTarget {
    DOMHighResTimeStamp now();
    readonly attribute DOMHighResTimeStamp timeOrigin;
    [Default] object              toJSON();
};

partial interface WindowOrWorkerGlobalScope {
    [Replaceable]
    readonly attribute Performance performance;
};
back to top