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

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 9 12:31:19 PST 2010


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


Gopal Raghavan <gopal.1.raghavan at nokia.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gopal.1.raghavan at nokia.com




--- Comment #5 from Gopal Raghavan <gopal.1.raghavan at nokia.com>  2010-12-09 12:31:19 PST ---
Henry,

WebView needs preferredHeight and preferredWidth to be set. Once you set it you will not see checkers pattern.
for example:

Flickable {
    id: flick; width: 640; height: 400
    clip: true
    contentWidth: web.width; contentHeight: web.height
    WebView {
        id: web
        url: "http://qt.nokia.com" 
        preferredHeight: 400
        preferredWidth: 640
    }
}

Ideally, in the absense of preferredHeight/preferredWidth it would be nice to take parent dimensions.

What is the product requirement? 
To do fall back behavior or use mandatory preferred property.

Br,
--
Gopal

-- 
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