aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickrectangle/data/multi-radius.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickrectangle/data/multi-radius.qml')
-rw-r--r--tests/auto/quick/qquickrectangle/data/multi-radius.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickrectangle/data/multi-radius.qml b/tests/auto/quick/qquickrectangle/data/multi-radius.qml
new file mode 100644
index 0000000000..18c74a2dd9
--- /dev/null
+++ b/tests/auto/quick/qquickrectangle/data/multi-radius.qml
@@ -0,0 +1,27 @@
+import QtQuick
+
+Item {
+ property alias firstRectangle: r1
+ property alias secondRectangle: r2
+ property alias thirdRectangle: r3
+ Rectangle {
+ id: r1
+ anchors.fill: parent
+ radius: 5
+ topLeftRadius: 10
+ bottomRightRadius: 2
+ }
+ Rectangle {
+ id: r2
+ anchors.fill: parent
+ radius: 5
+ topRightRadius: 10
+ bottomLeftRadius: 2
+ }
+ Rectangle {
+ id: r3
+ anchors.fill: parent
+ radius: 5
+ }
+}
+