aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/customParser.qml
blob: a83ae7e8236869d4d93c88f844fb2f5daf96c251 (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 { target: root; color: "red" }
        },
        State {
            name: "blue_color"
            PropertyChanges { target: root; color: "blue" }
        }
    ]
}