aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/ordering/page.qml
blob: 5eeb153019acfc085b6896c684735082485a194a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.15
import QtQuick.Controls 2.15

Page {
    title: "Page"
    Accessible.role: Accessible.Pane

    header: Label {
        text: "Header"
    }

    footer: Label {
        text: "Footer"
    }

    Label {
        text: "Content item 1"
    }

    Label {
        text: "Content item 2"
    }
}