do not change the src of broken images, as this prevents from being able to right-click on the image and see the server error, p=rdewit, r=me (closes #2318)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9771 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Éric Lemoine
2009-11-02 09:55:18 +00:00
parent d9fd39d547
commit 6568eb4d8a
5 changed files with 7 additions and 14 deletions

View File

@@ -177,15 +177,12 @@
}
function test_Util_imageLoadError(t) {
t.plan(2);
t.plan(1);
var blank_image_url = OpenLayers.Util.getImagesLocation() + "blank.gif";
var img = OpenLayers.Util.createImage(null, null, null, null, null, null,
null, false);
var img = OpenLayers.Util.createImage(null, null, null, null, null, null, null, false);
img._attempts = OpenLayers.IMAGE_RELOAD_ATTEMPTS + 1;
OpenLayers.Util.onImageLoadError.call(img);
t.ok(OpenLayers.Util.isEquivalentUrl(blank_image_url, img.src), 'broken image correctly has url for blank image as src');
t.ok(OpenLayers.Element.hasClass(img, 'olImageLoadError'), 'broken image has class olImageLoadError');
}