making clearMouseCache work when document.body is not ready, which fixes a regression. r=bartvde (closes #3189)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@11730 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
ahocevar
2011-03-28 13:52:59 +00:00
parent f88f6cd6ed
commit e8f79d95b1
2 changed files with 17 additions and 6 deletions

View File

@@ -1593,8 +1593,20 @@
}
// test if we can call updateSize before document.body is ready. updateOk
// is tested in the test_updateSize function below
var earlyMap = new OpenLayers.Map();
var updateOk;
try {
earlyMap.updateSize();
updateOk = true;
} catch(e) {}
earlyMap.destroy();
function test_updateSize(t) {
t.plan(2);
t.plan(3);
// checking updateSize from outside this test function (see above)
t.ok(updateOk, "updateSize works before document.body is ready");
var map, moveToCnt, size;
@@ -1625,7 +1637,7 @@
map.updateSize();
t.eq(moveToCnt, 1, "updateSize move the map if it has a center");
map.destroy();
map.destroy();
}
function test_invisible_map(t) {