Firefox Tomorrow

web api instance property

LayoutShiftAttribution: previousRect property

View on MDN ↗

Limited availability

The previousRect read-only property of the LayoutShiftAttribution interface returns a DOMRectReadOnly object representing the position of the element before the shift.

Value

A DOMRectReadOnly object.

Examples

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

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