Changeset 8004
- Timestamp:
- 10/23/07 17:41:44 (2 years ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/test/lib/jstest.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r7994 r8004 1 1 *SVN* 2 3 * Fix the test runner for Firefox in Leopard. [sam] 2 4 3 5 * Use String#include wherever possible. spinoffs/prototype/trunk/test/lib/jstest.rb
r7983 r8004 40 40 41 41 def visit(url) 42 applescript('tell application "Firefox" to Get URL "' + url + '"') if macos?42 system("open -a Firefox '#{url}'") if macos? 43 43 system("#{@path} #{url}") if windows? 44 44 system("firefox #{url}") if linux?