summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanchors/data/margins.qml
blob: 58bc8a80a2106927b06e9471cfbc5d02d8c861d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.7

Rectangle {
    width: 200; height: 200
    Rectangle {
        objectName: "filler"
        width: 50; height: 50; color: "blue"
        anchors.fill: parent;
	anchors.margins: 10
	anchors.leftMargin: 5
	anchors.topMargin: 6
    }
}