()
| 12943 | }; |
| 12944 | |
| 12945 | var requestError = function() { |
| 12946 | // The response is always empty |
| 12947 | // See https://xhr.spec.whatwg.org/#request-error-steps and https://fetch.spec.whatwg.org/#concept-network-error |
| 12948 | completeRequest(callback, -1, null, null, '', 'error'); |
| 12949 | }; |
| 12950 | |
| 12951 | var requestAborted = function() { |
| 12952 | completeRequest(callback, -1, null, null, '', abortedByTimeout ? 'timeout' : 'abort'); |
nothing calls this directly
no test coverage detected