aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebehaviors/data/groupProperty2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebehaviors/data/groupProperty2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebehaviors/data/groupProperty2.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebehaviors/data/groupProperty2.qml b/tests/auto/qtquick1/qdeclarativebehaviors/data/groupProperty2.qml
deleted file mode 100644
index c0b71cdb04..0000000000
--- a/tests/auto/qtquick1/qdeclarativebehaviors/data/groupProperty2.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- width: 400
- height: 400
- Rectangle {
- id: rect
- objectName: "MyRect"
- width: 100; height: 100; color: "green"
- Behavior on pos.x { NumberAnimation { duration: 500; } }
- }
- MouseArea {
- id: clicker
- anchors.fill: parent
- }
- states: State {
- name: "moved"
- when: clicker.pressed
- PropertyChanges {
- target: rect
- pos.x: 200;
- }
- }
-}