Closed
Description
This issue was originally filed by @pjako
new XMLHttpRequest.get(String url, onSuccess(XMLHttpRequest request)); while beeing a cool constructor for doing XMLHttpRequests it lacks support for bytearrays and blobs
How about chang it to something like this...
XMLHttpRequest.get(String url, onSuccess(XMLHttpRequest request), [String responseType]);
responseType = "text" | "bytearray" | "blob";