summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml
blob: c052366717c9ca791ab0422ca430ac3e651594a2 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7

Rectangle {
    width: 200
    height: 200
    Text {
        Behavior on anchors.verticalCenterOffset { NumberAnimation { duration: 300; } }
        text: "Hello World"
    }
}