aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickloader/data/initialPropertyValues.5.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickloader/data/initialPropertyValues.5.qml')
-rw-r--r--tests/auto/declarative/qquickloader/data/initialPropertyValues.5.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/declarative/qquickloader/data/initialPropertyValues.5.qml b/tests/auto/declarative/qquickloader/data/initialPropertyValues.5.qml
deleted file mode 100644
index 03ee599aba..0000000000
--- a/tests/auto/declarative/qquickloader/data/initialPropertyValues.5.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-import QtQuick 2.0
-
-Item {
- id: root
- property int initialValue: 0
- property int behaviorCount: 0
-
- Loader {
- id: loader
- objectName: "loader"
- onLoaded: {
- root.initialValue = loader.item.canary; // should be zero, but no error
- root.behaviorCount = loader.item.behaviorCount; // should be zero
- }
- }
-
- Component.onCompleted: {
- loader.setSource("InitialPropertyValuesComponent.qml");
- }
-}