Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextinput / qtbug-15818.qml
1 import QtQuick 1.1
2 //Test that doubleclicking on the front of a word only selects that word, and not the word in front
3
4 Item{
5     width: 200
6     height: 100
7     TextInput{
8         anchors.fill: parent
9         readOnly: true
10         selectByMouse: true
11         text: "abc a cba test"
12     }
13 }