aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickflickable/data/margins.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickflickable/data/margins.qml')
-rw-r--r--tests/auto/declarative/qquickflickable/data/margins.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/declarative/qquickflickable/data/margins.qml b/tests/auto/declarative/qquickflickable/data/margins.qml
deleted file mode 100644
index 4866bd8301..0000000000
--- a/tests/auto/declarative/qquickflickable/data/margins.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 2.0
-
-Flickable {
- width: 200; height: 200
- contentWidth: row.width; contentHeight: row.height
-
- topMargin: 20
- bottomMargin: 30
- leftMargin: 40
- rightMargin: 50
-
- Row {
- id: row
- Repeater {
- model: 4
- Rectangle { width: 400; height: 600; color: "blue" }
- }
- }
-}