aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebehaviors/data/delayedRegistration.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebehaviors/data/delayedRegistration.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebehaviors/data/delayedRegistration.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebehaviors/data/delayedRegistration.qml b/tests/auto/qtquick1/qdeclarativebehaviors/data/delayedRegistration.qml
deleted file mode 100644
index aa384c335f..0000000000
--- a/tests/auto/qtquick1/qdeclarativebehaviors/data/delayedRegistration.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: container
-
- width: 400; height: 400;
- property Item myItem
-
- function doCreate() {
- myItem = myComponent.createObject(container)
- myItem.x = 100
- }
-
- Component {
- id: myComponent
- Rectangle {
- width: 100
- height: 100
- color: "green"
- Behavior on x { NumberAnimation { duration: 500 } }
- }
- }
-
- Component.onCompleted: doCreate()
-}