6b7f026e0b99d3c63346725f18f9ac8cfee67425
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qdeclarativeanimations / data / properties2.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 400
5     height: 400
6     Rectangle {
7         id: theRect
8         objectName: "TheRect"
9         color: "red"
10         width: 50; height: 50
11         x: 100; y: 100
12         NumberAnimation on x { targets: theRect; properties: "x"; to: 200; }
13     }
14 }