aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml
deleted file mode 100644
index e52c609343..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml
+++ /dev/null
@@ -1,32 +0,0 @@
-import QtQuick 1.0
-import "../../shared" 1.0
-
-Rectangle {
- width: childrenRect.width
- height: childrenRect.height
- Column {
- width: 80
- height: myText.height*4
- TestText {
- elide: "ElideLeft"
- text: "aaa bbb ccc ddd eee fff"
- width: 80
- id: myText
- }
- TestText {
- elide: "ElideMiddle"
- text: "aaa bbb ccc ddd eee fff"
- width: 80
- }
- TestText {
- elide: "ElideRight"
- text: "aaa bbb ccc ddd eee fff"
- width: 80
- }
- TestText {
- elide: "ElideNone"
- text: "aaa bbb ccc ddd eee fff"
- width: 80
- }
- }
-}