aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickanchors/data/centerinRotation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickanchors/data/centerinRotation.qml')
-rw-r--r--tests/auto/declarative/qquickanchors/data/centerinRotation.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/declarative/qquickanchors/data/centerinRotation.qml b/tests/auto/declarative/qquickanchors/data/centerinRotation.qml
deleted file mode 100644
index 933a25c100..0000000000
--- a/tests/auto/declarative/qquickanchors/data/centerinRotation.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 200; height: 200
- Rectangle {
- objectName: "outer"
- rotation: 90
- width: 101; height: 101; color: "blue"
- anchors.centerIn: parent;
-
- Rectangle {
- objectName: "inner"
- width: 50; height: 50; color: "blue"
- anchors.centerIn: parent;
- }
- }
-}