tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml
changeset 30 5dc02b23752f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml	Tue Jul 06 15:10:48 2010 +0300
@@ -0,0 +1,19 @@
+import Qt 4.7
+
+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"
+    }
+}