aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml
deleted file mode 100644
index 7af74accd9..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- width: 200
- height: 50
- contentWidth: 400
- contentHeight: 100
-
- Column {
- anchors.fill: parent
-
- TextInput {
- selectByMouse: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- }
- TextInput {
- selectByMouse: false
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- }
- }
-}