aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/text_italic_bold_chinese.qml
blob: be93b869c8425a0124941c78d7ee41703a1e1bea (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

    Text {
        width: parent.width
        anchors.centerIn: parent
        font.pixelSize: 20
        wrapMode: Text.WrapAtWordBoundaryOrAnywhere
        text: "<i>滊煁 罞耖茭 醙醠鍖 箯</i>, 彃 榾毄 <b>螏螉褩</b> 籿紁羑"
        font.family: "Arial"
    }
}