make Request.html pass again, it passes in Chrome7, IE7 and FF3, no functional change
git-svn-id: http://svn.openlayers.org/trunk/openlayers@10904 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
+30
-8
@@ -372,19 +372,41 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function test_abort(t) {
|
function test_abort(t) {
|
||||||
|
|
||||||
t.plan(0);
|
t.plan(0);
|
||||||
var fail = false;
|
|
||||||
OpenLayers.Request.XMLHttpRequest.onsend = function(args) {
|
var sendCalled;
|
||||||
fail = true;
|
|
||||||
}
|
// set up
|
||||||
|
|
||||||
|
var _open = OpenLayers.Request.XMLHttpRequest.prototype.open;
|
||||||
|
OpenLayers.Request.XMLHttpRequest.prototype.open = function() {
|
||||||
|
this.readyState = OpenLayers.Request.XMLHttpRequest.OPENED;
|
||||||
|
};
|
||||||
|
|
||||||
|
var _setRequestHeader = OpenLayers.Request.XMLHttpRequest.prototype.setRequestHeader;
|
||||||
|
OpenLayers.Request.XMLHttpRequest.prototype.setRequestHeader = function() {};
|
||||||
|
|
||||||
|
var _send = OpenLayers.Request.XMLHttpRequest.prototype.send;
|
||||||
|
OpenLayers.Request.XMLHttpRequest.prototype.send = function() {
|
||||||
|
sendCalled = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
// test
|
||||||
|
|
||||||
|
sendCalled = false;
|
||||||
|
OpenLayers.Request.issue().abort();
|
||||||
|
|
||||||
t.delay_call(0.5, function() {
|
t.delay_call(0.5, function() {
|
||||||
if (fail === true) {
|
if (sendCalled) {
|
||||||
t.fail("Send should not be called because request is aborted");
|
t.fail("Send should not be called because request is aborted");
|
||||||
}
|
}
|
||||||
OpenLayers.Request.XMLHttpRequest.onsend = null;
|
|
||||||
|
// tear down
|
||||||
|
OpenLayers.Request.XMLHttpRequest.prototype.open = _open;
|
||||||
|
OpenLayers.Request.XMLHttpRequest.prototype.setRequestHeader = _setRequestHeader;
|
||||||
|
OpenLayers.Request.XMLHttpRequest.prototype.send = _send;
|
||||||
});
|
});
|
||||||
var protocol = new OpenLayers.Protocol.HTTP();
|
|
||||||
protocol.abort(protocol.read());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user