W3cubDocs

/Web APIs

LargestContentfulPaint: loadTime property

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The loadTime read-only property of the LargestContentfulPaint interface returns the time that the element was loaded.

Value

A timestamp representing the time in milliseconds that the element was loaded.

Examples

Logging the loadTime of the largest contentful paint

This example uses a PerformanceObserver notifying of new largest-contentful-paint performance entries as they are recorded in the browser's performance timeline. The buffered option is used to access entries from before the observer creation.

js

const observer = new PerformanceObserver((list) => {
  const entries = list.getEntries();
  const lastEntry = entries[entries.length - 1]; // Use the latest LCP candidate
  console.log(lastEntry.loadTime);
});
observer.observe({ type: "largest-contentful-paint", 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
loadTime 77 79 No No 64 No 77 77 No 55 No 12.0

© 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/LargestContentfulPaint/loadTime