aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml
deleted file mode 100644
index 8359ad1bb4..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- width: 100; height: 200
- contentWidth: column.width; contentHeight: column.height
-
- Column {
- id: column
- Repeater {
- model: 4
- Rectangle { width: 200; height: 300; color: "blue" }
- }
- }
-}