2022-10-07 16:45:09 -06:00
|
|
|
|
|
|
|
|
// https://w3c.github.io/navigation-timing/#dom-performancetiming
|
|
|
|
|
[Exposed=Window]
|
2021-01-18 15:06:13 +01:00
|
|
|
interface PerformanceTiming {
|
|
|
|
|
|
2022-05-10 11:08:02 +02:00
|
|
|
readonly attribute unsigned long long navigationStart;
|
|
|
|
|
readonly attribute unsigned long long unloadEventStart;
|
|
|
|
|
readonly attribute unsigned long long unloadEventEnd;
|
|
|
|
|
readonly attribute unsigned long long redirectStart;
|
|
|
|
|
readonly attribute unsigned long long redirectEnd;
|
|
|
|
|
readonly attribute unsigned long long fetchStart;
|
|
|
|
|
readonly attribute unsigned long long domainLookupStart;
|
|
|
|
|
readonly attribute unsigned long long domainLookupEnd;
|
|
|
|
|
readonly attribute unsigned long long connectStart;
|
|
|
|
|
readonly attribute unsigned long long connectEnd;
|
|
|
|
|
readonly attribute unsigned long long secureConnectionStart;
|
|
|
|
|
readonly attribute unsigned long long requestStart;
|
|
|
|
|
readonly attribute unsigned long long responseStart;
|
|
|
|
|
readonly attribute unsigned long long responseEnd;
|
|
|
|
|
readonly attribute unsigned long long domLoading;
|
|
|
|
|
readonly attribute unsigned long long domInteractive;
|
|
|
|
|
readonly attribute unsigned long long domContentLoadedEventStart;
|
|
|
|
|
readonly attribute unsigned long long domContentLoadedEventEnd;
|
|
|
|
|
readonly attribute unsigned long long domComplete;
|
|
|
|
|
readonly attribute unsigned long long loadEventStart;
|
|
|
|
|
readonly attribute unsigned long long loadEventEnd;
|
2023-10-25 17:27:19 +02:00
|
|
|
[Default] object toJSON();
|
2021-01-18 15:06:13 +01:00
|
|
|
|
|
|
|
|
};
|