summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2011-03-02 00:02:59 (GMT)
committerAndrew den Exter <andrew.den-exter@nokia.com>2011-03-02 00:02:59 (GMT)
commit0f924a64646ef22ab4e3df40316c3a0034dc64ca (patch)
treec3a309a975dae04dc24157dee91beaa0cec4b825
parent119a8ddcd7c8de0607309b37f9ef83439b607f17 (diff)
downloadQt-0f924a64646ef22ab4e3df40316c3a0034dc64ca.zip
Qt-0f924a64646ef22ab4e3df40316c3a0034dc64ca.tar.gz
Qt-0f924a64646ef22ab4e3df40316c3a0034dc64ca.tar.bz2
Add QML file for TextEdit positionAt test.
Change-Id: I4632f77f87e8ced55a9959baaebd2b1624d0b568
-rw-r--r--tests/auto/declarative/qdeclarativetextedit/data/positionAt.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativetextedit/data/positionAt.qml b/tests/auto/declarative/qdeclarativetextedit/data/positionAt.qml
new file mode 100644
index 0000000..e010135
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativetextedit/data/positionAt.qml
@@ -0,0 +1,9 @@
+import QtQuick 1.0
+
+TextEdit {
+ focus: true
+ objectName: "myInput"
+ width: 50
+ height: 25
+ text: "This is\n a long piece of text"
+}