Reputation: 18918
Since both Safari and Chrome use Webkit, is it superfluous to test for compatibility in both browsers if a webpage looks fine in one?
Upvotes: 5
Views: 207
Reputation: 11
You must test on both browsers, and even across operating systems. Chrome and Safari renders differently, especially if you use custom fonts (via @font-face). I've found that even Chrome renders differently when used in Linux and Windows, while Safari renders differently when on Windows and the iPad.
Upvotes: 1
Reputation: 40149
You should definitely test both browsers. Even if they are using WebKit to do the rendering, there are many differences:
But, they are really similar, layout wise, you don't have to worry much (the fix is really minimal), but it is better to test to eliminate the really odd case.
Hope that helped!
Upvotes: 2
Reputation: 239230
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');
Upvotes: 6
Reputation: 38652
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:
Safari:
Upvotes: 9