LargestContentfulPaint: toJSON() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

The toJSON() method of the LargestContentfulPaint interface is a serializer; it returns a JSON representation of the LargestContentfulPaint object.

Syntax

js
toJSON()

Parameters

None.

Return value

A JSON object that is the serialization of the LargestContentfulPaint object.

The JSON doesn't contain the element property because it is of type Element, which doesn't provide a toJSON() operation.

Examples

Using the toJSON method

In this example, calling entry.toJSON() returns a JSON representation of the LargestContentfulPaint object.

js
const observer = new PerformanceObserver((list) => {
  list.getEntries().forEach((entry) => {
    console.log(entry.toJSON());
  });
});

observer.observe({ type: "largest-contentful-paint", buffered: true });

This would log a JSON object like so:

json
{
  "name": "",
  "entryType": "largest-contentful-paint",
  "startTime": 468.2,
  "duration": 0,
  "size": 19824,
  "renderTime": 468.2,
  "loadTime": 0,
  "id": "",
  "url": ""
}

To get a JSON string, you can use JSON.stringify(entry) directly; it will call toJSON() automatically.

Specifications

Specification
Largest Contentful Paint
# dom-largestcontentfulpaint-tojson

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
toJSON

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
No support
No support

See also