aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/Double.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimations/data/Double.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimations/data/Double.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimations/data/Double.qml b/tests/auto/qtquick1/qdeclarativeanimations/data/Double.qml
deleted file mode 100644
index b247fcee5f..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimations/data/Double.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: container
- property bool on: false
- border.color: "#ffffff"
- color: "green"
- width: 50
- height: 50
- NumberAnimation on x {
- objectName: "animation"
- running: container.on; from: 0; to: 600; loops: Animation.Infinite; duration: 2000
- }
-}