diff options
Diffstat (limited to 'tests/auto/declarative/qdeclarativewebview/data/javaScript.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativewebview/data/javaScript.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml b/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml new file mode 100644 index 0000000..07eee88 --- /dev/null +++ b/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml @@ -0,0 +1,11 @@ +import Qt 4.6 + +WebView { + url: "javaScript.html" + javaScriptWindowObjects: [ + QtObject { + property string qmlprop: "qmlvalue" + WebView.windowObjectName: "myjsname" + } + ] +} |