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