summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml
blob: 0e92e0ef67a33c42f81afbfd5e6978ceea7929ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.6
import org.webkit 1.0

WebView {
    url: "javaScript.html"
    javaScriptWindowObjects: [
        QtObject {
            property string qmlprop: "qmlvalue"
            WebView.windowObjectName: "myjsname"
        }
    ]
}