LargestContentfulPaint.renderTime
The renderTime
read-only property of the LargestContentfulPaint
interface represents the time that the element was rendered to the screen.
Syntax
let renderTime = LargestContentfulPaint.renderTime;
Value
A timestamp
representing the time in milliseconds that the element was rendered to the screen.
Examples
The following example gets the LargestContentfulPaint
object and prints the value of renderTime
to the console.
try { let lcp; const po = new PerformanceObserver((entryList) => { const entries = entryList.getEntries(); const lastEntry = entries[entries.length - 1]; console.log(lastEntry.renderTime); }); po.observe({type: 'largest-contentful-paint', buffered: true}); } catch (e) { // Do nothing if the browser doesn't support this API. }
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 | |
renderTime |
77 |
79 |
No |
No |
Yes |
No |
77 |
77 |
No |
Yes |
No |
12.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/LargestContentfulPaint/renderTime