tsayen / dom-to-image

Generates an image from a DOM node using HTML5 canvas
Other
10.21k stars 1.68k forks source link

Safari (iOS & Mac) Canvas Element Error #372

Open dallaslu opened 3 years ago

dallaslu commented 3 years ago

Use case: description, code

Error when a canvas element has child nodes.

<canvas id="shape" height="100" width="100" style="height: 100px; width: 100px"> 1</canvas>

While:

<canvas id="shape" height="100" width="100" style="height: 100px; width: 100px"> </canvas>

works.

The Safari's result of shape.toDataURL() is different with other browsers'.

Browsers