aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanimations/data/pauseBindingBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeanimations/data/pauseBindingBug.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeanimations/data/pauseBindingBug.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/declarative/qdeclarativeanimations/data/pauseBindingBug.qml b/tests/auto/declarative/qdeclarativeanimations/data/pauseBindingBug.qml
deleted file mode 100644
index 359cda166f..0000000000
--- a/tests/auto/declarative/qdeclarativeanimations/data/pauseBindingBug.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: rect
- width: 200
- height: 200
-
- property bool animating: false
- property int value: 0
-
- NumberAnimation on value {
- objectName: "animation"
- paused: !rect.animating
- to: 100
- duration: 50
- }
-}