aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebehaviors/data/runningTrue.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebehaviors/data/runningTrue.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebehaviors/data/runningTrue.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebehaviors/data/runningTrue.qml b/tests/auto/qtquick1/qdeclarativebehaviors/data/runningTrue.qml
deleted file mode 100644
index 25cdf10acf..0000000000
--- a/tests/auto/qtquick1/qdeclarativebehaviors/data/runningTrue.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- width:200; height:200
-
- property real myValue: 0
-
- Rectangle {
- anchors.centerIn: parent
- width: 100
- height: 100
- color: "green"
- smooth: true
- rotation: myValue
- Behavior on rotation {
- RotationAnimation { id: rotAnim; objectName: "rotAnim"; direction: RotationAnimation.Shortest }
- }
- }
-}