The elementtiming
attribute is used to indicate that an element is flagged for tracking by PerformanceObserver
objects using the "element"
type. For more details, see the PerformanceElementTiming
interface.
This attribute may be applied to <img>
, <image>
elements inside an <svg>
, poster images of <video>
elements, elements which have a background-image
, and elements containing text nodes, such as a <p>
.
In the DOM, this attribute is reflected as Element.elementTiming
.
The value given for elementtiming
becomes an identifier for the observed element.
<img alt="alt" src="img.jpg" elementtiming="label for element" />
Good contenders for elements you might want to observe are:
<img
alt="Alt for a main blog post image"
src="my-massive-image.jpg"
elementtiming="Main image" />
<p elementtiming="important-text">Some very important information.</p>
See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3