ResizeObserverEntry: devicePixelContentBoxSize property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
ThedevicePixelContentBoxSize
read-only property oftheResizeObserverEntry
interface returns an array containing the size in device pixels of the observed element when the callback is run.
In this article
Value
An array containing objects with the new size of the observed element in device pixels. Thearray is necessary to support elements that have multiple fragments, which occur inmulti-column scenarios. Each object in the array contains two properties:
blockSize
The size of the content-box, in device pixels, of the block dimension of the observed element. For boxeswith a horizontal
writing-mode
, this is the vertical dimension, orheight; if the writing-mode is vertical, this is the horizontal dimension, or width.inlineSize
The size of the content box, in device pixels, of the inline direction of the observed element. For boxeswith a horizontal
writing-mode
, this is the horizontal dimension, orwidth; if the writing-mode is vertical, this is the vertical dimension, or height.
Note:For more information about writing modes and block and inlinedimensions, readHandling different text directions.
Examples
The following example is taken from the articlePixel-perfect rendering with devicePixelContentBox. As the callback function of aResizeObserver
is called after layout but before paint.This provides an opportunity to log the exact size in physical pixels toensure a one-to-one mapping of canvas pixels to physical pixels.
const observer = new ResizeObserver((entries) => { const entry = entries.find((entry) => entry.target === canvas); canvas.width = entry.devicePixelContentBoxSize[0].inlineSize; canvas.height = entry.devicePixelContentBoxSize[0].blockSize; /* … render to canvas … */});observer.observe(canvas, { box: "device-pixel-content-box" });
Specifications
Specification |
---|
Resize Observer> # dom-resizeobserverentry-devicepixelcontentboxsize> |
Browser compatibility
Loading…