| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index d666ba001f0b3378f2ad9e0215458e4f812d36f4..9c25b79bfc23a02f9a0ce94d8f49ab067be2c1da 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -12960,6 +12960,13 @@ class HttpRequest extends EventTarget native "XMLHttpRequest" {
|
| completer.completeError(e);
|
| }, 1));
|
|
|
| + // IE9 RTM - XDomainRequest issued requests may abort if all event handlers
|
| + // not specified
|
| + // http://social.msdn.microsoft.com/Forums/ie/en-US/30ef3add-767c-4436-b8a9-f1ca19b4812e/ie9-rtm-xdomainrequest-issued-requests-may-abort-if-all-event-handlers-not-specified
|
| + JS('', '#.onprogress = {}', xhr);
|
| + JS('', '#.ontimeout = {}', xhr);
|
| + JS('', '#.timeout = Number.MAX_VALUE', xhr);
|
| +
|
| if (sendData != null) {
|
| JS('', '#.send(#)', xhr, sendData);
|
| } else {
|
|
|