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

Rectangle {
    width: 200
    height: 200
    color: "white"
    Text {
        objectName: "text"
        textFormat: Text.RichText
        anchors.fill: parent
        color: "black"
        text: "<h1 style=\"background-color:rgba(255,255,255,0.00)\">foo</h1>"
        verticalAlignment: Text.AlignTop
        horizontalAlignment: Text.AlignLeft
    }
}