summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/repeater/basic2/basic2.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/repeater/basic2/basic2.xml')
-rw-r--r--tests/auto/declarative/visual/repeater/basic2/basic2.xml22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/auto/declarative/visual/repeater/basic2/basic2.xml b/tests/auto/declarative/visual/repeater/basic2/basic2.xml
deleted file mode 100644
index b16fbfe..0000000
--- a/tests/auto/declarative/visual/repeater/basic2/basic2.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<Rect color="blue" width="800" height="600" id="Page">
- <Component id="Delegate">
- <Rect color="red" width="100" height="100">
- <Text text="{name}" />
- </Rect>
- </Component>
-
- <HorizontalLayout>
- <Repeater component="{Delegate}">
- <dataSource>
- <ListModel>
- <Month>
- <name>January</name>
- </Month>
- <Month>
- <name>February</name>
- </Month>
- </ListModel>
- </dataSource>
- </Repeater>
- </HorizontalLayout>
-</Rect>