Files
qt-creator/tests/auto/qml/qmldesigner/data/merging/ComplexStyle.qml
Michael Brüning b7155a6a04 Adjust test case data for complex test and reactivate it
Change-Id: I5e61971ff420f3193bca1f63040044833e26cca8
Reviewed-by: Michael Brüning <michael.bruning@qt.io>
2020-06-02 20:22:56 +00:00

47 lines
820 B
QML

import QtQuick 2.1
Item {
Rectangle {
id: rectangle0
Image {
id: rectangle1
x: 10
y: 10
height: 150
width: 100
source: "qt/icon.png"
}
}
Rectangle {
id: rectangle3
x: 140;
y: 180;
gradient: Gradient {
GradientStop {
position: 0
color: "white"
}
GradientStop {
position: 1
color: "black"
}
}
}
Rectangle {
id: rectangle5
x: 160
y: 220
width: 200
height: 50
}
Image {
id: rectangle4
x: 150;
y: 200;
height: 150
width: 100
source: "qt/realcool.jpg"
}
}