Remove tst_qquicktextinput::horizontalAlignment()
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquicktextedit / data / geometrySignals.qml
1 import QtQuick 2.0
2
3 Item {
4     width: 400; height: 500;
5     property int bindingWidth: text.width
6     property int bindingHeight: text.height
7
8     TextInput {
9         id: text
10         anchors.fill: parent
11     }
12 }