aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlqt/data/openUrlExternally_lib.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlqt/data/openUrlExternally_lib.qml')
-rw-r--r--tests/auto/qml/qqmlqt/data/openUrlExternally_lib.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlqt/data/openUrlExternally_lib.qml b/tests/auto/qml/qqmlqt/data/openUrlExternally_lib.qml
new file mode 100644
index 0000000000..4bf584d134
--- /dev/null
+++ b/tests/auto/qml/qqmlqt/data/openUrlExternally_lib.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+import "openUrlExternally_lib.js" as Test
+
+Item {
+ Component.onCompleted: Test.loadTest();
+
+ property bool testFile
+ onTestFileChanged: Test.loadFile();
+}