aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/repeater/basic1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/repeater/basic1.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/repeater/basic1.qml31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/auto/declarative/qmlvisual/repeater/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/basic1.qml
deleted file mode 100644
index 5d994b96a0..0000000000
--- a/tests/auto/declarative/qmlvisual/repeater/basic1.qml
+++ /dev/null
@@ -1,31 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "white"
- width: 120
- height: 240
- id: page
- Column{
- Repeater{
- delegate: Rectangle {
- color: "thistle"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- model: ListModel {
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- }
- }
-}