Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativestates / data / reset.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 640
5     height: 480
6     Image {
7         id: image
8         width: 40
9         source: "image.png"
10     }
11
12     states: State {
13         name: "state1"
14         PropertyChanges {
15             target: image
16             width: undefined
17         }
18     }
19 }