PerformanceTiming.idl 1.1 KB

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