aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/ActiveComponent.qml
blob: 24c6f7ad91ed98e7fe9ae03fa98269d757349458 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Item {
    id: behaviorCounter
    property int behaviorCount: 0
    property int canary: 0

    Behavior on canary {
        NumberAnimation { target: behaviorCounter; property: "behaviorCount"; to: (behaviorCounter.behaviorCount + 1); duration: 0 }
    }
}