summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/transparent.qml
blob: c23b5f51c9ce86135874e81a9875786c988c883c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6

// The WebView background is transparent
// if the HTML does not specify a background
Rect {
    color: "green"
    width: Web.width
    height: Web.height
    WebView {
        id: Web
        html: "Hello <b>World!</b>"
    }
}