()
| 12786 | }; |
| 12787 | |
| 12788 | var requestError = function() { |
| 12789 | // The response is always empty |
| 12790 | // See https://xhr.spec.whatwg.org/#request-error-steps and https://fetch.spec.whatwg.org/#concept-network-error |
| 12791 | completeRequest(callback, -1, null, null, '', 'error'); |
| 12792 | }; |
| 12793 | |
| 12794 | var requestAborted = function() { |
| 12795 | completeRequest(callback, -1, null, null, '', 'abort'); |
nothing calls this directly
no test coverage detected