aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml
deleted file mode 100644
index 84f362fe16..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400
- height: 400
-
- property int childCount: 0;
-
- Item {
- objectName: "testItem"
- width: childrenRect.width
- height: childrenRect.height
-
- Repeater {
- id: repeater
- model: childCount
- delegate: Rectangle {
- x: index*10
- y: index*20
- width: 10
- height: 20
-
- color: "red"
- }
- }
- }
-}