This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Aborted requests on IE9 are not completed #10214
Open
Description
In one of the applications we had to write a mechanism of aborting previous requests, when the new will be fired, you can see the simplified version here: http://plnkr.co/edit/ntDsVwDgG8digzjxBfKX.
The problem is, that after the change introduced in #9329 abortion of requests on IE9 stopped working, because "onabort" event is not supported there, which means that "completeRequest" function won't be called at all on abort.
In provided plunker you will see alert with message "ABORT" on all supported browsers except IE9.
Please have on mind, that IE9 is behaving weirdly when aborting the request, which was already fixed in Angular in #4940.