PerformanceTiming.idl 1.2 KB

12345678910111213141516171819202122232425
  1. interface PerformanceTiming {
  2. readonly attribute unsigned long long navigationStart;
  3. readonly attribute unsigned long long unloadEventStart;
  4. readonly attribute unsigned long long unloadEventEnd;
  5. readonly attribute unsigned long long redirectStart;
  6. readonly attribute unsigned long long redirectEnd;
  7. readonly attribute unsigned long long fetchStart;
  8. readonly attribute unsigned long long domainLookupStart;
  9. readonly attribute unsigned long long domainLookupEnd;
  10. readonly attribute unsigned long long connectStart;
  11. readonly attribute unsigned long long connectEnd;
  12. readonly attribute unsigned long long secureConnectionStart;
  13. readonly attribute unsigned long long requestStart;
  14. readonly attribute unsigned long long responseStart;
  15. readonly attribute unsigned long long responseEnd;
  16. readonly attribute unsigned long long domLoading;
  17. readonly attribute unsigned long long domInteractive;
  18. readonly attribute unsigned long long domContentLoadedEventStart;
  19. readonly attribute unsigned long long domContentLoadedEventEnd;
  20. readonly attribute unsigned long long domComplete;
  21. readonly attribute unsigned long long loadEventStart;
  22. readonly attribute unsigned long long loadEventEnd;
  23. };