Grinder is a system to automate the fuzzing of web browsers and the management of a large number of crashes.
BSD 3-Clause "New" or "Revised" License
415
stars
131
forks
source link
The first letter for jscript9/jscript.dll could be upcase #1
Closed
darkmage closed 12 years ago
so the better handle in internetexplorer.rb will be:
-if( path.include?( 'jscript9' ) ) +if( path.downcase.include?( 'jscript9' ) )
-elsif( path.include?( 'jscript' ) ) +elsif( path.downcase.include?( 'jscript' ) )
Thanks.