scope matters

git-svn-id: http://svn.openlayers.org/trunk/openlayers@5384 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-12-12 17:45:39 +00:00
parent 4722009ade
commit 8f38213e86

View File

@@ -39,14 +39,14 @@
function test_02_Control_MousePosition_redraw_noLayer_displayProjection(t) {
t.plan(3);
control = new OpenLayers.Control.MousePosition();
map = new OpenLayers.Map('map');
var control = new OpenLayers.Control.MousePosition();
var map = new OpenLayers.Map('map');
map.addControl(control);
t.eq(control.div.innerHTML, "0.00000, 0.00000", "innerHTML set correctly");
control.redraw({'xy': new OpenLayers.Pixel(10,10)});
control.redraw({'xy': new OpenLayers.Pixel(12,12)});
t.eq(control.div.innerHTML, "0.00000, 0.00000", "innerHTML set correctly");
l = new OpenLayers.Layer('name', {'isBaseLayer': true});
var l = new OpenLayers.Layer('name', {'isBaseLayer': true});
map.addLayer(l);
map.zoomToMaxExtent();
control.redraw({'xy': new OpenLayers.Pixel(10,10)});