aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/nestedSameDirection.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickflickable/data/nestedSameDirection.qml')
-rw-r--r--tests/auto/quick/qquickflickable/data/nestedSameDirection.qml61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickflickable/data/nestedSameDirection.qml b/tests/auto/quick/qquickflickable/data/nestedSameDirection.qml
new file mode 100644
index 0000000000..d6574c3a58
--- /dev/null
+++ b/tests/auto/quick/qquickflickable/data/nestedSameDirection.qml
@@ -0,0 +1,61 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+
+Flickable {
+ id: root
+ width: 240
+ height: 320
+ readonly property real flickableContentHeight: 500
+ contentWidth: 800
+ contentHeight: flickableContentHeight
+ Column {
+ Rectangle {
+ width: 240
+ height: root.flickableContentHeight / parent.children.length
+ color: "lightsteelblue"
+
+ Flickable {
+ objectName: "nested1"
+ anchors.fill: parent
+ contentWidth: parent.width
+ contentHeight: flickableContentHeight
+
+ Repeater {
+ model: 3
+ Rectangle {
+ y: height * index
+ width: 96
+ height: root.flickableContentHeight / 3
+ color: Qt.rgba(Math.random() * 0.5, 0.5, 0.2, 1)
+ border.color: "black"
+ }
+ }
+ }
+ }
+ Rectangle {
+ width: 240
+ height: root.flickableContentHeight / parent.children.length
+ color: "steelblue"
+
+ Flickable {
+ objectName: "nested2"
+ anchors.fill: parent
+ contentWidth: parent.width
+ contentHeight: flickableContentHeight
+
+ Repeater {
+ model: 3
+ Rectangle {
+ y: height * index
+ width: 96
+ height: root.flickableContentHeight / 3
+ color: Qt.rgba(Math.random() * 0.65, 0.4, 0.3, 1)
+ border.color: "black"
+ }
+ }
+ }
+ }
+ }
+}