aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_multiparagraph_partial_underline.qml
blob: 664270c0597153e6f4d85bc43acd780ef1ded23c (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
        textFormat: Text.RichText
        text: "<p>First line</p><p>Second <u>line</u></p><p><u>Third</u> line</p>"
    }

}