summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/layouts/data/vertical-spacing.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-05-08 05:04:29 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-05-08 05:04:29 (GMT)
commitdf7dce62777fb953d26fcd30d6f56dc16c945ac0 (patch)
tree79047a96a5b699d55c117719b757e99d593ca3d0 /tests/auto/declarative/layouts/data/vertical-spacing.qml
parent309de75f1e0ce2e85b2f58e34b876f902c9d0292 (diff)
downloadQt-df7dce62777fb953d26fcd30d6f56dc16c945ac0.zip
Qt-df7dce62777fb953d26fcd30d6f56dc16c945ac0.tar.gz
Qt-df7dce62777fb953d26fcd30d6f56dc16c945ac0.tar.bz2
Autotest format conversion.
Diffstat (limited to 'tests/auto/declarative/layouts/data/vertical-spacing.qml')
-rw-r--r--tests/auto/declarative/layouts/data/vertical-spacing.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/auto/declarative/layouts/data/vertical-spacing.qml b/tests/auto/declarative/layouts/data/vertical-spacing.qml
new file mode 100644
index 0000000..c364e3f
--- /dev/null
+++ b/tests/auto/declarative/layouts/data/vertical-spacing.qml
@@ -0,0 +1,25 @@
+Item {
+ width: 640
+ height: 480
+ VerticalLayout {
+ spacing: 10
+ Rect {
+ id: one
+ color: "red"
+ width: 50
+ height: 50
+ }
+ Rect {
+ id: two
+ color: "red"
+ width: 20
+ height: 10
+ }
+ Rect {
+ id: three
+ color: "red"
+ width: 40
+ height: 20
+ }
+ }
+}