aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml
blob: 8aa590bca1386174bccbef88e4c647aee8060f07 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

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