aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml
deleted file mode 100644
index 2ab73a1ff6..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400
- height: 200
-
- Item {
- objectName: "theItem"
- anchors.centerIn: parent
- width: childrenRect.width
- height: childrenRect.height
- Rectangle {
- id: text1
- anchors.verticalCenter: parent.verticalCenter
- width: 100; height: 100; color: "green"
- }
- Rectangle {
- anchors.left: text1.right
- anchors.verticalCenter: parent.verticalCenter
- width: 100; height: 100; color: "green"
- }
- }
-}