Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgflickable / data / margins.qml
1 import QtQuick 2.0
2
3 Flickable {
4     width: 200; height: 200
5     contentWidth: row.width; contentHeight: row.height
6
7     topMargin: 20
8     bottomMargin: 30
9     leftMargin: 40
10     rightMargin: 50
11
12     Row {
13         id: row
14         Repeater {
15             model: 4
16             Rectangle { width: 400; height: 600; color: "blue" }
17         }
18     }
19 }