Changeset 5472
- Timestamp:
- 12/17/07 10:44:00 (1 year ago)
- Files:
-
- trunk/openlayers/tests/auto-tests.html (modified) (1 diff)
- trunk/openlayers/tests/run-tests.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/tests/auto-tests.html
r5449 r5472 380 380 return RegExp.$1; 381 381 }else { 382 return ""; 383 } 382 var c = ''; 383 switch(typeof x) { 384 case 'string': 385 c = 'String'; 386 break; 387 case 'object': 388 c = 'Object'; 389 break; 390 default: 391 c = ''; 392 } 393 return c; } 384 394 } 385 395 Test.AnotherWay._is_array=function( x ) trunk/openlayers/tests/run-tests.html
r5447 r5472 346 346 return RegExp.$1; 347 347 }else { 348 return ""; 348 var c = ''; 349 switch(typeof x) { 350 case 'string': 351 c = 'String'; 352 break; 353 case 'object': 354 c = 'Object'; 355 break; 356 default: 357 c = ''; 358 } 359 return c; 349 360 } 350 361 }
