summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal2.qml
blob: 978be524da3cec1bc2d12cdbe04376419e7a0009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6

Rectangle {
    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"
    }
}