aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
deleted file mode 100644
index 83ec088a79..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 1.0
-import "../shared" 1.0
-
-Item {
- height: 50; width: 200
- Column {
- //Not an exhaustive echo mode test, that's in QLineEdit (since the functionality is in QLineControl)
- TestTextInput { id: main; focus: true; echoMode: TextInput.Password; passwordCharacter: '.' }
- TestText { text: main.text }
- }
-}