Test for changing bounds of validators and acceptableInput
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgtextinput / data / qtbug-19956int.qml
1 import QtQuick 2.0
2
3 TextInput {
4     id: textinput
5     property real topvalue: 30
6     property real bottomvalue: 10
7     height: 50
8     width: 200
9     text: "20"
10     validator: IntValidator {
11         id: intvalidator
12         bottom: bottomvalue
13         top: topvalue
14     }
15 }