aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebehaviors/data/startup.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebehaviors/data/startup.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebehaviors/data/startup.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebehaviors/data/startup.qml b/tests/auto/qtquick1/qdeclarativebehaviors/data/startup.qml
deleted file mode 100644
index fca416c08c..0000000000
--- a/tests/auto/qtquick1/qdeclarativebehaviors/data/startup.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400
- height: 400
-
- Rectangle {
- objectName: "innerRect"
- height: 100; width: 100; color: "green"
- property real targetX: 100
-
- x: targetX
- Behavior on x {
- NumberAnimation {}
- }
- }
-}