Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are a lot of tools out there for testing browsers side by side. However I want a tool that looks at your code and looks specifically at browser compatibility (it can do other stuff too, but focusing on browser compatibility). I have used JSLint and installed JSHint on Eclipse, and got lots of warnings, but never anything about browser compatibility. Is there an option on JSHint I am missing? I see "browser: true", but that does not do what I am looking for.

What I am trying to do is take an IE6 designed website, and prepare it to move over to IE7 and IE8, FF, and Chrome. This client side code is huge, so scraping the code by hand/testing would take months.

Would really love if there was an Eclipse plugin that did this, but if not I will settle for whatever.

Thanks in advance

share|improve this question
1  
1) validate the site against a newer doctype such as <!DOCTYPE html> 2) load the site into firefox 10 and look in the console for crap and fix that – mplungjan Apr 12 '12 at 20:35
12  
IE6 code? Throw it away and rewrite from scratch :-) – Bergi Apr 12 '12 at 20:37
2  
My Fx2/IE6 was completely salvageable and runs in IE8/Fx10/Chrome18/Safari5. Defensive coding is useful – mplungjan Apr 12 '12 at 20:38
4  
html5 doctype works everywhere as strict, even IE6 – gillesc Apr 12 '12 at 20:42
1  
It's good idea to place this code somewhere in your page: <!--[if IE 6]> <div id='ie'>Your gotta be sick using Internet Exporer 6.<br> Please use <a href='google.com/search?q=better+browser'; target='_blank'>any better browser</a>. </div> <![endif]--> – Radio Apr 12 '12 at 20:55
show 6 more comments

3 Answers

up vote 10 down vote accepted
+50

Regarding the browser option for http://www.jshint.com, it is meant only to provision common browser defined globals:

This option defines globals exposed by modern browsers: all the way from good ol' document and navigator to the HTML5 FileReader and other new developments in the browser world.

Note: this option doesn't expose variables like alert or console. See option devel for more information.

source: http://www.jshint.com/options/

I'm not aware of any tool that will do what you ask. Instead I caution that although you will likely have a number of JavaScript related issues (errors, bugs, incompatible APIs, missing/alternate functionality etc.) those will be relatively easily handled. Your real investment will be in validating the resulting markup, css & functionality of the website itself across the browser & OS matrix you are targeting, and best to my knowledge, no static code analysis tool will help that.

You will need to do this the hard way which is to create and execute a plan for this migration. You might look into leveraging many of the existing JavaScript frameworks that facilitate cross browser development (jQuery, Mootools, Prototype, Dojo just to name a few).

Also I'm a big fan of using VirtualBox to create and run virtual machines that I can install the various browser & OS combinations I'm testing. But before that I would start with any number of the following cross browser testing solutions such as (but not limited to):

You will likely find the 80/20 rule will apply to this migration. 20% of your time will net you 80% of the browser compatibility you desire, and 80% of the time will be spent getting the last 20% working :)

Oh and finally since this will likely result in a fair bit of code churn, I highly suggest investing in unit tests where you can ;)

cheers & good luck,

Marc.

share|improve this answer
1  
Consider adding Browser Stack to your list as well. I use it ALL the time, and its really, really helpful. It basically has a VM for every browser you want to test on with decent debugging tools (even in IE6) set up before hand for you. It can also do remote tunneling for connecting to your local test server. – gnarf Apr 22 '12 at 14:17
Thanks for that, I have heard of them but never tried it myself. But from what I read it's a rather good solution. I've added it to the list. – Marc Gagne Apr 22 '12 at 14:21
"use strict"

Write this at the beginning of every function you have. This will enable the strict mode in modern browsers (except IE). This strict mode restricts a lot what you can do in javascript, and prevents you from doing many errors.

Otherwise, there is no tool saying "hey, this won't work in IE because the event is not passed as an argument", and this kind of stuff.

share|improve this answer
IE 10 has implemented strict mode. Strict Mode (JavaScript) and ECMAScript 5 (ES5) strict mode – AllenSanborn May 6 at 14:39

Would testling work for your purposes?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.