summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml
blob: a5dd86a71c61c444c6a721de71fa01f0a6cc7eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.6
Rectangle {
    id: myRectangle

    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges { target: myRectangle; colr: "blue" }
    }
}