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