QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickpositioners / data / vertical.qml
1 import QtQuick 2.0
2
3 Item {
4     width: 640
5     height: 480
6     Column {
7         objectName: "column"
8         Rectangle {
9             objectName: "one"
10             color: "red"
11             width: 50
12             height: 50
13         }
14         Rectangle {
15             objectName: "two"
16             color: "red"
17             width: 20
18             height: 10
19         }
20         Rectangle {
21             objectName: "three"
22             color: "red"
23             width: 40
24             height: 20
25         }
26     }
27 }