Web/API/PerformanceMark

From Get docs


PerformanceMark is an abstract interface for PerformanceEntry objects with an entryType of "mark". Entries of this type are created by calling performance.mark() to add a named DOMHighResTimeStamp (the mark) to the browser's performance timeline.

Properties

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

PerformanceEntry.entryType
Returns "mark".
PerformanceEntry.name
Returns the name given to the mark when it was created via a call to performance.mark().
PerformanceEntry.startTime
Returns the DOMHighResTimeStamp when performance.mark() was called.
PerformanceEntry.duration
Returns "0". (A mark has no duration.)

Methods

This interface has no methods.

Example

See the example in Using the User Timing API.

Specifications

Specification Status Comment
User Timing Level 2The definition of 'PerformanceMark' in that specification. Working Draft
User TimingThe definition of 'PerformanceMark' in that specification. Recommendation Basic definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
PerformanceMark Chrome

Full support 43

Edge

Full support 12

Firefox

Full support 41

IE

Full support 10

Opera

Full support 33

Safari

Full support 11

WebView Android

Full support 43

Chrome Android

Full support 43

Firefox Android

Full support 42

Opera Android

Full support 33

Safari iOS

Full support 11

Samsung Internet Android

Full support 4.0

Legend

Full support  
Full support


See also