()
| 13514 | }; |
| 13515 | |
| 13516 | var requestError = function() { |
| 13517 | // The response is always empty |
| 13518 | // See https://xhr.spec.whatwg.org/#request-error-steps and https://fetch.spec.whatwg.org/#concept-network-error |
| 13519 | completeRequest(callback, -1, null, null, '', 'error'); |
| 13520 | }; |
| 13521 | |
| 13522 | var requestAborted = function() { |
| 13523 | completeRequest(callback, -1, null, null, '', abortedByTimeout ? 'timeout' : 'abort'); |
nothing calls this directly
no test coverage detected