-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upload.onProgress in IE10 #10038
Comments
The event is supported on HttpRequest, I'm not sure that it is fully supported in IE on the HttpRequestUpload object. This syntax is tested & supported: Added this to the M5 milestone. |
This comment was originally written by DrColosso...@gmail.com No, this works even less. Now Chrome and co don't work as well. When using request.upload.onProress, I got results on some browsers, now I'm not able to see anything. |
I'm seeing this work properly on Chrome & FF, and have a fix in progress for IE. One thing though is that the progress event only seems to fire when the data is sufficiently large that it doesn't all get sent at once. |
Fixed with https://codereview.chromium.org/16376006/ Added Fixed label. |
This issue was originally filed by DrCol...@gmail.com
What steps will reproduce the problem?
Using upload.onProgress
e.g.
HttpRequest request = new HttpRequest();
request.upload.onProgress.listen((e) {
});
I know that old versions (inlcuding IE9) do not support this. But IE10 is supposted to support this event. See on SO http://stackoverflow.com/a/12866419/368003
What is the expected output? What do you see instead?
Proper processing of the event. The exception simply says
"onprogress is not a supported method on the object".
When i use the wonderfull (...) debugging dev tools, I can see that the XMLHTTPRequest Object has onprogress on it, so the transition from Dart to IE does seem to address the false method/property/call/...?
What version of the product are you using? On what operating system?
IE10, Win7, latest Dart build
The text was updated successfully, but these errors were encountered: