Remove tst_qquicktextinput::horizontalAlignment()
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquicktextedit / data / cursorTestExternal.qml
1 import QtQuick 2.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     property string contextualProperty: "Hello"
5     TextEdit {
6         text: "Hello world!"
7         id: textEditObject;
8         objectName: "textEditObject"
9         width: 300; height: 300
10         wrapMode: TextEdit.WordWrap
11         cursorDelegate: Cursor {
12             id:cursorInstance;
13             objectName: "cursorInstance";
14             localProperty: contextualProperty;
15         }
16     }
17 }