This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2017.
Note: This feature is available in Web Workers.
PerformanceMark is an interface for PerformanceEntry objects with an entryType of "mark".
Entries of this type are typically created by calling performance.mark() to add a named DOMHighResTimeStamp (the mark) to the browser's performance timeline. To create a performance mark that isn't added to the browser's performance timeline, use the constructor.
PerformanceMark()Creates a new PerformanceMark object that isn't added to the browser's performance timeline.
This interface extends the following PerformanceEntry properties by qualifying/constraining the properties as follows:
PerformanceEntry.entryType Read only
Returns "mark".
PerformanceEntry.name Read only
Returns the name given to the mark when it was created via a call to performance.mark().
PerformanceEntry.startTime Read only
Returns the DOMHighResTimeStamp when performance.mark() was called.
PerformanceEntry.duration Read only
Returns 0. (A mark has no duration.)
This interface also supports the following properties:
PerformanceMark.detail Read only
Returns arbitrary metadata that has been included in the mark upon construction.
This interface has no methods.
See the example in Using the User Timing API.
| Specification |
|---|
| User Timing> # performancemark> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
PerformanceMark |
76 | 79 | 101 | 63 | 14.1 | 76 | 101 | 54 | 14.5 | 12.0 | 79 | 14.5 |
PerformanceMark |
28 | 12 | 38 | 15 | 11 | 28 | 38 | 14 | 11 | 1.5 | 4.4 | 11 |
detail |
78 | 79 | 101 | 65 | 14.1 | 78 | 101 | 56 | 14.5 | 12.0 | 79 | 14.5 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PerformanceMark