summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/font/TestText.qml
blob: 690cb155ad48949bf1bc78860a1efa9edf896217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.0

Text {
    id: testText

    property color bcolor: "blue"

    text: "The quick brown fox\njumps over\nthe lazy dog."
    font.family: "Helvetica"
    font.pointSize: 16

    Rectangle { id: borderr; color: "transparent"; border.color: bcolor; anchors.fill: parent; opacity: 0.2 }
}