Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetext / data / lineCount.qml
1 import QtQuick 1.1
2
3 Item {
4     width: 200
5     height: 200
6
7     Text {
8         id: myText
9         objectName: "myText"
10         width: 200
11         wrapMode: Text.WordWrap
12         maximumLineCount: undefined
13         text: "Testing that maximumLines, visibleLines, and totalLines works properly in the autotests. The quick brown fox jumped over the lazy anything with the letter 'g'."
14     }
15 }