aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/nonTransitionBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimations/data/nonTransitionBug.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimations/data/nonTransitionBug.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimations/data/nonTransitionBug.qml b/tests/auto/qtquick1/qdeclarativeanimations/data/nonTransitionBug.qml
deleted file mode 100644
index 04741ff348..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimations/data/nonTransitionBug.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- width: 200
- height: 200
-
- Rectangle {
- id: mover
- objectName: "mover"
- }
-
- states: [
- State {
- name: "free"
- },
- State {
- name: "left"
- PropertyChanges {
- restoreEntryValues: false
- target: mover
- x: 0
- }
- }
- ]
-
- transitions: Transition {
- PropertyAnimation { properties: "x"; duration: 50 }
- }
-}