aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/ListView/basic1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/ListView/basic1.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/basic1.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/auto/declarative/qmlvisual/ListView/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/basic1.qml
deleted file mode 100644
index 8c1b56e5dd..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/basic1.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 200
- height: 300
- id: page
- ListView {
- anchors.fill: parent
- delegate: Rectangle {
- color: "red"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- model: ListModel {
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- }
-}