Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetext / font / BorderedText.qml
1 import QtQuick 1.0
2 import "../../shared" 1.0
3
4 TestText {
5     property color bcolor: "blue"
6     font.pixelSize: 10
7     text: "The quick brown fox\njumps over\nthe lazy dog."
8     Rectangle { id: border; color: "transparent"; border.color: bcolor; anchors.fill: parent; opacity: 0.2 }
9 }