aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_multiline_partial_underline.qml
blob: a32baae4123da088aa7cce3f83f8af0d7375f811 (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
    clip: true

    TextEdit {
        anchors.centerIn: parent
        font.pixelSize: 16
        textFormat: Text.RichText
        text: "First line<br />Second <u>line<br />Third</u> line"
    }

}