aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebehaviors/data/startup2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebehaviors/data/startup2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebehaviors/data/startup2.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebehaviors/data/startup2.qml b/tests/auto/qtquick1/qdeclarativebehaviors/data/startup2.qml
deleted file mode 100644
index eb627613d4..0000000000
--- a/tests/auto/qtquick1/qdeclarativebehaviors/data/startup2.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 800;
- height: 480;
-
- Text { id:theText; text: "hello world" }
-
- Rectangle {
- objectName: "innerRect"
- color: "red"
- x: theText.width
- Behavior on x { NumberAnimation {} }
- width: 100; height: 100
- }
-}