aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/verticallyAlignedImageInTable.qml
blob: 4c00362d158958203d70482c75bf2669e010bb05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    width: 320
    height: 480

    Text {
        anchors.centerIn: parent
        font.family: "Arial"
        font.pixelSize: 16
        textFormat: Text.RichText
        text: "<table><tr><td/><td valign=\"top\"><img src=\"images/face-sad.png\"></td></tr></table>"
    }
}