aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickstates/data/nonExistantProp.qml
blob: ce502699bb05d41ec7ee756abb8fdb74cf731004 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
Rectangle {
    id: myRectangle

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