mirror of
https://github.com/servo/servo.git
synced 2025-07-02 13:03:43 +01:00
17 lines
503 B
Text
17 lines
503 B
Text
// 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;
|
|
};
|