aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquicktextinput/data/cursorTest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquicktextinput/data/cursorTest.qml')
-rw-r--r--tests/auto/declarative/qquicktextinput/data/cursorTest.qml9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/auto/declarative/qquicktextinput/data/cursorTest.qml b/tests/auto/declarative/qquicktextinput/data/cursorTest.qml
deleted file mode 100644
index 71a420ee7c..0000000000
--- a/tests/auto/declarative/qquicktextinput/data/cursorTest.qml
+++ /dev/null
@@ -1,9 +0,0 @@
-import QtQuick 2.0
-
-Rectangle { id:rect; width: 300; height: 300; color: "white"
- property string contextualProperty: "Hello"
- TextInput { text: "Hello world!"; id: textInputObject; objectName: "textInputObject"
- resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance"; property string localProperty: contextualProperty } } ]
- cursorDelegate: cursor
- }
-}