Remove tst_qquicktextinput::horizontalAlignment()
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquicktextedit / data / cursorTest.qml
1 import QtQuick 2.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     property string contextualProperty: "Hello"
5     TextEdit {  text: "Hello world!"; id: textEditObject; objectName: "textEditObject"
6         width: 300; height: 300;
7         resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance"; property string localProperty: contextualProperty } } ]
8         cursorDelegate: cursor
9     }
10 }