aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/runningTrueBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimations/data/runningTrueBug.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimations/data/runningTrueBug.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimations/data/runningTrueBug.qml b/tests/auto/qtquick1/qdeclarativeanimations/data/runningTrueBug.qml
deleted file mode 100644
index 7d33ed7175..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimations/data/runningTrueBug.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- color: "skyblue"
- width: 500
- height: 200
- Rectangle {
- objectName: "cloud"
- color: "white"
- y: 50
- width: 100
- height: 100
-
- SequentialAnimation on x {
- loops: Animation.Infinite
- running: true
- NumberAnimation {
- id: firstAnimation
- from: 0
- to: 500
- duration: 5000
- }
- NumberAnimation {
- id: secondAnimation
- from: -100
- to: 0
- duration: 1000
- }
- }
- }
-}