summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/transparent.qml
blob: 861482241876b04707949d9a07bd5c35b2d700db (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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>"
    }
}