Remove tst_qquicktextinput::horizontalAlignment()
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquicktextedit / data / cursorTestInline.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         wrapMode: TextEdit.Wrap
9         objectName: "textEditObject"
10         width: 300; height: 300
11         cursorDelegate: Item {
12             id:cursorInstance
13             objectName: "cursorInstance"
14             property string localProperty: contextualProperty
15         }
16     }
17 }