aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml
deleted file mode 100644
index 65caeddaa8..0000000000
--- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 1.0
-
-/* This test checks that animations do occur while the flickable is flicking */
-Rectangle {
- width: 200
- height: 400
- Flickable {
- id: flick
- anchors.fill: parent
- contentWidth: 1000; contentHeight: parent.height
- Rectangle {
- border.color: "black"
- border.width: 10
- width: 1000; height: 1000
- }
- }
- Rectangle {
- color: "red"
- width: 100; height: 100
- y: flick.contentX < 10 ? 300 : 0
- Behavior on y { NumberAnimation {} }
- }
-}