tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     2 
       
     3 Rectangle {
       
     4     width: 200
       
     5     height: 200
       
     6     Text {
       
     7         Behavior on anchors.verticalCenterOffset { NumberAnimation { duration: 300; } }
       
     8         text: "Hello World"
       
     9     }
       
    10 }