aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickanchors/data/margins.qml
blob: 9403f65a615bdb6f50cc0b8be00d5b0019a4451d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

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