QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qquicklistview / data / Page.qml
1 import QtQuick 2.0
2
3 Item {
4     anchors.fill: parent
5     default property alias contentArea: contentItem.data
6     Item {
7         id: contentItem
8         anchors.fill: parent
9     }
10 }