mirror of
https://github.com/servo/servo.git
synced 2025-07-12 01:43:43 +01:00
17 lines
559 B
Text
17 lines
559 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: High Resolution Time Level 2 (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 mixin WindowOrWorkerGlobalScope {
|
|
[Replaceable] readonly attribute Performance performance;
|
|
};
|