summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/transparent.qml
blob: 0807cc5b76d82b0b74d10ca75db8a03067e5770d (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
Rectangle {
    color: "green"
    width: Web.width
    height: Web.height
    WebView {
        id: Web
        html: "Hello <b>World!</b>"
    }
}