aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanchors/data/loop2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanchors/data/loop2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanchors/data/loop2.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanchors/data/loop2.qml b/tests/auto/qtquick1/qdeclarativeanchors/data/loop2.qml
deleted file mode 100644
index 93430efb15..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanchors/data/loop2.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: container;
- width: 600;
- height: 600;
-
- Image {
- id: image1
- source: "http://labs.qt.nokia.com/blogs/wp-content/uploads/2009/03/3311388091_ac2a257feb.jpg"
- anchors.right: image2.left
- }
-
- Image {
- id: image2
- source: "http://labs.qt.nokia.com/blogs/wp-content/uploads/2009/03/oslo_groupphoto.jpg"
- anchors.left: image1.right
- anchors.leftMargin: 20
- }
-}