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