LayoutShiftAttribution: toJSON() method
The toJSON()
method of the LayoutShiftAttribution
interface is a serializer that returns a JSON representation of the LayoutShiftAttribution
object.
Syntax
Parameters
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 LayoutShift.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
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 |
toJSON |
84 |
84 |
No |
No |
70 |
No |
84 |
84 |
No |
60 |
No |
14.0 |