aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/attached.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimations/data/attached.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimations/data/attached.qml34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimations/data/attached.qml b/tests/auto/qtquick1/qdeclarativeanimations/data/attached.qml
deleted file mode 100644
index c5d5535bb7..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimations/data/attached.qml
+++ /dev/null
@@ -1,34 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 180; height: 200;
-
- Component {
- id: delegate
- Rectangle {
- id: wrapper
- width: 180; height: 200
- color: "blue"
-
- states: State {
- name: "otherState"
- PropertyChanges { target: wrapper; color: "green" }
- }
-
- transitions: Transition {
- PropertyAction { target: wrapper; property: "ListView.delayRemove"; value: true }
- ScriptAction { script: console.log(wrapper.ListView.delayRemove ? "on" : "off") }
- }
-
- Component.onCompleted: {
- console.log(ListView.delayRemove ? "on" : "off");
- wrapper.state = "otherState"
- }
- }
- }
-
- ListView {
- model: 1
- delegate: delegate
- }
-}