Do I still need to test rendering in both Chrome and Safari if they both use Webkit?

后端 未结 5 564
面向向阳花
面向向阳花 2021-02-05 07:35

Is it necessary to test the rendering of my website in both Chrome and Safari despite the fact that both browsers implement the Webkit rendering engine underneath?

Is t

5条回答
  •  萌比男神i
    2021-02-05 08:07

    There are some slight differences, so I would test in both. Some examples:

    • By default Safari has 3rd-party cookies disabled, but Chrome has them enabled by default.
    • Safari does not store
    • Chrome keeps each browser window sandboxed in its own operating system process (multi-process model). Safari keeps all windows in one process. [Note though: The upcoming WebKit2 will have support for the multi-process model built in].
    • Chrome uses the V8 javascript engine, Safari uses Nitro.

    I know there a few other differences I have encountered, but I can't remember them off the top of my head. I'll update this post if any occur to me.

提交回复
热议问题