aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickpositioners/data/horizontal-animated.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickpositioners/data/horizontal-animated.qml')
-rw-r--r--tests/auto/declarative/qquickpositioners/data/horizontal-animated.qml47
1 files changed, 0 insertions, 47 deletions
diff --git a/tests/auto/declarative/qquickpositioners/data/horizontal-animated.qml b/tests/auto/declarative/qquickpositioners/data/horizontal-animated.qml
deleted file mode 100644
index a88c26b66c..0000000000
--- a/tests/auto/declarative/qquickpositioners/data/horizontal-animated.qml
+++ /dev/null
@@ -1,47 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- property bool testRightToLeft: false
- property bool testEnabled: false
-
- Row {
- objectName: "row"
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- add: Transition {
- enabled: testEnabled ? false : true
- NumberAnimation {
- properties: "x";
- }
- }
- move: Transition {
- enabled: testEnabled ? false : true
- NumberAnimation {
- properties: "x";
- }
- }
- Rectangle {
- objectName: "one"
- color: "red"
- x: -100;
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "blue"
- x: -100;
- visible: false
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "three"
- x: -100;
- color: "green"
- width: 50
- height: 50
- }
- }
-}