Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativebehaviors / data / startup2.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 800;
5     height: 480;
6
7     Text { id:theText; text: "hello world" }
8
9     Rectangle {
10         objectName: "innerRect"
11         color: "red"
12         x: theText.width
13         Behavior on x { NumberAnimation {} }
14         width: 100; height: 100
15     }
16 }