summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/layouts/data/vertical-margin.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/layouts/data/vertical-margin.qml')
-rw-r--r--tests/auto/declarative/layouts/data/vertical-margin.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/declarative/layouts/data/vertical-margin.qml b/tests/auto/declarative/layouts/data/vertical-margin.qml
deleted file mode 100644
index a7e10ea..0000000
--- a/tests/auto/declarative/layouts/data/vertical-margin.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import Qt 4.6
-
-Item {
- width: 640
- height: 480
- VerticalLayout {
- margin: 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
- }
- }
-}