aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/ordering/page.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/accessibility/data/ordering/page.qml')
-rw-r--r--tests/auto/accessibility/data/ordering/page.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/auto/accessibility/data/ordering/page.qml b/tests/auto/accessibility/data/ordering/page.qml
new file mode 100644
index 00000000..8efafe32
--- /dev/null
+++ b/tests/auto/accessibility/data/ordering/page.qml
@@ -0,0 +1,23 @@
+import QtQuick
+import QtQuick.Controls
+
+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"
+ }
+}