aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/groupedPropertyCrash.qml
blob: 6835902bc5653aad777987c67acb1dd91b447d90 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

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