PerformanceMeasure.idl 365 B

12345678910111213
  1. #import <PerformanceTimeline/PerformanceEntry.idl>
  2. [Exposed=(Window,Worker), UseNewAKString]
  3. interface PerformanceMeasure : PerformanceEntry {
  4. readonly attribute any detail;
  5. };
  6. dictionary PerformanceMeasureOptions {
  7. any detail;
  8. (DOMString or DOMHighResTimeStamp) start;
  9. DOMHighResTimeStamp duration;
  10. (DOMString or DOMHighResTimeStamp) end;
  11. };