W3cubDocs

/Web APIs

LayoutShiftAttribution: node property

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The node read-only property of the LayoutShiftAttribution interface returns a Node representing the object that has shifted.

Value

A Node.

Examples

The following example prints the node of the first item in LayoutShift.sources to the console.

js

new PerformanceObserver((list) => {
  for (const { sources } of list.getEntries()) {
    if (sources) {
      console.log(sources[0].node);
    }
  }
}).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
node 84 84 No No 70 No 84 84 No 60 No 14.0

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/LayoutShiftAttribution/node