aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/customParser.qml
blob: 324ca20953c25e7b25694f3c65f6a3a4e6adcfe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0

Rectangle {
    id: root
    width: 100; height: 100

    states: [
        State {
            name: "red_color"
            PropertyChanges { root.color: "red" }
        },
        State {
            name: "blue_color"
            PropertyChanges { root.color: "blue" }
        }
    ]
}