PerformanceMark is an abstract interface for web.performance.PerformanceEntry
with an entryType
of "mark". Entries of this type are created
calling performance.mark()
to add a named web.dom.DOMHighResTimeStamp
mark) to the browser's performance timeline.
PerformanceMark is an abstract interface for `web.performance.PerformanceEntry` with an `entryType` of \"mark\". Entries of this type are created calling `performance.mark()` to add a named `web.dom.DOMHighResTimeStamp` mark) to the browser's performance timeline.
(duration this)
Property.
The duration property returns a timestamp
that is the duration
the performance entry
.
entry.duration;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration
Property. The duration property returns a `timestamp` that is the duration the `performance entry`. `entry.duration;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration`
(entry-type this)
Property.
[Read Only]
The entryType property returns a web.dom.DOMString
representing
type of performance metric such as, for example, "mark". This
is read only.
var type = entry.entryType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType
Property. [Read Only] The entryType property returns a `web.dom.DOMString` representing type of performance metric such as, for example, \"mark\". This is read only. `var type = entry.entryType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType`
(name this)
Property.
[Read Only]
The name property of the web.performance.PerformanceEntry
interface
a value that further specifies the value returned by the PerformanceEntry.entryType
This property is read only.
var name = entry.name;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name
Property. [Read Only] The name property of the `web.performance.PerformanceEntry` interface a value that further specifies the value returned by the `PerformanceEntry.entryType` This property is read only. `var name = entry.name;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name`
(set-duration! this val)
Property.
The duration property returns a timestamp
that is the duration
the performance entry
.
entry.duration;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration
Property. The duration property returns a `timestamp` that is the duration the `performance entry`. `entry.duration;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration`
(set-start-time! this val)
Property.
The startTime property returns the first recorded timestamp
the performance entry
.
entry.startTime;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime
Property. The startTime property returns the first recorded `timestamp` the `performance entry`. `entry.startTime;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime`
(start-time this)
Property.
The startTime property returns the first recorded timestamp
the performance entry
.
entry.startTime;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime
Property. The startTime property returns the first recorded `timestamp` the `performance entry`. `entry.startTime;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close