Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgtextinput / data / echoMode.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     property QtObject myInput: input
5
6     width: 400; height: 200; color: "green"
7
8     TextInput { id: input; focus: true
9         text: "ABCDefgh"
10     }
11 }