Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If Chrome and Safari are both based on WebKit, does that mean I don't have to test both browsers?

If Chrome and Safari are both based on WebKit, does that mean I don't have to test both browsers?

... or are there certain situations where I should explicitly test both Chrome and Safari?

like image 851
makerofthings7 Avatar asked Feb 04 '23 02:02

makerofthings7


1 Answers

Everything else beside the basic HTML rendering engine is still different. If only basic HTML/CSS compatibility is important, I guess it's fine to test one browser.

However, the JavaScript engines of Chrome and Safari are completely different, vector graphics are rendered by different engines, HTML5/video tag stuff is implemented completely different, etc. The list goes on.

Overall I'd recommend to test with both browsers.

like image 189
dietr Avatar answered Feb 12 '23 20:02

dietr