Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetext / elide / elide2.qml
1 import QtQuick 1.0
2 import "../../shared" 1.0
3
4 Rectangle {
5     width: 500
6     height: 100
7
8     TestText {
9         NumberAnimation on width { from: 500; to: 0; loops: Animation.Infinite; duration: 5000 }
10         elide: Text.ElideRight
11         text: 'Here is some very long text that we should truncate when sizing window'
12     }
13 }