summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
blob: 618a65f0636f7c14e5bda6794c06bd23d3d0ec3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 1.0
import "../../shared" 1.0

Rectangle {
    id: s; width: 600; height: 100;
    property string text: "The quick brown fox jumps over the lazy dog."
    TestText {
        text: s.text
        anchors.verticalCenter: s.verticalCenter
    }
    TestText {
        text: s.text
        anchors.baseline: s.verticalCenter
    }
}