summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/transparent.qml
blob: a0676f4ea79b39570a62fd746735ac2f07f4b923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7
import org.webkit 1.0

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