aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanchors/data/fill.qml
blob: ff19675ef1439d215aec446d8788cbd08409cf70 (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;
    }
}