Readonly
connectThe legacy PerformanceTiming.connectEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, where the connection is opened network.
Readonly
connectThe legacy PerformanceTiming.connectStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, where the request to open a connection is sent to the network.
Readonly
domainThe legacy PerformanceTiming.domainLookupEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, where the domain lookup is finished.
Readonly
domainThe legacy PerformanceTiming.domainLookupStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, where the domain lookup starts.
Readonly
domThe legacy PerformanceTiming.domComplete
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the parser finished its work on the main document, that is when its Document.readyState changes to 'complete'
and the corresponding Document/readystatechange_event event is thrown.
Readonly
domThe legacy PerformanceTiming.domContentLoadedEventEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, right after all the scripts that need to be executed as soon as possible, in order or not, has been executed.
Readonly
domThe legacy PerformanceTiming.domContentLoadedEventStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the executed right after parsing has been executed.
Readonly
domThe legacy PerformanceTiming.domInteractive
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the parser finished its work on the main document, that is when its Document.readyState changes to 'interactive'
and the corresponding Document/readystatechange_event event is thrown.
Readonly
domThe legacy PerformanceTiming.domLoading
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its corresponding Document/readystatechange_event event is thrown.
Readonly
fetchThe legacy PerformanceTiming.fetchStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, the browser is ready to fetch the document using an HTTP request.
Readonly
loadThe legacy PerformanceTiming.loadEventEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the Window/load_event event handler terminated, that is when the load event is completed.
Readonly
loadThe legacy PerformanceTiming.loadEventStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the Window/load_event event was sent for the current document.
Readonly
navigationThe legacy PerformanceTiming.navigationStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, right after the prompt for unload terminates on the previous document in the same browsing context.
Readonly
redirectThe legacy PerformanceTiming.redirectEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, the last HTTP redirect is completed, that is when the last byte of the HTTP response has been received.
Readonly
redirectThe legacy PerformanceTiming.redirectStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, the first HTTP redirect starts.
Readonly
requestThe legacy PerformanceTiming.requestStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the browser sent the request to obtain the actual document, from the server or from a cache.
Readonly
responseThe legacy PerformanceTiming.responseEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, when the browser received the last byte of the response, or when the connection is closed if this happened first, from the server from a cache or from a local resource.
Readonly
responseThe legacy PerformanceTiming.responseStart
read-only property returns an unsigned long long
representing the moment in time (in milliseconds since the UNIX epoch) when the browser received the first byte of the response from the server, cache, or local resource.
Readonly
secureThe legacy PerformanceTiming.secureConnectionStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, where the secure connection handshake starts.
Readonly
unloadThe legacy PerformanceTiming.unloadEventEnd
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, the Window/unload_event event handler finishes.
Readonly
unloadThe legacy PerformanceTiming.unloadEventStart
read-only property returns an unsigned long long
representing the moment, in milliseconds since the UNIX epoch, the Window/unload_event event has been thrown.
The
PerformanceTiming
interface is a legacy interface kept for backwards compatibility and contains properties that offer performance timing information for various events which occur during the loading and use of the current page.Deprecated
This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.
MDN Reference