aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebehaviors/data/parent.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebehaviors/data/parent.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebehaviors/data/parent.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebehaviors/data/parent.qml b/tests/auto/qtquick1/qdeclarativebehaviors/data/parent.qml
deleted file mode 100644
index d19da298b2..0000000000
--- a/tests/auto/qtquick1/qdeclarativebehaviors/data/parent.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- width: 400
- height: 400
- Rectangle {
- id: rect
- objectName: "MyRect"
- width: 100; height: 100; color: "green"
- Behavior on parent {
- SequentialAnimation {
- PauseAnimation { duration: 500 }
- PropertyAction {}
- }
- }
- }
- Item {
- id: newParent
- objectName: "NewParent"
- x: 100
- }
- states: State {
- name: "reparented"
- PropertyChanges {
- target: rect
- parent: newParent
- }
- }
-}