aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/dontStart2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimations/data/dontStart2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimations/data/dontStart2.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimations/data/dontStart2.qml b/tests/auto/qtquick1/qdeclarativeanimations/data/dontStart2.qml
deleted file mode 100644
index 2563c01d4f..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimations/data/dontStart2.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: wrapper
- width: 600
- height: 400
-
- Rectangle {
- id: redRect
- width: 100; height: 100
- color: Qt.rgba(1,0,0)
-
- transitions: Transition {
- SequentialAnimation {
- NumberAnimation { id: myAnim; objectName: "MyAnim"; running: true }
- }
- }
- }
-}