aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml
deleted file mode 100644
index fcc683ae4d..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- property bool ok: false
- function check() {
- if (column.parent == contentItem)
- ok = true;
- }
-
- width: 100; height: 100
- contentWidth: column.width; contentHeight: column.height
- pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
- maximumFlickVelocity: 2000
-
- Column {
- id: column
- Repeater {
- model: 4
- Rectangle { width: 200; height: 300; color: "blue" }
- }
- }
-}