JS: add HTMLCanvasElement.toDataURL overloads

This commit is contained in:
Alexey Andreev 2019-05-14 14:49:51 +03:00
parent ca50f72fe9
commit b57b628107

View File

@ -36,5 +36,9 @@ public interface HTMLCanvasElement extends HTMLElement, CanvasImageSource {
JSObject getContext(String contextId, JSObject attributes);
String toDataURL(String type, double quality);
String toDataURL(String type);
String toDataURL();
}