RESOLVED WORKSFORME 40130
[Qt] Rendering artifacts when scrolling with a fixed div having a box-shadow
https://bugs.webkit.org/show_bug.cgi?id=40130
Summary [Qt] Rendering artifacts when scrolling with a fixed div having a box-shadow
juha.turunen
Reported 2010-06-03 11:08:43 PDT
Created attachment 57790 [details] HTML for reproducing the bug After loading the attached HTML to a QWebView, the drawn shadow is 'left behind' when scrolling the page upwards. When scrolling down the shadow seems to disappear under the fixed position div. Tried this both on Symbian^3 HW and emulator with a quite new Qt 'unstable' release (please contact me by email if you need more specific details). The same HTML viewed with Anomaly (on the same HW) doesn't seem to suffer from this same problem. The app I used to reproduce the problem was this minimal one: int main(int argc, char *argv[]) { QApplication a(argc, argv); #if defined (Q_OS_SYMBIAN) qt_SetDefaultIap(); #endif QWebView view; QPalette pal = view.palette(); pal.setBrush(QPalette::Window, Qt::white); pal.setBrush(QPalette::Base, Qt::white); pal.setBrush(QPalette::Background, Qt::white); view.setPalette(pal); QNetworkProxyFactory::setUseSystemConfiguration(true); view.load(QUrl("file:///C:/data/artifacts.html")); view.show(); return a.exec(); }
Attachments
HTML for reproducing the bug (1.63 KB, text/html)
2010-06-03 11:08 PDT, juha.turunen
no flags
Benjamin Poulain
Comment 1 2010-11-10 05:32:38 PST
I think I fixed that some times ago. You were probably testing the 4.6 branch and not WebKit trunk.
Note You need to log in before you can comment on or make changes to this bug.