PerformanceMeasure
is an abstract interface for performance entries
with an entry type
of "measure
". Entries of this type are created by calling performance.measure()
to add a named DOMHighResTimeStamp
(the measure) between two marks to the browser's performance timeline.
The PerformanceMeasure
interface has no properties, no methods nor any constructors. However, it qualifies and constrains the following PerformanceEntry
properties for "measure
" type performance entries
: name
, entryType
, startTime
and duration
.
This interface has no properties but it extends the following PerformanceEntry
properties by qualifying/constrainting the properties as follows:
entryType
measure
".name
name
given to the measure when it was created via a call to performance.measure()
.startTime
timestamp
when performance.measure()
was called.duration
DOMHighResTimeStamp
that is the duration of the measure (typically, the measure's end mark timestamp minus its start mark timestamp).This interface has no methods.
See the example in Using the User Timing API.
Specification | Status | Comment |
---|---|---|
User Timing The definition of 'PerformanceMeasure' in that specification. | Editor's Draft | |
User Timing The definition of 'PerformanceMeasure' in that specification. | Recommendation | Basic definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support. | 43 | (Yes) | 41 | 10 | 33 | No support |
Feature | Android | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support. | 46 | (Yes) | 42 | 42 | 10 | 33 | No support |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PerformanceMeasure