xmlhttprequest-timeout-aborted.js (927B)
1 if (this.document === undefined) 2 importScripts("xmlhttprequest-timeout.js"); 3 /* 4 This sets up three requests: 5 The first request will only be open()ed, not aborted, timeout will be TIME_REGULAR_TIMEOUT but will never triggered because send() isn't called. 6 After TIME_NORMAL_LOAD, the test asserts that no load/error/timeout/abort events fired 7 8 Second request will be aborted immediately after send(), test asserts that abort fired 9 10 Third request is set up to call abort() after TIME_NORMAL_LOAD, but it also has a TIME_REGULAR_TIMEOUT timeout. Asserts that timeout fired. 11 (abort() is called later and should not fire an abort event per spec. This is untested!) 12 */ 13 runTestRequests([ ["AbortedRequest", false, "only open()ed, not aborted"], 14 ["AbortedRequest", true, "aborted immediately after send()", -1], 15 ["AbortedRequest", true, "call abort() after TIME_NORMAL_LOAD", TIME_NORMAL_LOAD] ]);