aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickloader/data/active.7.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickloader/data/active.7.qml')
-rw-r--r--tests/auto/declarative/qquickloader/data/active.7.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qquickloader/data/active.7.qml b/tests/auto/declarative/qquickloader/data/active.7.qml
new file mode 100644
index 0000000000..a29e932f5e
--- /dev/null
+++ b/tests/auto/declarative/qquickloader/data/active.7.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.0
+Rectangle {
+ id: root
+ color: "blue"
+ width: 100; height: 100
+ property bool success: true
+
+ Loader {
+ active: false
+ anchors.fill: parent
+ sourceComponent: Rectangle { color: "red" }
+ onLoaded: { root.success = false; } // shouldn't be triggered if active is false
+ }
+}