hr-time.idl (577B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: High Resolution Time (https://w3c.github.io/hr-time/) 5 6 typedef double DOMHighResTimeStamp; 7 8 typedef unsigned long long EpochTimeStamp; 9 10 [Exposed=(Window,Worker)] 11 interface Performance : EventTarget { 12 DOMHighResTimeStamp now(); 13 readonly attribute DOMHighResTimeStamp timeOrigin; 14 [Default] object toJSON(); 15 }; 16 17 partial interface mixin WindowOrWorkerGlobalScope { 18 [Replaceable] readonly attribute Performance performance; 19 };