We register for mousemove, we generate mousemove, and IE gives us event.type 'load'. This is likely the window event property.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@11318 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2011-02-23 13:48:49 +00:00
parent 61452e2821
commit 8284c81b3b

View File

@@ -58,7 +58,7 @@
// t.plan( 2 );
if (OpenLayers.BROWSER_NAME != "firefox" && OpenLayers.BROWSER_NAME != "mozilla") {
t.plan(5);
t.plan(4);
} else {
t.plan(0);
t.debug_print("Firefox gives different results for different browsers on setMap on EventPane, so just don't run it for now.")
@@ -100,7 +100,6 @@
}
t.eq(log.length, 1, "got one event");
t.eq(log[0] && log[0].type, "mousemove", "got mousemove event");
}