Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeitem / data / childrenRectBug3.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 300
5     height: 300
6
7     Rectangle {
8         height: childrenRect.height
9
10         Repeater {
11             model: 1
12             Rectangle { }
13         }
14     }
15 }