W3cubDocs

/Web APIs

PerformanceEventTiming: processingEnd property

The read-only processingEnd property returns the time the last event handler finished executing.

It's equal to PerformanceEventTiming.processingStart when there are no such event handlers.

Value

A DOMHighResTimeStamp timestamp.

Examples

Using the processingEnd property

The processingEnd property can be used when observing event-timing entries (PerformanceEventTiming). For example, to calculate input delay or event processing times.

js

const observer = new PerformanceObserver((list) => {
  list.getEntries().forEach((entry) => {
    // Full duration
    const duration = entry.duration;
    // Input delay (before processing event)
    const delay = entry.processingStart - entry.startTime;
    // Synchronous event processing time
    // (between start and end dispatch)
    const time = entry.processingEnd - entry.processingStart;
  });
});
// Register the observer for events
observer.observe({ type: "event", buffered: true });

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
processingEnd 76 79 89 No 63 No 76 76 89 54 No 12.0

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEventTiming/processingEnd