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.

Documentation PerformanceMeasure by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See also:

Inherited Variables

Defined by PerformanceEntry

read onlyduration:Float

A DOMHighResTimeStamp representing the time value of the duration of the performance event.

read onlyentryType:String

A DOMString representing the type of performance metric such as "mark". See PerformanceEntry.entryType for a list of valid values.

read onlyname:String

A DOMString representing the name of a performance entry when the metric was created.

read onlystartTime:Float

A DOMHighResTimeStamp representing the starting time for the performance metric.

Inherited Methods