aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/merging/ComplexTemplate.qml
blob: 058b96982382623c57708388b21986904bc8e2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import QtQuick 2.1

Rectangle {
    id: root
    x: 10;
    y: 10;
    Rectangle {
        id: rectangle0
        x: 10;
        y: 10;
        height: 150
        width: 200
    }
    Rectangle {
        id: rectangle2
        x: 100;
        y: 100;
        anchors.fill: root
    }
    Rectangle {
        id: rectangle3
        x: 140;
        y: 180;
        gradient: Gradient {
            GradientStop {
                position: 0
                color: "black"
            }
            GradientStop {
                position: 1
                color: "white"
            }
        }
        Rectangle {
            id: rectangle4
            x: 10
            y: 20
            width: 200
            height: 50
            Rectangle {
                id: rectangle5
                x: 10
                y: 20
                width: 200
                height: 50
            }
        }
    }
}