[Webkit-unassigned] [Bug 50222] New: [Qt] QML WebView inside a Flickable shows checkers pattern at startup

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 30 03:45:13 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=50222

           Summary: [Qt] QML WebView inside a Flickable shows checkers
                    pattern at startup
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Mac OS X 10.5
            Status: NEW
          Keywords: Qt
          Severity: Normal
          Priority: P3
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: henry.haverinen at nokia.com


This code snippet shows only checkers pattern until you move the view:

import Qt 4.7
import QtWebKit 1.0
Flickable {
    id: flick; width: 640; height: 400
    clip: true
    contentWidth: web.width; contentHeight: web.height
    WebView {
        id: web
        url: "http://qt.nokia.com" 
    }
}

If you add this workaround in the WebView, then it will render the page correctly:

        onLoadFinished: {
            flick.contentY += 1; 
        }

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list