aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickloader/data/parented.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickloader/data/parented.qml')
-rw-r--r--tests/auto/declarative/qquickloader/data/parented.qml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/auto/declarative/qquickloader/data/parented.qml b/tests/auto/declarative/qquickloader/data/parented.qml
deleted file mode 100644
index 1c19d4d1a5..0000000000
--- a/tests/auto/declarative/qquickloader/data/parented.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 2.0
-
-Item {
- id: root
- width: 300; height: 300
-
- Component {
- id: comp
- Rectangle {
- objectName: "comp"
- parent: root
- anchors.fill: parent
- color: "blue"
- }
- }
-
- Loader {
- width: 200; height: 200
- sourceComponent: comp
- }
-}