summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2010-02-14 23:08:01 (GMT)
committerAaron McCarthy <aaron.mccarthy@nokia.com>2010-02-14 23:08:01 (GMT)
commit2d23e45c94b6115db2b1efadfe77841f481545ca (patch)
tree0e6ff89dbcc410dd2ef5b0e873473971f3dd1b07 /tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml
parent65e0628bd0cdcb43226dad05582a97a6ef218124 (diff)
parent42dda19d82ceea48f19d356cfaf2b26acb763df8 (diff)
downloadQt-2d23e45c94b6115db2b1efadfe77841f481545ca.zip
Qt-2d23e45c94b6115db2b1efadfe77841f481545ca.tar.gz
Qt-2d23e45c94b6115db2b1efadfe77841f481545ca.tar.bz2
Merge remote branch 'origin/master' into bearermanagement/integration
Conflicts: tests/auto/qlineedit/tst_qlineedit.cpp
Diffstat (limited to 'tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml')
-rw-r--r--tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml b/tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml
new file mode 100644
index 0000000..b01ddf8
--- /dev/null
+++ b/tests/auto/declarative/visual/qmlgraphicstextedit/qt-669.qml
@@ -0,0 +1,19 @@
+import Qt 4.6
+
+Rectangle {
+ Component { id: testableCursor
+ //Doesn't blink
+ Rectangle {
+ color:"black"
+ width:1
+ }
+ }
+ color: "green"
+ width:400;
+ height:40;
+ TextEdit {
+ focus: true;
+ cursorDelegate: testableCursor
+ text: "Jackdaws love my big sphinx of Quartz"
+ }
+}