summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/transparent.qml
blob: 55308195b7ec4bcf34aa7b1b7a7b0748cad7aba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6
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>"
    }
}