https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 70b38084344d3be9c7298b9c07ed569463d9e278 authored by Andreas Tolfsen on 12 February 2018, 16:44:15 UTC
Add navigator.webdriver attribute.
Tip revision: 70b3808
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