aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml
deleted file mode 100644
index 901981263c..0000000000
--- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml
+++ /dev/null
@@ -1,36 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 320
- height: 240
- id: page
- Rectangle {
- id: myRectangle
- width: 100
- height: 100
- color: "red"
- x: 10
- }
- states: [
- State {
- when: myMouseArea.pressed
- name: "hello"
- PropertyChanges {
- target: myRectangle
- x: 50 + 50
- }
- }
- ]
- transitions: [
- Transition {
- NumberAnimation {
- properties: "x"
- }
- }
- ]
- MouseArea {
- id: myMouseArea
- anchors.fill: parent
- }
-}