aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug2.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug2.qml b/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug2.qml
deleted file mode 100644
index d8b02e9b32..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug2.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- width:200; height:300
-
- Rectangle {
- id: rectangle
- objectName: "mover"
- color: "green"
- width:50; height:50
- }
-
- states: [
- State {
- name: "anchored"
- AnchorChanges {
- target: rectangle
- anchors.left: root.left
- anchors.right: root.right
- anchors.bottom: root.bottom
- }
- }
- ]
-}