Lines Matching refs:status
14 XHR_PROPS = ['status', 'statusText', 'responseText', 'responseXML'],
186 transaction.c = { status: 0, statusText: transaction.e };
256 * transaction. Response status and data are accessible, if
290 * Signals an HTTP response with status in the 2xx range.
308 * Signals an HTTP response with status outside of the 2xx range.
461 * or failure, based on the response HTTP status code, and fires the
471 var status;
473 // an XHR object's status property, after a request is aborted.
475 status = transaction.c.status;
477 status = 0;
481 if (status >= 200 && status < 300 || status === 304 || status === 1223) {
573 * <dd>Fires when the HTTP response status is within the 2xx
576 * <dd>Fires when the HTTP response status is outside the 2xx
818 <dd>Fires when the HTTP response status is within the 2xx
821 <dd>Fires when the HTTP response status is outside the 2xx
984 transaction.c = { status: 0, statusText: event };