VideoContext icon indicating copy to clipboard operation
VideoContext copied to clipboard

TypeError: Invalid operand to 'instanceof': Function expected

Open kruncher opened this issue 4 years ago • 0 comments

image

The error occurs with Microsoft Edge:

78455999-4224c000-7699-11ea-9acc-3f6162293bd8

It seems to be caused by using the following:

const node = this.videoContext.image("/blank.png");

As a workaround I am able to do the following successfully:

window.ImageBitmap = function() { };
const node = this.videoContext.image("/blank.png");

kruncher avatar Apr 06 '20 09:04 kruncher