Re-add anchors autotest for QtQuick 2.0.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickanchors / data / margins.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 200; height: 200
5     Rectangle {
6         objectName: "filler"
7         width: 50; height: 50; color: "blue"
8         anchors.fill: parent;
9         anchors.margins: 10
10         anchors.leftMargin: 5
11         anchors.topMargin: 6
12     }
13 }