()
| 13524 | }; |
| 13525 | |
| 13526 | var requestTimeout = function() { |
| 13527 | // The response is always empty |
| 13528 | // See https://xhr.spec.whatwg.org/#request-error-steps and https://fetch.spec.whatwg.org/#concept-network-error |
| 13529 | completeRequest(callback, -1, null, null, '', 'timeout'); |
| 13530 | }; |
| 13531 | |
| 13532 | xhr.onerror = requestError; |
| 13533 | xhr.ontimeout = requestTimeout; |
nothing calls this directly
no test coverage detected