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

Item {
    width: 320
    height: 480

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