Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextinput / echoMode.qml
1 import QtQuick 1.0
2 import "../shared" 1.0
3
4 Item {
5     height: 50; width: 200
6     Column {
7         //Not an exhaustive echo mode test, that's in QLineEdit (since the functionality is in QLineControl)
8         TestTextInput { id: main; focus: true; echoMode: TextInput.Password; passwordCharacter: '.' }
9         TestText { text: main.text }
10     }
11 }