vote up 8 vote down star
2

I've tested in Chrome, do I need to test in Safari?

flag

68% accept rate
Tricky... your subject ask if you need to do more testing, and the body asks if it is enough. If I say "YES", what question have I said yes to? – some Dec 17 '08 at 4:43
oh right. hehe i'll edit. – nickf Dec 17 '08 at 5:12

7 Answers

vote up 12 vote down check

I've noticed Safari handles Asian characters better than Chrome. Also Chrome and Safari rely on the same Webkit for rendering pages, but their Javascript engines are totally different, so if you use Javascript in your pages you need to check both.

link|flag
+1 | Concise and complete. – Anthony Kanago Apr 26 at 3:51
vote up 2 vote down

Yes, but only for your fonts and JavaScripts.

I have noticed some of the default fonts are smaller on Safari then Chrome, also Chrome uses the V8 JavaScript engine which has caused some people problems, especially if you have a lot of form logic.

link|flag
"For 99% of the problems"? Then, that would be no, unless you're relying on statistical sampling rather than exhaustive testing (which isn't necessarily a bad thing, but you should be aware of its limitations). Still, if 99% is right, that's pretty damn good statistical sampling... – paxdiablo Dec 17 '08 at 4:41
Just for the record, I've reworded the question now, so this "yes" answer actually means "no, you don't need to test Safari". – nickf Dec 17 '08 at 15:01
vote up 1 vote down

yes.

Oh, you wanted more detail? Simply, Chrome and Safari have a lot of different features in their implementations, and Safari is pretty widely used. If you expect the general public, and particularly those of us who work on Macs, to use your application, it would behoove you to test in the Safari browser.

link|flag
Your one-liner and expansion don't seem to match - are you saying you should or shouldn't test in Safari as well as Chrome? – paxdiablo Dec 17 '08 at 4:43
His answer seems pretty clear to me - in both parts he's saying you should test in both – Dominic Rodger Dec 17 '08 at 16:02
vote up 0 vote down

In a word, No. You can't assume that because it works in one it will definitely work in all cases in the other. Sure, 99% of the time, it might be the same - but 99% isn't 100% - at least, it wasn't last time I checked. Call me a pedantic git if you like.

link|flag
You changed the question: Yes, you need to test in both browsers! – BenAlabaster Dec 18 '08 at 0:26
vote up 1 vote down

Yes, safari and chrome even though they are using webkit the two versions of webkit that are being used are significantly different. So you need to restest.

link|flag
vote up 4 vote down

Safari uses 'mac' fonts, but Chrome would use 'Windows' fonts. I've noticed that there can sometimes be problems where using a font like Arial, it shows up fine in firefox/chrome/ie, but on Safari, it can cause a line to wrap because the font is slightly bigger.

link|flag
Something may be wrong if your site depends on pixel-perfect accuracy (not talking about CSS standards here), especially with fonts... HTML was designed to simply not care what was done with the rendering. Regardless, you may forget to include "sans-serif" in your font-family list or something. – strager Dec 17 '08 at 5:12
Wish I could +1 comments. stranger is right, let the content flow or give enough space (+/-10%) for different browsers. Remember, remember, non-PC browsers. – voyager Feb 25 at 13:30
vote up 7 vote down

Browsershots will send you screen shots of your page in just about every browser ever made.

link|flag
that is a great tool, but unfortunately there's a lot more to testing than looking at a screenshot. – nickf Dec 17 '08 at 5:20
Not only that, but Browsershots queue these days is just way too long. – patricksweeney Apr 26 at 3:54

Your Answer

Get an OpenID
or

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