aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml')
-rw-r--r--tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml b/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml
new file mode 100644
index 0000000000..8ed05fc8d2
--- /dev/null
+++ b/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml
@@ -0,0 +1,28 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Controls.Basic
+
+Item {
+ id: root
+ objectName: "root"
+ width: 320
+ height: 240
+
+ FocusScope {
+ id: spinboxFocusScope
+ objectName: "spinboxFocusScope"
+ width: spinbox.width
+ height: spinbox.height
+ SpinBox {
+ id: spinbox
+ objectName: "spinbox"
+ editable: true
+ contentItem: TextField {
+ objectName: "spinboxContentItem"
+ }
+ }
+ }
+} \ No newline at end of file