Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetextinput / data / echoMode.qml
1 import QtQuick 1.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 }