OffscreenCanvas: width property
Baseline 2023Newly available
Since March 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Note: This feature is available in Web Workers.
The width
property returns and sets the width of an OffscreenCanvas
object.
Value
Examples
Creating a new offscreen canvas and returning or setting the width of the offscreen canvas:
js
const offscreen = new OffscreenCanvas(256, 256);
offscreen.width; // 256
offscreen.width = 512;
Specifications
Specification |
---|
HTML # dom-offscreencanvas-width-dev |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
width |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
See also
OffscreenCanvas
, the interface this property belongs to.