LargestContentfulPaint.url
The url
read-only property of the LargestContentfulPaint
interface returns the request url of the element, if the element is an image.
Value
A string
containing a URL.
Examples
The following example gets the LargestContentfulPaint
object and prints the value of url
to the console.
try {
let lcp;
const po = new PerformanceObserver((entryList) => {
const entries = entryList.getEntries();
const lastEntry = entries[entries.length - 1];
console.log(lastEntry.url);
});
po.observe({type: 'largest-contentful-paint', buffered: true});
} catch (e) {
// Do nothing if the browser doesn't support this API.
}
Specifications
Specification |
---|
Unknown specification # dom-largestcontentfulpaint-url |
Browser compatibility
BCD tables only load in the browser