aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickflickable/data/flickable03.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickflickable/data/flickable03.qml')
-rw-r--r--tests/auto/declarative/qquickflickable/data/flickable03.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qquickflickable/data/flickable03.qml b/tests/auto/declarative/qquickflickable/data/flickable03.qml
new file mode 100644
index 0000000000..ebc49ba90a
--- /dev/null
+++ b/tests/auto/declarative/qquickflickable/data/flickable03.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.0
+
+Flickable {
+ width: 100; height: 200
+ contentWidth: column.width; contentHeight: column.height
+
+ Column {
+ id: column
+ Repeater {
+ model: 4
+ Rectangle { width: 200; height: 300; color: "blue" }
+ }
+ }
+}