Fix mousehweel test in opera.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@4083 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2007-08-28 22:12:44 +00:00
parent cbaebbc177
commit 5b3221b8e3

View File

@@ -55,7 +55,9 @@
});
handler.setMap(map);
handler.activate();
handler.onWheelEvent({'target':map.div, wheelDelta: 120});
var delta = 120;
if (window.opera) delta = -delta;
handler.onWheelEvent({'target':map.div, wheelDelta: delta});
t.ok(pass, "evt.xy was set even without a mouse move");
}