Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgloader / data / active.7.qml
1 import QtQuick 2.0
2 Rectangle {
3     id: root
4     color: "blue"
5     width: 100; height: 100
6     property bool success: true
7
8     Loader {
9         active: false
10         anchors.fill: parent
11         sourceComponent: Rectangle { color: "red" }
12         onLoaded: { root.success = false; } // shouldn't be triggered if active is false
13     }
14 }