Liking cljdoc? Tell your friends :D

web.deprecated.PerformanceTiming

The PerformanceTiming interface is a legacy interface kept for compatibility and contains properties that offer performance information for various events which occur during the loading use of the current page. You get a PerformanceTiming object describing page using the window.performance.timing property.

The PerformanceTiming interface is a legacy interface kept for
compatibility and contains properties that offer performance
information for various events which occur during the loading
use of the current page. You get a PerformanceTiming object describing
page using the `window.performance.timing` property.
raw docstring

connect-endcljs

(connect-end this)

Property.

The legacy PerformanceTiming.connectEnd read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, where the connection is opened network. If the transport reports an error and the connection establishment is started the last connection establisment end time is given. If a persistent is used, the value will be the same as PerformanceTiming.fetchStart. connection is considered as opened when all secure connection or SOCKS authentication, is terminated.

time = performanceTiming.connectEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/connectEnd

Property.

The legacy PerformanceTiming.connectEnd read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, where the connection is opened network. If the transport
reports an error and the connection establishment is started
the last connection establisment end time is given. If a persistent
is used, the value will be the same as `PerformanceTiming.fetchStart`.
connection is considered as opened when all secure connection
or SOCKS authentication, is terminated.

`time = performanceTiming.connectEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/connectEnd`
sourceraw docstring

connect-startcljs

(connect-start this)

Property.

The legacy PerformanceTiming.connectStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, where the request to open a connection is sent the network. If the transport layer reports an error and the establishment is started again, the last connection establisment time is given. If a persistent connection is used, the value be the same as PerformanceTiming.fetchStart.

time = performanceTiming.connectStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/connectStart

Property.

The legacy PerformanceTiming.connectStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, where the request to open a connection is sent
the network. If the transport layer reports an error and the
establishment is started again, the last connection establisment
time is given. If a persistent connection is used, the value
be the same as `PerformanceTiming.fetchStart`.

`time = performanceTiming.connectStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/connectStart`
sourceraw docstring

dom-completecljs

(dom-complete this)

Property.

The legacy PerformanceTiming.domComplete read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, when the parser finished its work on the main document, is when its Document.readyState changes to 'complete' and the readystatechange event is thrown.

time = performanceTiming.domComplete;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domComplete

Property.

The legacy PerformanceTiming.domComplete read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, when the parser finished its work on the main document,
is when its `Document.readyState` changes to 'complete' and the
readystatechange event is thrown.

`time = performanceTiming.domComplete;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domComplete`
sourceraw docstring

dom-content-loaded-event-endcljs

(dom-content-loaded-event-end this)

Property.

The legacy PerformanceTiming.domContentLoadedEventEnd read-only returns an unsigned long long representing the moment, in milliseconds the UNIX epoch, right after all the scripts that need to be executed soon as possible, in order or not, has been executed.

time = performanceTiming.domContentLoadedEventEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domContentLoadedEventEnd

Property.

The legacy PerformanceTiming.domContentLoadedEventEnd read-only
returns an unsigned long long representing the moment, in milliseconds
the UNIX epoch, right after all the scripts that need to be executed
soon as possible, in order or not, has been executed.

`time = performanceTiming.domContentLoadedEventEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domContentLoadedEventEnd`
sourceraw docstring

dom-content-loaded-event-startcljs

(dom-content-loaded-event-start this)

Property.

The legacy PerformanceTiming.domContentLoadedEventStart read-only returns an unsigned long long representing the moment, in miliseconds the UNIX epoch, right before the parser sent the DOMContentLoaded that is right after all the scripts that need to be executed after parsing has been executed.

time = performanceTiming.domContentLoadedEventStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domContentLoadedEventStart

Property.

The legacy PerformanceTiming.domContentLoadedEventStart read-only
returns an unsigned long long representing the moment, in miliseconds
the UNIX epoch, right before the parser sent the DOMContentLoaded
that is right after all the scripts that need to be executed
after parsing has been executed.

`time = performanceTiming.domContentLoadedEventStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domContentLoadedEventStart`
sourceraw docstring

dom-interactivecljs

(dom-interactive this)

Property.

The legacy PerformanceTiming.domInteractive read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, when the parser finished its work on the main that is when its Document.readyState changes to 'interactive' the corresponding readystatechange event is thrown.

time = performanceTiming.domInteractive;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domInteractive

Property.

The legacy PerformanceTiming.domInteractive read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, when the parser finished its work on the main
that is when its `Document.readyState` changes to 'interactive'
the corresponding readystatechange event is thrown.

`time = performanceTiming.domInteractive;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domInteractive`
sourceraw docstring

dom-loadingcljs

(dom-loading this)

Property.

The legacy PerformanceTiming.domLoading read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, when the parser started its work, that is when its changes to 'loading' and the corresponding readystatechange event thrown.

time = performanceTiming.domLoading;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domLoading

Property.

The legacy PerformanceTiming.domLoading read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, when the parser started its work, that is when its
changes to 'loading' and the corresponding readystatechange event
thrown.

`time = performanceTiming.domLoading;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domLoading`
sourceraw docstring

domain-lookup-endcljs

(domain-lookup-end this)

Property.

The legacy PerformanceTiming.domainLookupEnd read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, where the domain lookup is finished. If a persistent is used, or the information is stored in a cache or a local resource, value will be the same as PerformanceTiming.fetchStart.

time = performanceTiming.domainLookupEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domainLookupEnd

Property.

The legacy PerformanceTiming.domainLookupEnd read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, where the domain lookup is finished. If a persistent
is used, or the information is stored in a cache or a local resource,
value will be the same as `PerformanceTiming.fetchStart`.

`time = performanceTiming.domainLookupEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domainLookupEnd`
sourceraw docstring

domain-lookup-startcljs

(domain-lookup-start this)

Property.

The legacy PerformanceTiming.domainLookupStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, where the domain lookup starts. If a persistent is used, or the information is stored in a cache or a local resource, value will be the same as PerformanceTiming.fetchStart.

time = performanceTiming.domainLookupStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domainLookupStart

Property.

The legacy PerformanceTiming.domainLookupStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, where the domain lookup starts. If a persistent
is used, or the information is stored in a cache or a local resource,
value will be the same as `PerformanceTiming.fetchStart`.

`time = performanceTiming.domainLookupStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domainLookupStart`
sourceraw docstring

fetch-startcljs

(fetch-start this)

Property.

The legacy PerformanceTiming.fetchStart read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, the browser is ready to fetch the document using HTTP request. This moment is before the check to any application

time = performance.timing.fetchStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/fetchStart

Property.

The legacy PerformanceTiming.fetchStart read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, the browser is ready to fetch the document using
HTTP request. This moment is before the check to any application

`time = performance.timing.fetchStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/fetchStart`
sourceraw docstring

load-event-endcljs

(load-event-end this)

Property.

The legacy PerformanceTiming.loadEventEnd read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, when the load event handler terminated, that when the load event is completed. If this event has not yet been or is not yet completed, it returns 0.

time = performanceTiming.loadEventEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/loadEventEnd

Property.

The legacy PerformanceTiming.loadEventEnd read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, when the load event handler terminated, that
when the load event is completed. If this event has not yet been
or is not yet completed, it returns 0.

`time = performanceTiming.loadEventEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/loadEventEnd`
sourceraw docstring

load-event-startcljs

(load-event-start this)

Property.

The legacy PerformanceTiming.loadEventStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, when the load event was sent for the current If this event has not yet been sent, it returns 0.

time = performanceTiming.loadEventStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/loadEventStart

Property.

The legacy PerformanceTiming.loadEventStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, when the load event was sent for the current
If this event has not yet been sent, it returns 0.

`time = performanceTiming.loadEventStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/loadEventStart`
sourceraw docstring

(navigation-start this)

Property.

The legacy PerformanceTiming.navigationStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, right after the prompt for unload terminates the previous document in the same browsing context. If there no previous document, this value will be the same as PerformanceTiming.fetchStart.

time = performanceTiming.navigationStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/navigationStart

Property.

The legacy PerformanceTiming.navigationStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, right after the prompt for unload terminates
the previous document in the same browsing context. If there
no previous document, this value will be the same as `PerformanceTiming.fetchStart`.

`time = performanceTiming.navigationStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/navigationStart`
sourceraw docstring

redirect-endcljs

(redirect-end this)

Property.

The legacy PerformanceTiming.redirectEnd read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, the last HTTP redirect is completed, that is when last byte of the HTTP response has been received. If there is redirect, or if one of the redirect is not of the same origin, value returned is 0.

time = performanceTiming.redirectEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/redirectEnd

Property.

The legacy PerformanceTiming.redirectEnd read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, the last HTTP redirect is completed, that is when
last byte of the HTTP response has been received. If there is
redirect, or if one of the redirect is not of the same origin,
value returned is 0.

`time = performanceTiming.redirectEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/redirectEnd`
sourceraw docstring

redirect-startcljs

(redirect-start this)

Property.

The legacy PerformanceTiming.redirectStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, the first HTTP redirect starts. If there is no or if one of the redirect is not of the same origin, the value is 0.

time = performanceTiming.redirectStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/redirectStart

Property.

The legacy PerformanceTiming.redirectStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, the first HTTP redirect starts. If there is no
or if one of the redirect is not of the same origin, the value
is 0.

`time = performanceTiming.redirectStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/redirectStart`
sourceraw docstring

request-startcljs

(request-start this)

Property.

The legacy PerformanceTiming.requestStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, when the browser sent the request to obtain the document, from the server or from a cache. If the transport layer after the start of the request and the connection is reopened, property will be set to the time corresponding to the new request.

time = performanceTiming.requestStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/requestStart

Property.

The legacy PerformanceTiming.requestStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, when the browser sent the request to obtain the
document, from the server or from a cache. If the transport layer
after the start of the request and the connection is reopened,
property will be set to the time corresponding to the new request.

`time = performanceTiming.requestStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/requestStart`
sourceraw docstring

response-endcljs

(response-end this)

Property.

The legacy PerformanceTiming.responseEnd read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, when the browser received the last byte of the response, when the connection is closed if this happened first, from the from a cache or from a local resource.

time = performanceTiming.responseEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/responseEnd

Property.

The legacy PerformanceTiming.responseEnd read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, when the browser received the last byte of the response,
when the connection is closed if this happened first, from the
from a cache or from a local resource.

`time = performanceTiming.responseEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/responseEnd`
sourceraw docstring

response-startcljs

(response-start this)

Property.

The legacy PerformanceTiming.responseStart read-only property an unsigned long long representing the moment in time (in milliseconds the UNIX epoch) when the browser received the first byte of the from the server, cache, or local resource.

time = performanceTiming.responseStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/responseStart

Property.

The legacy PerformanceTiming.responseStart read-only property
an unsigned long long representing the moment in time (in milliseconds
the UNIX epoch) when the browser received the first byte of the
from the server, cache, or local resource.

`time = performanceTiming.responseStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/responseStart`
sourceraw docstring

secure-connection-startcljs

(secure-connection-start this)

Property.

The legacy PerformanceTiming.secureConnectionStart read-only returns an unsigned long long representing the moment, in miliseconds the UNIX epoch, where the secure connection handshake starts. no such connection is requested, it returns 0.

time = performanceTiming.secureConnectionStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/secureConnectionStart

Property.

The legacy PerformanceTiming.secureConnectionStart read-only
returns an unsigned long long representing the moment, in miliseconds
the UNIX epoch, where the secure connection handshake starts.
no such connection is requested, it returns 0.

`time = performanceTiming.secureConnectionStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/secureConnectionStart`
sourceraw docstring

set-dom-loading!cljs

(set-dom-loading! this val)

Property.

The legacy PerformanceTiming.domLoading read-only property returns unsigned long long representing the moment, in miliseconds since UNIX epoch, when the parser started its work, that is when its changes to 'loading' and the corresponding readystatechange event thrown.

time = performanceTiming.domLoading;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domLoading

Property.

The legacy PerformanceTiming.domLoading read-only property returns
unsigned long long representing the moment, in miliseconds since
UNIX epoch, when the parser started its work, that is when its
changes to 'loading' and the corresponding readystatechange event
thrown.

`time = performanceTiming.domLoading;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domLoading`
sourceraw docstring

set-domain-lookup-end!cljs

(set-domain-lookup-end! this val)

Property.

The legacy PerformanceTiming.domainLookupEnd read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, where the domain lookup is finished. If a persistent is used, or the information is stored in a cache or a local resource, value will be the same as PerformanceTiming.fetchStart.

time = performanceTiming.domainLookupEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domainLookupEnd

Property.

The legacy PerformanceTiming.domainLookupEnd read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, where the domain lookup is finished. If a persistent
is used, or the information is stored in a cache or a local resource,
value will be the same as `PerformanceTiming.fetchStart`.

`time = performanceTiming.domainLookupEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/domainLookupEnd`
sourceraw docstring

unload-event-endcljs

(unload-event-end this)

Property.

The legacy PerformanceTiming.unloadEventEnd read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, the unload event handler finishes. If there is previous document, or if the previous document, or one of the redirects, is not of the same origin, the value returned is 0.

time = performanceTiming.unloadEventEnd;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/unloadEventEnd

Property.

The legacy PerformanceTiming.unloadEventEnd read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, the unload event handler finishes. If there is
previous document, or if the previous document, or one of the
redirects, is not of the same origin, the value returned is 0.

`time = performanceTiming.unloadEventEnd;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/unloadEventEnd`
sourceraw docstring

unload-event-startcljs

(unload-event-start this)

Property.

The legacy PerformanceTiming.unloadEventStart read-only property an unsigned long long representing the moment, in miliseconds the UNIX epoch, the unload event has been thrown. If there is previous document, or if the previous document, or one of the redirects, is not of the same origin, the value returned is 0.

time = performanceTiming.unloadEventStart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/unloadEventStart

Property.

The legacy PerformanceTiming.unloadEventStart read-only property
an unsigned long long representing the moment, in miliseconds
the UNIX epoch, the unload event has been thrown. If there is
previous document, or if the previous document, or one of the
redirects, is not of the same origin, the value returned is 0.

`time = performanceTiming.unloadEventStart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming/unloadEventStart`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close