Remove tst_qquicktextinput::horizontalAlignment()
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquicktextedit / data / hAlignVisual.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 200
5     height: 100
6
7     Text {
8         objectName: "textItem"
9         text: "AA\nBBBBB\nCCCCCCCCCCCCCCCC"
10         anchors.centerIn: parent
11         horizontalAlignment: Text.AlignLeft
12     }
13 }