aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
deleted file mode 100644
index f36a752ff2..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 1.0
-import "../shared" 1.0
-
-Item{
- width:600;
- height:300;
- Column {
- //Because they have auto width, these three should look the same
- TestTextInput {
- text: "Jackdaws love my big sphinx of quartz";
- horizontalAlignment: TextInput.AlignLeft;
- }
- TestTextInput {
- text: "Jackdaws love my big sphinx of quartz";
- horizontalAlignment: TextInput.AlignHCenter;
- }
- TestTextInput {
- text: "Jackdaws love my big sphinx of quartz";
- horizontalAlignment: TextInput.AlignRight;
- }
- Rectangle{ width: 600; height: 10; color: "pink" }
- TestTextInput {
- height: 30;
- width: 600;
- text: "Jackdaws love my big sphinx of quartz";
- horizontalAlignment: TextInput.AlignLeft;
- }
- TestTextInput {
- height: 30;
- width: 600;
- text: "Jackdaws love my big sphinx of quartz";
- horizontalAlignment: TextInput.AlignHCenter;
- }
- TestTextInput {
- height: 30;
- width: 600;
- text: "Jackdaws love my big sphinx of quartz";
- horizontalAlignment: TextInput.AlignRight;
- }
- }
-}