dom / latest / offscreencanvas / height.html /

OffscreenCanvas.height

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

The height property returns and sets the height of an OffscreenCanvas object.

Value

Examples

Creating a new offscreen canvas and returning or setting the height of the offscreen canvas:

var offscreen = new OffscreenCanvas(256, 256);
offscreen.height; // 256
offscreen.height = 512;

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
height
69
79
44
No
56
No
69
69
No
48
No
10.0

See also

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