web api interface
PerformanceMark
Available in 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.
Constructor
PerformanceMark()- : Creates a new
PerformanceMarkobject that isn’t added to the browser’s performance timeline.
- : Creates a new
Instance properties
detail- : Contains arbitrary metadata about the measure.
This interface extends the following PerformanceEntry properties by qualifying/constraining the properties as follows:
entryTypeRead only- : Returns
"mark".
- : Returns
nameRead only- : Returns the name given to the mark when it was created via a call to
performance.mark().
- : Returns the name given to the mark when it was created via a call to
startTimeRead only- : Returns the
DOMHighResTimeStampwhenperformance.mark()was called.
- : Returns the
durationRead only- : Returns
0. (A mark has no duration.)
- : Returns
Instance methods
This interface has no methods.
Example
See the example in Using the User Timing API.
Chrome DevTools uses performance.mark() and in particular a structured detail property as part of its extensibility API that surfaces these in custom tracks in performance traces. See the example in Performance: mark() method page and the Chrome’s extensibility API documentation for more information and examples.