aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug.qml37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug.qml b/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug.qml
deleted file mode 100644
index 6277111e68..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/anchorRewindBug.qml
+++ /dev/null
@@ -1,37 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- id: container
- color: "red"
- height: 200
- width: 200
- Column {
- id: column
- objectName: "column"
- anchors.left: container.right
- anchors.bottom: container.bottom
-
- Rectangle {
- id: rectangle
- color: "blue"
- height: 100
- width: 200
- }
- Rectangle {
- color: "blue"
- height: 100
- width: 200
- }
- }
- states: State {
- name: "reanchored"
- AnchorChanges {
- target: column
- anchors.left: undefined
- anchors.right: container.right
- }
- PropertyChanges {
- target: rectangle
- opacity: 0
- }
- }
-}