PerformanceElementTiming
The PerformanceElementTiming interface of the Element Timing API reports timing information on a specific element identified by the page author. For example it could report timing information about the main image in an article.
Properties
PerformanceElementTiming.elementRead only- 
    
An
Elementrepresenting the element we are returning information about. PerformanceElementTiming.idRead onlyPerformanceElementTiming.identifierRead only- 
    
A
DOMStringwhich is the value of theelementtimingattribute on the element. PerformanceElementTiming.intersectionRectRead only- 
    
A
DOMRectReadOnlywhich is the rectangle of the element within the viewport. PerformanceElementTiming.loadTimeRead only- 
    
A
DOMHighResTimeStampwith the loadTime of the element. PerformanceElementTiming.naturalHeightRead only- 
    
An unsigned 32-bit integer (unsigned long) which is the intrinsic height of the image if this is applied to an image, 0 for text.
 PerformanceElementTiming.naturalWidthRead only- 
    
An unsigned 32-bit integer (unsigned long) which is the intrinsic width of the image if this is applied to an image, 0 for text.
 PerformanceElementTiming.renderTimeRead only- 
    
A
DOMHighResTimeStampwith the renderTime of the element. PerformanceElementTiming.urlRead only- 
    
A
DOMStringwhich is the initial URL of the resources request for images, 0 for text. 
Methods
PerformanceElementTiming.toJSON()- 
    
Generates a JSON description of the object.
 
Examples
In this example we have two elements which are being observed. We use the PerformanceObserver interface to create a list of performance measurement events. In our case observing the PerformanceEntry.entrytype element in order to use the PerformanceElementTiming interface.
Two entries will be output to the console. The first containing details of the image, the second with details of the text node.
<img src="image.jpg" elementtiming="big-image">
<p elementtiming="text" id="text-id">text here</p>
const observer = new PerformanceObserver((list) => {
  let entries = list.getEntries().forEach(function (entry) {
      console.log(entry);
  });
});
observer.observe({ entryTypes: ["element"] });
Specifications
| Specification | 
|---|
| Element Timing API  # sec-performance-element-timing  | 
Browser compatibility
BCD tables only load in the browser