Why QTWebKit is so different from Google Chrome (Chromium)

I used the latest version of QtWebKit, which is version 2.2. But I have to say that it is nowhere near the current release of chromium. It does not have many CSS properties, it lacks anti-aliasing, it displays the rotation of images ugly, the text selection is implemented in chrome color very well, it scales everything that is much better on the page, just to name a few.

  • How much google contributes to webkit source?

  • Is it possible to use the chrome version of webkit with Qt?

  • How can I solve this problem and assure that my web application will display it perfectly in Xromium?

  • How do such differences in source code come about?

+6
source share
1 answer

1) They helped a bit. I don’t know how exactly an excellent reasonable amount.

2) This is definitely doable, maybe it's just a C ++ engine that you will need to wrap in Qt.

3) Keep in mind that while Chromium uses a modified version of WebKit, they also download other tools working on top of it to gain experience like this.

4) Differences such as these have such different needs. WebKit needs to be used to a large extent in many aspects, Chromium just has to be as good as possible.

+4
source

Source: https://habr.com/ru/post/898549/


All Articles