aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml b/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml
deleted file mode 100644
index 4f58944672..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: top
- width: 200; height: 70;
-
- property alias horizontalAlignment: text.horizontalAlignment
- property string text: "اختبا"
-
- Rectangle {
- anchors.centerIn: parent
- width: 180
- height: 20
- color: "green"
-
- Text {
- id: text
- objectName: "text"
- anchors.fill: parent
- text: top.text
- }
- }
-}