Topic: Chrome and HTML5
The most recent version of Chrome seems to break the HTML5 runtime. It now throws the exception "Object #<a File> has no method 'getAsBinary'" when an upload attempt is made. Below is a quick fix that worked for me until an official fix is implemented.
Replace instances of:
sendBinaryBlob(nativeFile.getAsBinary());
with:
var reader = new FileReader();
reader.onload = function(e) {sendBinaryBlob(e.target.result)}
reader.readAsBinaryString(nativeFile);