aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/scenegraph/data/text/text_multiline_partial_underline.qml
blob: 75cc37d185118aa0e24bf4685b039502d0ca1148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    width: 320
    height: 480
    clip: true

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

}