Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PerformanceMeasure

This article needs a technical review. How you can help.

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.

Properties

This interface has no properties but it extends the following PerformanceEntry properties by qualifying/constrainting the properties as follows:

entryType
Set to "measure".
name
Set to the name given to the measure when it was created via a call to performance.measure().
startTime
Set to the timestamp when performance.measure() was called.
duration
Set to a DOMHighResTimeStamp that is the duration of the measure (typically, the measure's end mark timestamp minus its start mark timestamp).

Methods

This interface has no methods.

Example

See the example in Using the User Timing API.

Specifications

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.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support. 43 41 10 33 Not supported
Feature Android Firefox Mobile (Gecko) Firefox OS IE Phone Opera Mobile Safari Mobile
Basic support. 46 42 42 10 33 Not supported

See also

Document Tags and Contributors

 Contributors to this page: stephaniehobson, AFBarstow
 Last updated by: stephaniehobson,