All tests now pass in IE.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@315 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Schuyler Erle
2006-05-24 05:46:54 +00:00
parent cfb1b472a7
commit 0e6b61c352
9 changed files with 66 additions and 20 deletions
+3
View File
@@ -887,6 +887,9 @@ Test.AnotherWay._test_page_onload=function()
script_text=script_text.substring( fun_start, script_text.length );
var fun_end=script_text.indexOf( '(' );
var fun_name=script_text.substring( "function ".length, fun_end );
var whitespace = fun_name.indexOf( ' ' );
if (whitespace >= 0)
fun_name = fun_name.substring( 0, whitespace );
test_page.test_objects.push( new Test.AnotherWay._test_object_t( fun_name ) );
script_text=script_text.substring( fun_end, script_text.length );
fun_start=script_text.indexOf( fun_sig );