aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/text_background_color.qml
blob: 4c6fa16bc24c560b340f3e5a8b737f1439fbbe29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    width: 320
    height: 480

    Text {
        anchors.centerIn: parent
        font.pixelSize: 16
        color: "green"
        textFormat: Text.RichText
        text: "<body bgcolor=lightblue>Some text<br />Some more text</body>"
    }
}