summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal2.qml
blob: 425d0e48fd098994061b2c1ba91fca05e2f52a8c (plain)
1
2
3
4
5
6
7
8
9
10
11
Rect {
    id: rect
    width: 120; height: 200; color: "white"
    Text { id: Text1; text: "Hello" }
    Text {
        id: Text2;
        anchors.baseline: Text1.baseline;
        anchors.top: Text1.top;
        text: "World"
    }
}