diff options
author | Andrew den Exter <andrew.den-exter@nokia.com> | 2011-03-02 00:02:59 (GMT) |
---|---|---|
committer | Andrew den Exter <andrew.den-exter@nokia.com> | 2011-03-02 00:02:59 (GMT) |
commit | 0f924a64646ef22ab4e3df40316c3a0034dc64ca (patch) | |
tree | c3a309a975dae04dc24157dee91beaa0cec4b825 | |
parent | 119a8ddcd7c8de0607309b37f9ef83439b607f17 (diff) | |
download | Qt-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.qml | 9 |
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" +} |