Re-add anchors autotest for QtQuick 2.0.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickanchors / data / loop1.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     id: rect
5     width: 120; height: 200; color: "white"
6     Text { id: text1; anchors.right: text2.right; text: "Hello" }
7     Text { id: text2; anchors.right: text1.right; anchors.rightMargin: 10; text: "World" }
8 }