https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4d1bb3796f155d206bbf1a1d89db7f8b79402c8d authored by Rune Lillesveen on 27 March 2018, 00:22:42 UTC
[css-typedom] Add support for the *-gap properties.
Tip revision: 4d1bb37
hr-time.idl
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the High Resolution Time spec.
// See https://w3c.github.io/hr-time/

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