aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/shared/TestTextInput.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/shared/TestTextInput.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml b/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml
deleted file mode 100644
index 64938e043c..0000000000
--- a/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-import "../shared" 1.0
-
-TextInput {
- id: inp
- FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" }
- font.family: fixedFont.name
- font.pixelSize: 12
- cursorDelegate: Rectangle {
- width: 1;
- color: "black";
- visible: parent.cursorVisible//bug that 'inp' doesn't seem to work?
- }
-}