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

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
    }
}