summaryrefslogtreecommitdiff
path: root/tests/auto/declarative/qdeclarativeanchors/data/fill.qml
blob: 50fbbe097c26825c786b391d9cd45b10559626bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

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