aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml
deleted file mode 100644
index 59710a4cd3..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 1.1
-//Test that doubleclicking on the front of a word only selects that word, and not the word in front
-
-Item{
- width: 200
- height: 100
- TextInput{
- anchors.fill: parent
- readOnly: true
- selectByMouse: true
- text: "abc a cba test"
- }
-}