Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgloader / data / QTBUG_17114.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     property real loaderWidth: loader.width
5     property real loaderHeight: loader.height
6     width: 200
7     height: 200
8
9     Loader {
10         id: loader
11         sourceComponent: Item {
12             property real iwidth: 32
13             property real iheight: 32
14             width: iwidth
15             height: iheight
16         }
17     }
18 }