Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a need to test webpages in both Safari and Chrome?

Since both Safari and Chrome use Webkit, is it superfluous to test for compatibility in both browsers if a webpage looks fine in one?

like image 626
wrongusername Avatar asked Jan 29 '11 07:01

wrongusername


People also ask

Is it important to test the webpage in different browsers?

Website testing from multiple browsers can help make sure your company makes a good impression on potential customers and existing customers. Automated testing of your website can help you make sure your website always works correctly, responds quickly, and displays correctly.

Can I use both Google Chrome and Safari?

Yes. All browsers act independently, allowing you to run multiple browsers at the same time. The only issue you may experience is browsers "fighting" over which should be the default.


2 Answers

No, it is not.

As far as I have experienced, Safari and Chrome (on OS X) seem to render fonts differently. Safari will display fonts without a specified size significantly smaller than in Chrome.

Chrome: enter image description here

Safari: enter image description here

like image 110
slhck Avatar answered Dec 31 '22 08:12

slhck


You should test both browsers if your site has any significant amount of JavaScript, as there are differences. For example, the following causes a JavaScript error in Safari but not Chrome.

var x = new Date('02-22-2011');
like image 44
meagar Avatar answered Dec 31 '22 09:12

meagar