Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a summary of differences in rendering/behavior between QtWebKit and Chrome/Safari WebKit?

I wrote a simple Qt application (Windows+Mac) that uses QtWebKit to render a web site inside a window. But I already saw differences in layout and behavior between our app and Chrome (that uses WebKit as well), e.g.: - different fonts are displayed for the same web page - an html anchor link with "javascript:someFunction()" is not working

Is there somewhere a summary list of all such differences (not the entire QtWebKit bug list)? Also: is there a way to use a WebKit version more similar to Chrome in my application?

like image 619
Gil Avatar asked Feb 27 '23 23:02

Gil


1 Answers

WebKit requires the drawing functions to be provided by the platform. Chrome uses a different graphics/drawing library: skia and QtWebKit uses Qt as a the drawing engine.they're

Both skia and qt provide their own widgets which are used in drawing.

like image 182
Gaurav Khurana Avatar answered Apr 29 '23 12:04

Gaurav Khurana