Since opening window is the bane of our auto-testing existence -- browsers not
configured to allow popups, and so on -- add an option to turn off opening new windows. Patch the tests to check for open_window before using it, and bail out of tests early if they can't find it. By default, the auto-tests.html file will not allow any window opening. This gives us *slightly* smaller test coverage, with fewer false positives on test failures. git-svn-id: http://svn.openlayers.org/trunk/openlayers@8571 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -111,7 +111,12 @@
|
||||
}
|
||||
|
||||
function test_Element_getDimensions(t) {
|
||||
t.plan(4);
|
||||
if (!t.open_window) {
|
||||
t.plan(0);
|
||||
return;
|
||||
} else {
|
||||
t.plan(4);
|
||||
}
|
||||
|
||||
//shown
|
||||
t.open_window( "BaseTypes/Element.html", function( wnd ) {
|
||||
|
||||
Reference in New Issue
Block a user