PerformanceTiming.idl 1.3 KB

12345678910111213141516171819202122232425262728
  1. // https://w3c.github.io/navigation-timing/#dom-performancetiming
  2. [Exposed=Window]
  3. interface PerformanceTiming {
  4. readonly attribute unsigned long long navigationStart;
  5. readonly attribute unsigned long long unloadEventStart;
  6. readonly attribute unsigned long long unloadEventEnd;
  7. readonly attribute unsigned long long redirectStart;
  8. readonly attribute unsigned long long redirectEnd;
  9. readonly attribute unsigned long long fetchStart;
  10. readonly attribute unsigned long long domainLookupStart;
  11. readonly attribute unsigned long long domainLookupEnd;
  12. readonly attribute unsigned long long connectStart;
  13. readonly attribute unsigned long long connectEnd;
  14. readonly attribute unsigned long long secureConnectionStart;
  15. readonly attribute unsigned long long requestStart;
  16. readonly attribute unsigned long long responseStart;
  17. readonly attribute unsigned long long responseEnd;
  18. readonly attribute unsigned long long domLoading;
  19. readonly attribute unsigned long long domInteractive;
  20. readonly attribute unsigned long long domContentLoadedEventStart;
  21. readonly attribute unsigned long long domContentLoadedEventEnd;
  22. readonly attribute unsigned long long domComplete;
  23. readonly attribute unsigned long long loadEventStart;
  24. readonly attribute unsigned long long loadEventEnd;
  25. };