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