aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml
deleted file mode 100644
index 3114c48209..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: top
- width: 70; height: 70;
-
- property alias horizontalAlignment: text.horizontalAlignment
- property string text: "Test"
-
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 20
- color: "green"
-
- TextInput {
- id: text
- anchors.fill: parent
- text: top.text
- }
- }
-}