summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicsanchors/data/fill.qml
blob: 902465c6e31382424e450a34e5a0fac0dd23794a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6

Rectangle {
    width: 200; height: 200
    Rectangle {
        objectName: "filler"
        width: 50; height: 50; color: "blue"
        anchors.fill: parent;
	anchors.leftMargin: 10;
	anchors.rightMargin: 20;
	anchors.topMargin: 30;
	anchors.bottomMargin: 40;
    }
}