web api instance method
LayoutShiftAttribution: toJSON() method
Limited availability
The toJSON() method of the LayoutShiftAttribution interface is a serializer that returns a JSON representation of the LayoutShiftAttribution object.
Syntax
toJSON()
Parameters
None.
Return value
A JSON object that is the serialization of the LayoutShiftAttribution object.
Examples
The following example prints a JSON representation of the first item in sources to the console.
new PerformanceObserver((list) => {
for (const { sources } of list.getEntries()) {
if (sources) {
console.log(sources[0].toJSON());
}
}
}).observe({ type: "layout-shift", buffered: true });
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.