xref: /aosp_15_r20/external/skia/modules/canvaskit/htmlcanvas/htmlimage.js (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1function HTMLImage(skImage) {
2  this._skImage = skImage;
3  // These are writable but have no effect, just like HTMLImageElement
4  this.width = skImage.width();
5  this.height = skImage.height();
6  this.naturalWidth = this.width;
7  this.naturalHeight = this.height;
8  this.getSkImage = function() {
9    return skImage;
10  }
11}