aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/text_background_color_styledtext.qml
blob: ebf3adc03589701f6b2009b7b2e57a9a2d708825 (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.StyledText
        text: "<body bgcolor=lightblue>Some text<br />Some more text</body>"
    }
}