Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgpositioners / data / horizontal-animated-disabled.qml
1 import QtQuick 2.0
2
3 Item {
4     width: 640
5     height: 480
6
7     Row {
8         objectName: "row"
9         add: Transition {
10             enabled: false
11             NumberAnimation { properties: "x" }
12         }
13         move: Transition {
14             enabled: false
15             NumberAnimation { properties: "x" }
16         }
17         Rectangle {
18             objectName: "one"
19             color: "red"
20             x: -100;
21             width: 50
22             height: 50
23         }
24         Rectangle {
25             objectName: "two"
26             color: "blue"
27             x: -100;
28             visible: false
29             width: 50
30             height: 50
31         }
32         Rectangle {
33             objectName: "three"
34             x: -100;
35             color: "green"
36             width: 50
37             height: 50
38         }
39     }
40 }