tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml
changeset 33 3e2da88830cd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml	Wed Aug 18 10:37:55 2010 +0300
@@ -0,0 +1,13 @@
+import Qt 4.7
+
+Rectangle{
+    width: 600
+    height: 200
+    Column{
+        MultilineEdit{
+            text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.';
+            width: 182; height: 60;
+        }
+        MultilineEdit{text: 'Hello world'}
+    }
+}