summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/font/BorderedText.qml
blob: fe4e2e7025f7a740e52677ca791011c42e2532ca (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 1.0
import "../../shared" 1.0

TestText {
    property color bcolor: "blue"
    font.pixelSize: 10
    text: "The quick brown fox\njumps over\nthe lazy dog."
    Rectangle { id: border; color: "transparent"; border.color: bcolor; anchors.fill: parent; opacity: 0.2 }
}