aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktext/data/pixelFontSizes.qml
blob: e3d81b682e7d4469d530810f7e72fb0f8d279c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0

Rectangle {
    width: 400
    height: 200

    property variant pixelSize: 6

    Text {
        objectName: "text"
        font.pixelSize: parent.pixelSize
        text: "This is<br/>a font<br/> size test."
    }

    Text {
        x: 200
        objectName: "textWithTag"
        font.pixelSize: parent.pixelSize
        text: "This is <h4>a font</h4> size test."
    }
}