aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/Help.qml
blob: f357aabcebbdae7075231d24bb57c9860307c7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0

Item {
    anchors.fill: parent

    Text { textFormat: Text.RichText; anchors.fill: parent; anchors.margins: 5; wrapMode: Text.WordWrap
        text: "<b>Qt Quick 2 System Testing</b><br><br>"+
        "Each system test qml \"application\" provides a basic visual element affected by one or more non-visual (functional) elements.<br>"+
        "Simply select the element you wish to test, and follow the instructions. Use the arrow to advance the test.<br>"
    }
}