ajax module: no complete event on abort

ajax module: no complete event on abort

While refactoring $.ajax, I realized aborting a request doesn't fire complete. While this could make sense for early abort (beforeSend) since ajaxStart hasn't been fired yet, it is quite awkward later on when timeout does fire the event while being nothing more than an automated abort.
I also noticed no unit test breaks if I fire the event anyway so I was wondering if this was on purpose or if I could just fire the event for consistency's sake (and, if so, should I handle early and onload aborts differently?).


--