PerformanceEntry.idl 417 B

1234567891011
  1. #import <HighResolutionTime/DOMHighResTimeStamp.idl>
  2. // https://www.w3.org/TR/performance-timeline/#dom-performanceentry
  3. [Exposed=(Window,Worker), UseNewAKString]
  4. interface PerformanceEntry {
  5. readonly attribute DOMString name;
  6. readonly attribute DOMString entryType;
  7. readonly attribute DOMHighResTimeStamp startTime;
  8. readonly attribute DOMHighResTimeStamp duration;
  9. [Default] object toJSON();
  10. };