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