aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanchors/data/loop1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanchors/data/loop1.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanchors/data/loop1.qml8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanchors/data/loop1.qml b/tests/auto/qtquick1/qdeclarativeanchors/data/loop1.qml
deleted file mode 100644
index def48fae52..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanchors/data/loop1.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: rect
- width: 120; height: 200; color: "white"
- Text { id: text1; anchors.right: text2.right; text: "Hello" }
- Text { id: text2; anchors.right: text1.right; anchors.rightMargin: 10; text: "World" }
-}