aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/merging/RootReplacementExpected.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmldesigner/data/merging/RootReplacementExpected.qml')
-rw-r--r--tests/auto/qml/qmldesigner/data/merging/RootReplacementExpected.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/auto/qml/qmldesigner/data/merging/RootReplacementExpected.qml b/tests/auto/qml/qmldesigner/data/merging/RootReplacementExpected.qml
new file mode 100644
index 0000000000..02f75103f4
--- /dev/null
+++ b/tests/auto/qml/qmldesigner/data/merging/RootReplacementExpected.qml
@@ -0,0 +1,26 @@
+import QtQuick 2.1
+
+Item {
+ id: root
+
+ Rectangle {
+ id: rectangle0
+ Image {
+ id: rectangle1
+ x: 10
+ y: 10
+ width: 100
+ height: 150
+ source: "qt/icon.png"
+ }
+ }
+
+ Image {
+ id: rectangle4
+ x: 10
+ y: 10
+ width: 100
+ height: 150
+ source: "qt/realcool.jpg"
+ }
+}