Performance.idl 231 B

123456789
  1. #import <DOM/EventTarget.idl>
  2. #import <NavigationTiming/PerformanceTiming.idl>
  3. interface Performance : EventTarget {
  4. double now();
  5. readonly attribute double timeOrigin;
  6. readonly attribute PerformanceTiming timing;
  7. };