aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/qtbug21549.qml
blob: db076bca9a4dc429d6b109b57fcd3f448de7852a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

Item {
    width: 200
    height: 200

    property int behaviorCount: 0

    Rectangle {
        id: myRect
        objectName: "myRect"
        width: 100
        height: 100
        Behavior on x {
            ScriptAction { script: ++behaviorCount }
        }
    }
}