aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimatedimage/data/qtbug-16520.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimatedimage/data/qtbug-16520.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimatedimage/data/qtbug-16520.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimatedimage/data/qtbug-16520.qml b/tests/auto/qtquick1/qdeclarativeanimatedimage/data/qtbug-16520.qml
deleted file mode 100644
index cf5b60110b..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimatedimage/data/qtbug-16520.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 500
- height: 500
-
- AnimatedImage {
- objectName: "anim"
- anchors.centerIn: parent
- asynchronous: true
- opacity: status == AnimatedImage.Ready ? 1 : 0
-
- Behavior on opacity {
- NumberAnimation { duration: 1000 }
- }
- }
-}