summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qfxtextinput
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2009-10-28 08:03:16 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2009-10-28 08:04:52 (GMT)
commitc25bface8e20b472d1e50a82fdd85f7cda001f7e (patch)
treef060faf14e44538e098d71b190379ba1f653203c /tests/auto/declarative/qfxtextinput
parent14a30e841243fa31dd8fe024000e703f1985ef31 (diff)
downloadQt-c25bface8e20b472d1e50a82fdd85f7cda001f7e.zip
Qt-c25bface8e20b472d1e50a82fdd85f7cda001f7e.tar.gz
Qt-c25bface8e20b472d1e50a82fdd85f7cda001f7e.tar.bz2
Add missing file
Task-number: QT-2401
Diffstat (limited to 'tests/auto/declarative/qfxtextinput')
-rw-r--r--tests/auto/declarative/qfxtextinput/data/cursorTest.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qfxtextinput/data/cursorTest.qml b/tests/auto/declarative/qfxtextinput/data/cursorTest.qml
new file mode 100644
index 0000000..ddc98cc
--- /dev/null
+++ b/tests/auto/declarative/qfxtextinput/data/cursorTest.qml
@@ -0,0 +1,8 @@
+import Qt 4.6
+
+Rectangle { width: 300; height: 300; color: "white"
+ TextInput { text: "Hello world!"; id: textInputObject; objectName: "textInputObject"
+ resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance";} } ]
+ cursorDelegate: cursor
+ }
+}