aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanchors/data/baselineOffset.qml
blob: 8bae61d16d3e81d7731e9cc7cc451a5143612548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Item {
    width: 200
    height: 200

    Item {
        objectName: "baselineAnchored"

        width: 200
        height: 10

        anchors.baseline: parent.verticalCenter
    }
}