aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickloader/data/initialPropertyValues.binding.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickloader/data/initialPropertyValues.binding.qml')
-rw-r--r--tests/auto/declarative/qquickloader/data/initialPropertyValues.binding.qml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/auto/declarative/qquickloader/data/initialPropertyValues.binding.qml b/tests/auto/declarative/qquickloader/data/initialPropertyValues.binding.qml
deleted file mode 100644
index e0df50a74a..0000000000
--- a/tests/auto/declarative/qquickloader/data/initialPropertyValues.binding.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 2.0
-
-Item {
- id: root
-
- property InitialPropertyValuesComponent testInstance
- testInstance: loader.item
-
- property int bindable: 1
- property int canaryValue: testInstance.canary
- property int behaviorCount: testInstance.behaviorCount
-
- Loader {
- id: loader
- objectName: "loader"
- }
-
- Component.onCompleted: {
- loader.setSource("InitialPropertyValuesComponent.qml", {"canary": (function() { return root.bindable })});
- }
-}